Salome HOME
Merge from V6_main 11/02/2013
[modules/kernel.git] / ChangeLog
1 2013-01-14 18:11  barate
2
3         * src/Launcher/: Launcher.cxx, Launcher.hxx, Launcher_Job.cxx,
4           Launcher_Job.hxx:
5
6         Adapt to the merge of BatchManager_eClient into BatchManager
7
8 2013-01-08 17:03  prascle
9
10         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
11
12         Merge from 1.18.2.11.10.10
13
14 2012-12-18 17:12  barate
15
16         * salome_adm/: cmake_files/FindPYTHON.cmake,
17           unix/config_files/check_swig.m4:
18
19         Fix Numpy version conflict when using custom Numpy with System Python and that another Numpy is installed in the system
20
21 2012-12-18 16:51  barate
22
23         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
24
25         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.
26
27 2012-12-18 13:23  barate
28
29         * src/: KernelHelpers/SALOME_KernelServices.hxx,
30           Utils/Utils_CorbaException.hxx:
31
32         Remove duplicate function in SALOME_KernelServices.hxx
33
34 2012-12-18 11:04  barate
35
36         * salome_adm/unix/config_files/check_tbb.m4:
37
38         Properly detect TBB when installed in the system (/usr)
39
40 2012-12-14 13:25  eap
41
42         * src/SALOMEDS/SALOMEDS_Study_i.hxx:
43
44         21948: EDF SMESH : Memory is not freed when deleting a mesh
45
46         -  Notifier*                      _notifier;
47         +  SALOMEDSImpl_AbstractCallback* _notifier;
48         +  SALOMEDSImpl_AbstractCallback* _genObjRegister;
49
50 2012-12-14 13:24  eap
51
52         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
53
54         21948: EDF SMESH : Memory is not freed when deleting a mesh
55
56         +  class GenObjRegister: public SALOMEDSImpl_AbstractCallback
57         +  {
58
59         SALOMEDS_Study_i::SALOMEDS_Study_i()
60         {
61         +  _genObjRegister = new SALOMEDS::GenObjRegister(_orb);
62
63         SALOMEDS_Study_i::~SALOMEDS_Study_i()
64         {
65         +  _impl->setNotifier(0);
66         +  delete _notifier;
67         +  delete _genObjRegister;
68
69 2012-12-14 13:20  eap
70
71         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
72
73         21948: EDF SMESH : Memory is not freed when deleting a mesh
74
75         -  else _name_service->Register(Study, CORBA::string_dup(aStudyImpl->Name().c_str()));
76         +  else _name_service->Register(Study, aStudyImpl->Name().c_str());
77
78 2012-12-14 13:20  eap
79
80         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
81
82         21948: EDF SMESH : Memory is not freed when deleting a mesh
83
84         -  aFO = _impl->GetOwner()->GetSObject(theFatherObject->GetID());
85         +  CORBA::String_var fatherEntry = theFatherObject->GetID();
86         +  aFO = _impl->GetOwner()->GetSObject( fatherEntry.in() );
87
88 2012-12-14 13:19  eap
89
90         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
91
92         21948: EDF SMESH : Memory is not freed when deleting a mesh
93
94         +  so->UnRegister();
95
96 2012-12-14 13:18  eap
97
98         * src/SALOMEDS/: CMakeLists.txt, Makefile.am,
99           SALOMEDS_Attributes_wrap.hxx, SALOMEDS_wrap.hxx:
100
101         21948: EDF SMESH : Memory is not freed when deleting a mesh
102
103           Declare SALOMEDS::SObject_wrap etc types
104
105         +       SALOMEDS_Attributes_wrap.hxx \
106         +       SALOMEDS_wrap.hxx
107
108 2012-12-14 13:16  eap
109
110         * src/HDFPersist/HDFascii.cc:
111
112         21948: EDF SMESH : Memory is not freed when deleting a mesh
113
114         +  delete [] aBuffer;
115
116 2012-12-14 13:16  eap
117
118         * src/GenericObj/SALOME_GenericObj_i.cc:
119
120         21948: EDF SMESH : Memory is not freed when deleting a mesh
121
122           Add debug code printing object type and myRefCounter
123
124 2012-12-14 13:13  eap
125
126         * src/GenericObj/: CMakeLists.txt, Makefile.am,
127           SALOME_GenericObj_wrap.hxx:
128
129         21948: EDF SMESH : Memory is not freed when deleting a mesh
130
131           Define SALOME::GenericObj_wrap< GENOBJ >
132
133         +       SALOME_GenericObj_wrap.hxx
134
135 2012-12-14 11:37  eap
136
137         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
138
139         21948: EDF SMESH : Memory is not freed when deleting a mesh
140
141         -      SALOMEDSImpl_AttributeIOR::Set (current, ior_string);
142         +      SALOMEDSImpl_AttributeIOR* iorAttr = SALOMEDSImpl_AttributeIOR::Set (current, ior_string);
143
144         +      // make myRefCounter of a loaded GenericObj == 1
145         +      SALOMEDSImpl_Study::UnRegisterGenObj( ior_string, iorAttr->Label());
146
147 2012-12-14 11:35  eap
148
149         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
150           SALOMEDSImpl_Study.hxx:
151
152         21948: EDF SMESH : Memory is not freed when deleting a mesh
153
154           Remove dependency on CORBA
155
156         +  SALOMEDSImpl_AbstractCallback* _genObjRegister;
157
158         +  static void RegisterGenObj  (const std::string& theIOR, DF_Label label);
159         +  static void UnRegisterGenObj(const std::string& theIOR, DF_Label label);
160         +  void setGenObjRegister(SALOMEDSImpl_AbstractCallback* theRegister);
161
162 2012-12-14 11:34  eap
163
164         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx, CMakeLists.txt,
165           Makefile.am:
166
167         21948: EDF SMESH : Memory is not freed when deleting a mesh
168
169           Remove dependency on CORBA
170
171 2012-12-14 11:32  eap
172
173         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx:
174
175         decorations :)
176
177 2012-12-14 11:31  eap
178
179         * src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx:
180
181         21948: EDF SMESH : Memory is not freed when deleting a mesh
182
183         +  virtual void RegisterGenObj  (const std::string& theIOR) {}
184         +  virtual void UnRegisterGenObj(const std::string& theIOR) {}
185
186 2012-12-14 11:30  eap
187
188         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx:
189
190         21948: EDF SMESH : Memory is not freed when deleting a mesh
191
192         -  delete c;
193         -  delete buffer;
194         +  delete [] c;
195         +  delete [] buffer;
196
197 2012-12-13 08:36  vsr
198
199         * CMakeLists.txt, bin/CMakeLists.txt, bin/Makefile.am,
200           bin/ORBConfigFile.py, bin/killSalome.py,
201           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
202           bin/launchSalome.py, bin/orbmodule.py, bin/runSalome.ksh,
203           bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
204           bin/salome_utils.py, bin/searchFreePort.py, bin/setenv.py,
205           bin/shutdownSalome.py, bin/appliskel/runRemote.sh,
206           bin/appliskel/runSession, bin/appliskel/runTests,
207           bin/appliskel/searchFreePort.sh, doc/docutils/CMakeLists.txt,
208           doc/salome/kernel_salome.dox, doc/salome/gui/CMakeLists.txt,
209           doc/salome/tui/CMakeLists.txt, doc/salome/tui/doxyfile.in,
210           idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
211           salome_adm/CMakeLists.txt,
212           salome_adm/cmake_files/FindPLATFORM.cmake,
213           salome_adm/cmake_files/SalomeMacros.cmake,
214           salome_adm/cmake_files/am2cmake.py,
215           salome_adm/cmake_files/prepare_generating_doc.py,
216           salome_adm/unix/CMakeLists.txt,
217           salome_adm/unix/config_files/CMakeLists.txt,
218           salome_adm/unix/config_files/check_cas.m4,
219           src/Container/Component_i.cxx,
220           src/Container/SALOME_ComponentPy.py,
221           src/Container/SALOME_Component_i.hxx,
222           src/Container/SALOME_ContainerManager.cxx,
223           src/DSC/DSC_Python/calcium.i,
224           src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
225           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
226           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
227           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
228           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
229           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
230           src/KERNEL_PY/salome_study.py, src/Launcher/BatchTest.cxx,
231           src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job_Command.cxx,
232           src/Launcher/Launcher_Job_SALOME.cxx,
233           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
234           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
235           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
236           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
237           src/ResourcesManager/SALOME_ResourcesManager.cxx,
238           src/SALOMEDS/Makefile.am,
239           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
240           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
241           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
242           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
243           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
244           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
245           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
246           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
247           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
248           src/SALOMEDS/SALOME_DriverPy.py,
249           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
250           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
251           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
252           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
253           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
254
255         Merge from V6_main 13/12/2012
256
257 2012-12-11 12:38  vsr
258
259         * CMakeLists.txt, configure.ac, bin/killSalomeWithPort.py,
260           bin/salome_utils.py, bin/setenv.py, bin/shutdownSalome.py,
261           doc/docutils/CMakeLists.txt, doc/salome/gui/CMakeLists.txt,
262           doc/salome/tui/CMakeLists.txt,
263           salome_adm/cmake_files/FindPLATFORM.cmake,
264           salome_adm/cmake_files/am2cmake.py,
265           salome_adm/unix/config_files/check_cas.m4,
266           src/Container/SALOME_ContainerManager.cxx,
267           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
268
269         Merge from V6_6_BR (V6_6_0rc2) 11/12/2012
270
271 2012-12-06 10:23  vsr
272
273         * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
274
275         Patch from RNV: manually created mesh is not checked in
276
277 2012-12-04 16:14  gdd
278
279         * bin/setenv.py:
280
281         Avoid adding multiple times the same directory in SALOMEPATH env variable (it was the case in the appli environment)
282
283 2012-11-29 11:18  mpv
284
285         * src/SALOMEDS/SALOMEDS_SimanStudy_i.cxx:
286
287         Fix for bug found by mka: siman scenario is not passed
288
289 2012-11-29 08:02  vsr
290
291         * bin/: killSalomeWithPort.py, salome_utils.py:
292
293         1) 0022002: [CEA 723] Error in killSalomeWithPort.py
294         2) Fix pb in killSalomeWithPort.py - not all servers are killed sometimes
295
296 2012-11-23 14:28  mpv
297
298         * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
299
300         Do not crash if there is no document in Activity: create a new document with ID "-1" on check-in
301
302 2012-11-23 14:27  mpv
303
304         * src/Container/: SALOME_DataContainerPy.py,
305           SALOME_DataContainer_i.cxx, SALOME_DataContainer_i.hxx:
306
307         Implementation of "setExtension" method and working with stream (by Daniel remarks)
308
309 2012-11-23 14:27  mpv
310
311         * idl/SALOME_Component.idl:
312
313         Implementation of "setExtension" method (by Daniel remarks)
314
315 2012-11-19 12:12  vsr
316
317         * salome_adm/cmake_files/am2cmake.py, CMakeLists.txt, configure.ac:
318
319         Increment version to 6.6.0
320
321 2012-11-13 12:38  vsr
322
323         * bin/: shutdownSalome.py, killSalomeWithPort.py:
324
325         0021688: [CEA 572] Issue when using runSalome -k -t
326
327 2012-11-13 10:28  vsr
328
329         * salome_adm/unix/config_files/check_cas.m4:
330
331         Fix mistake in OCCT check procedure that makes problems of usage OCCT built by WOK
332
333 2012-11-13 09:35  vsr
334
335         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
336           Container/SALOME_ContainerManager.cxx:
337
338         0021688: [CEA 572] Issue when using runSalome -k -t
339
340 2012-11-12 15:51  vsr
341
342         * bin/searchFreePort.py:
343
344         Merge from V6_main 12/11/2012
345
346 2012-11-12 09:25  aguerre
347
348         * bin/searchFreePort.py:
349
350         Get info returned by writeORBConfigFile
351
352 2012-11-09 06:56  vsr
353
354         * salome_adm/cmake_files/am2cmake.py:
355
356         Fix error in generated CMakeLists.txt file for SMESH tui documentation
357
358 2012-11-01 12:46  vsr
359
360         * salome_adm/cmake_files/am2cmake.py:
361
362         Build html_docs (Sphinx) with CMake
363
364 2012-11-01 11:57  vsr
365
366         * doc/docutils/CMakeLists.txt:
367
368         Build html_docs (Sphinx) with CMake
369
370 2012-11-01 10:16  vsr
371
372         * doc/docutils/CMakeLists.txt:
373
374         Build html_docs (Sphinx) with CMake
375
376 2012-11-01 10:05  vsr
377
378         * doc/docutils/CMakeLists.txt:
379
380         Build html_docs (Sphinx) with CMake
381
382 2012-11-01 09:11  vsr
383
384         * salome_adm/cmake_files/am2cmake.py:
385
386         Build html_docs (Sphinx) with CMake
387
388 2012-10-30 15:56  ana
389
390         * doc/docutils/CMakeLists.txt, salome_adm/cmake_files/am2cmake.py:
391
392         Remove -W flag
393
394 2012-10-30 10:51  aguerre
395
396         * bin/searchFreePort.py:
397
398         fix bug in searchFreePort.py (call with no arg)
399
400 2012-10-30 09:54  ana
401
402         * doc/salome/gui/CMakeLists.txt,
403           salome_adm/cmake_files/am2cmake.py:
404
405         Cmake: add dependency for usr_docs target
406
407 2012-10-30 08:55  ana
408
409         * doc/salome/tui/CMakeLists.txt:
410
411         fix error
412
413 2012-10-26 17:10  vsr
414
415         * bin/killSalomeWithPort.py:
416
417         Add simple command line check for killSalomeWithPort.py script
418
419 2012-10-26 14:57  vsr
420
421         * bin/CMakeLists.txt, bin/Makefile.am, bin/ORBConfigFile.py,
422           bin/killSalome.py, bin/killSalomeWithPort.py,
423           bin/launchConfigureParser.py, bin/launchSalome.py,
424           bin/orbmodule.py, bin/runSalome.ksh, bin/runSalome.py,
425           bin/salomeConsole.py, bin/salome_session.py,
426           bin/searchFreePort.py, bin/appliskel/runRemote.sh,
427           bin/appliskel/runSession, bin/appliskel/runTests,
428           bin/appliskel/searchFreePort.sh, src/Launcher/BatchTest.cxx,
429           src/Launcher/Launcher.cxx,
430           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
431           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
432           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
433           src/ResourcesManager/SALOME_ResourcesManager.cxx:
434
435         Merge from V6_main 26/10/2012
436
437 2012-10-26 12:46  ana
438
439         * salome_adm/cmake_files/am2cmake.py:
440
441         CMake: add generating the 'dev_docs' target for BLSURFPLUGIN
442
443 2012-10-25 15:53  aguerre
444
445         * bin/searchFreePort.py:
446
447         bug fix: get return values from call to generateFileName
448
449 2012-10-25 14:43  ana
450
451         * salome_adm/cmake_files/am2cmake.py:
452
453         Cmake: generating documentation for JOBMANAGER and PYHELLO1
454
455 2012-10-24 10:37  secher
456
457         * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
458           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
459           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
460           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
461           ResourcesManager/SALOME_ResourcesManager.cxx:
462
463         add ompi mpi implementation for cea mars cluster
464
465 2012-10-24 07:30  vsr
466
467         * salome_adm/cmake_files/FindPLATFORM.cmake:
468
469         Fix misprint
470
471 2012-10-23 17:37  ana
472
473         * salome_adm/cmake_files/FindPLATFORM.cmake:
474
475         Add specific platform definitions for Windows 64 bit platform
476
477 2012-10-23 10:23  vsr
478
479         * salome_adm/cmake_files/am2cmake.py:
480
481         Porting to DISTENE MeshGems suite
482
483 2012-10-22 16:35  vsr
484
485         * bin/searchFreePort.py:
486
487         file searchFreePort.py was added on branch V6_6_BR on 2012-10-26 12:57:04 +0000
488
489 2012-10-22 16:35  vsr
490
491         * bin/searchFreePort.py:
492
493         file searchFreePort.py was added on branch V7_main on 2012-12-13 07:36:45 +0000
494
495 2012-10-22 16:34  aguerre
496
497         * bin/: salomeConsole.py, salome_session.py, searchFreePort.py,
498           appliskel/runRemote.sh, appliskel/runSession, appliskel/runTests,
499           appliskel/searchFreePort.sh:
500
501         CA: Bug correction PAL2416
502         CORBA configuration for GIOP Max msg size (set to 2GB).
503         Done in only one place.
504
505         M bin/CMakeLists.txt
506         M bin/Makefile.am
507         A bin/ORBConfigFile.py
508         M bin/killSalome.py
509         M bin/killSalomeWithPort.py
510         M bin/launchConfigureParser.py
511         M bin/launchSalome.py
512         M bin/orbmodule.py
513         M bin/runSalome.ksh
514         M bin/runSalome.py
515         M bin/salomeConsole.py
516         M bin/salome_session.py
517         A bin/searchFreePort.py
518         M bin/appliskel/runRemote.sh
519         M bin/appliskel/runSession
520         M bin/appliskel/runTests
521         M bin/appliskel/searchFreePort.sh
522
523 2012-10-22 16:32  vsr
524
525         * bin/ORBConfigFile.py:
526
527         file ORBConfigFile.py was added on branch V6_6_BR on 2012-10-26 12:57:01 +0000
528
529 2012-10-22 16:32  vsr
530
531         * bin/ORBConfigFile.py:
532
533         file ORBConfigFile.py was added on branch V7_main on 2012-12-13 07:36:41 +0000
534
535 2012-10-22 16:31  aguerre
536
537         * bin/: CMakeLists.txt, Makefile.am, ORBConfigFile.py,
538           killSalome.py, killSalomeWithPort.py, launchConfigureParser.py,
539           launchSalome.py, orbmodule.py, runSalome.ksh, runSalome.py:
540
541         CA: Bug correction PAL2416
542         CORBA configuration for GIOP Max msg size (set to 2GB).
543         Done in only one place.
544
545         M bin/CMakeLists.txt
546         M bin/Makefile.am
547         A bin/ORBConfigFile.py
548         M bin/killSalome.py
549         M bin/killSalomeWithPort.py
550         M bin/launchConfigureParser.py
551         M bin/launchSalome.py
552         M bin/orbmodule.py
553         M bin/runSalome.ksh
554         M bin/runSalome.py
555         M bin/salomeConsole.py
556         M bin/salome_session.py
557         A bin/searchFreePort.py
558         M bin/appliskel/runRemote.sh
559         M bin/appliskel/runSession
560         M bin/appliskel/runTests
561         M bin/appliskel/searchFreePort.sh
562
563 2012-10-22 11:57  vsr
564
565         * salome_adm/cmake_files/prepare_generating_doc.py:
566
567         Fix problem in documentation generation for TUI (Python API) of GEOM and SMESH classes
568
569 2012-10-22 09:29  ana
570
571         * doc/salome/gui/CMakeLists.txt:
572
573         Generating documentation by CMake:small fix
574
575 2012-10-22 08:50  ana
576
577         * salome_adm/cmake_files/am2cmake.py:
578
579         Win32 compatibility
580
581 2012-10-22 08:36  ana
582
583         * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
584
585         CMake compatibility: fix error: expected 'float *' but argument is of type 'double *'
586
587 2012-10-18 15:46  fayolle
588
589         * src/DSC/: DSC_Python/calcium.i,
590           DSC_User/Datastream/Calcium/CalciumC.c,
591           DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
592           DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
593           DSC_User/Datastream/Calcium/calcium.h,
594           DSC_User/Datastream/Calcium/calciumf.c,
595           DSC_User/Datastream/Calcium/calciumf.h:
596
597         - Ajout d'une API C/F/Python permettant d'écrire des floats/doubles dans des ports double/float (conversions automatiques).
598
599 2012-10-18 14:29  vsr
600
601         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
602
603         0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
604         Additional fix: whe old study is opened, automatically add "unknown" version tag for all components
605
606 2012-10-18 12:49  mpv
607
608         * src/Makefile.am:
609
610         Fix for compilation with SimanIO
611
612 2012-10-18 09:37  mpv
613
614         * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
615
616         Fix for compilation without SimanIO
617
618 2012-10-18 08:38  mpv
619
620         * src/: SALOMEDSClient/SALOMEDSClient_SimanStudy.hxx,
621           SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
622           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
623           SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx,
624           SALOMEDSImpl/Makefile.am,
625           SALOMEDSImpl/SALOMEDSImpl_SimanStudy.hxx,
626           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
627           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
628
629         Initial integration of SimanIO support and SIMAN study interfaces
630
631 2012-10-18 08:35  mpv
632
633         * src/SALOMEDS/: SALOMEDS_SimanStudy.cxx, SALOMEDS_Study.hxx,
634           SALOMEDS_StudyManager_i.cxx, SALOMEDS_SimanStudy_i.cxx,
635           SALOMEDS_StudyManager.cxx, Makefile.am, SALOMEDS_SimanStudy.hxx,
636           SALOMEDS_SimanStudy_i.hxx, SALOMEDS_StudyManager.hxx,
637           SALOMEDS_StudyManager_i.hxx, Test/Makefile.am:
638
639         Initial integration of SimanIO support and SIMAN study interfaces
640
641 2012-10-18 08:29  mpv
642
643         * src/Container/: SALOME_DataContainerPy.py, Component_i.cxx,
644           SALOME_ComponentPy.py, SALOME_DataContainer_i.cxx, Makefile.am,
645           SALOME_Component_i.hxx, SALOME_DataContainer_i.hxx:
646
647         Initial integration of SimanIO support and SIMAN study interfaces
648
649 2012-10-18 08:10  mpv
650
651         * salome_adm/: cmake_files/FindSIMANIO.cmake,
652           cmake_files/Makefile.am, cmake_files/am2cmake.py,
653           unix/config_files/Makefile.am,
654           unix/config_files/check_simanio.m4:
655
656         Initial integration of SimanIO support and SIMAN study interfaces
657
658 2012-10-18 08:05  mpv
659
660         * idl/: SALOMEDS.idl, SALOME_Component.idl:
661
662         Initial integration of SimanIO support and SIMAN study interfaces
663
664 2012-10-18 07:48  mpv
665
666         * bin/: launchConfigureParser.py, runSalome.py:
667
668         Initial integration of SimanIO support and SIMAN study interfaces
669
670 2012-10-18 07:33  mpv
671
672         * configure.ac:
673
674         Initial integration of SimanIO support and SIMAN study interfaces
675
676 2012-10-17 14:12  barate
677
678         * src/SALOMEDS/Makefile.am:
679
680         Fix symbol resolution problems when Salome is compiled with autotools on Ubuntu 12.04
681
682 2012-10-17 09:26  ana
683
684         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx:
685
686         win32 compatibility
687
688 2012-10-17 09:05  ana
689
690         * salome_adm/cmake_files/am2cmake.py:
691
692         CMake compatibility
693
694 2012-10-16 16:29  vsr
695
696         * doc/salome/kernel_salome.dox:
697
698         0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
699
700 2012-10-16 10:17  vsr
701
702         * src/SALOMEDS/: SALOMEDS_AttributeStudyProperties.cxx,
703           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager_i.cxx,
704           SALOMEDS_AttributeStudyProperties.hxx,
705           SALOMEDS_AttributeStudyProperties_i.cxx, SALOMEDS_Driver_i.cxx,
706           SALOMEDS_AttributeStudyProperties_i.hxx, SALOMEDS_Driver_i.hxx,
707           SALOMEDS_StudyManager.cxx, SALOME_DriverPy.py:
708
709         0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
710
711 2012-10-16 10:13  vsr
712
713         * src/: SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
714           KERNEL_PY/salome_study.py:
715
716         0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
717
718 2012-10-16 10:10  vsr
719
720         * idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
721           src/Container/Component_i.cxx,
722           src/Container/SALOME_ComponentPy.py,
723           src/Container/SALOME_Component_i.hxx,
724           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
725           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
726           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
727           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
728
729         0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
730
731 2012-10-12 17:41  vsr
732
733         * doc/docutils/CMakeLists.txt:
734
735         file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:36:53 +0000
736
737 2012-10-12 17:41  ana
738
739         * doc/docutils/CMakeLists.txt:
740
741         Porting SALOME KERNEL to CMake
742
743 2012-10-10 11:05  vsr
744
745         * doc/salome/gui/images/icon_about.png:
746
747         Update SALOME 7x logos (temporary images)
748
749 2012-10-10 10:56  vsr
750
751         * salome_adm/unix/config_files/CMakeLists.txt:
752
753         file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:37:19 +0000
754
755 2012-10-10 10:56  vsr
756
757         * salome_adm/unix/CMakeLists.txt:
758
759         file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:37:16 +0000
760
761 2012-10-10 10:56  ana
762
763         * salome_adm/: CMakeLists.txt, cmake_files/SalomeMacros.cmake,
764           unix/CMakeLists.txt, unix/config_files/CMakeLists.txt:
765
766         Porting SALOME GUI to CMake
767
768 2012-10-09 18:28  vsr
769
770         * bin/runSalome.py:
771
772         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.
773
774 2012-10-09 10:41  inv
775
776         * salome_adm/unix/make_common_starter.am:
777
778         Add missing end-of-line
779
780 2012-10-09 10:40  vsr
781
782         * salome_adm/unix/make_common_starter.am:
783
784         Add missing end-of-line
785
786 2012-10-09 10:34  vsr
787
788         * Makefile.am, doc/Makefile.am, doc/docutils/Makefile.am,
789           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
790           doc/salome/tui/Makefile.am, idl/Makefile.am,
791           resources/Makefile.am, salome_adm/cmake_files/Makefile.am,
792           salome_adm/unix/make_common_starter.am, src/Makefile.am,
793           src/Communication/CMakeLists.txt, src/Communication/Makefile.am,
794           src/Communication/Receiver.cxx,
795           src/Communication_SWIG/Makefile.am, src/DSC/Makefile.am,
796           src/DSC/DSC_Python/Makefile.am,
797           src/DSC/DSC_User/Datastream/CMakeLists.txt,
798           src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
799           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
800           src/HDFPersist/Makefile.am, src/LifeCycleCORBA_SWIG/Makefile.am,
801           src/ModuleGenerator/Makefile.am,
802           src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Test/Makefile.am:
803
804         1) Add CMake files to the dist rules (make dist)
805         2) Fix problems of make dist (missing files)
806
807 2012-10-09 10:29  inv
808
809         * Makefile.am, doc/Makefile.am, doc/docutils/Makefile.am,
810           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
811           doc/salome/tui/Makefile.am, idl/Makefile.am,
812           resources/Makefile.am, salome_adm/cmake_files/Makefile.am,
813           salome_adm/unix/make_common_starter.am, src/Makefile.am,
814           src/Communication/CMakeLists.txt, src/Communication/Makefile.am,
815           src/Communication/Receiver.cxx,
816           src/Communication_SWIG/Makefile.am, src/DSC/Makefile.am,
817           src/DSC/DSC_Python/Makefile.am,
818           src/DSC/DSC_User/Datastream/CMakeLists.txt,
819           src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
820           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
821           src/HDFPersist/Makefile.am, src/LifeCycleCORBA_SWIG/Makefile.am,
822           src/ModuleGenerator/Makefile.am,
823           src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Test/Makefile.am:
824
825         1) Add CMake files to the dist rules (make dist)
826         2) Fix problems of make dist (missing files)
827
828 2012-10-08 13:18  rnv
829
830         * src/Launcher/: Launcher_Job_SALOME.cxx, Launcher_Job_Command.cxx:
831
832         Partial fix for the 0021727: [CEA 584] sending a Yacs graph from Windows to a cluster issue.
833
834 2012-10-08 12:24  vsr
835
836         * src/: Registry/CMakeLists.txt, ResourcesManager/CMakeLists.txt,
837           SALOMEDS/CMakeLists.txt, SALOMEDS/Test/CMakeLists.txt,
838           SALOMEDS/Test/SALOMEDSTest.hxx, SALOMEDS/Test/TestSALOMEDS.cxx,
839           SALOMEDSClient/CMakeLists.txt, SALOMEDSImpl/CMakeLists.txt,
840           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
841           SALOMEDSImpl/Test/CMakeLists.txt,
842           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
843           SALOMELocalTrace/CMakeLists.txt,
844           SALOMELocalTrace/Test/CMakeLists.txt,
845           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
846           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
847           SALOMETraceCollector/CMakeLists.txt,
848           SALOMETraceCollector/Test/CMakeLists.txt,
849           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
850           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
851           TOOLSDS/CMakeLists.txt, TestContainer/CMakeLists.txt,
852           TestMPIContainer/CMakeLists.txt, UnitTests/CMakeLists.txt,
853           Utils/CMakeLists.txt, Utils/Test/CMakeLists.txt,
854           Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx:
855
856         Merge from V6_main (04/10/2012)
857
858 2012-10-08 12:21  vsr
859
860         * src/: KERNEL_PY/kernel/parametric/CMakeLists.txt,
861           KernelHelpers/CMakeLists.txt, KernelHelpers/Test/CMakeLists.txt,
862           KernelHelpers/Test/KernelHelpersUnitTests.hxx,
863           Launcher/CMakeLists.txt, LifeCycleCORBA/CMakeLists.txt,
864           LifeCycleCORBA/Test/CMakeLists.txt,
865           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
866           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
867           LifeCycleCORBA_SWIG/CMakeLists.txt,
868           LifeCycleCORBA_SWIG/Test/CMakeLists.txt, Logger/CMakeLists.txt,
869           Logger/Test/CMakeLists.txt, MPIContainer/CMakeLists.txt,
870           MPIContainer/MPIContainer_i.cxx, ModuleCatalog/CMakeLists.txt,
871           ModuleGenerator/CMakeLists.txt, NOTIFICATION_SWIG/CMakeLists.txt,
872           NamingService/CMakeLists.txt, NamingService/Test/CMakeLists.txt,
873           NamingService/Test/NamingServiceTest.cxx,
874           NamingService/Test/NamingServiceTest.hxx,
875           Notification/CMakeLists.txt, ParallelContainer/CMakeLists.txt:
876
877         Merge from V6_main (04/10/2012)
878
879 2012-10-08 12:18  vsr
880
881         * salome_adm/unix/SALOMEconfig.ref.in,
882           salome_adm/unix/make_common_starter.am, src/CMakeLists.txt,
883           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
884           src/Basics/CMakeLists.txt, src/Basics/Test/CMakeLists.txt,
885           src/Communication/CMakeLists.txt,
886           src/Communication_SWIG/CMakeLists.txt,
887           src/Container/CMakeLists.txt, src/DF/CMakeLists.txt,
888           src/DSC/CMakeLists.txt, src/DSC/DSC_Basic/CMakeLists.txt,
889           src/DSC/DSC_Python/CMakeLists.txt,
890           src/DSC/DSC_User/CMakeLists.txt,
891           src/DSC/DSC_User/Basic/CMakeLists.txt,
892           src/DSC/DSC_User/Datastream/CMakeLists.txt,
893           src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
894           src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
895           src/DSC/ParallelDSC/CMakeLists.txt,
896           src/GenericObj/CMakeLists.txt, src/HDFPersist/CMakeLists.txt,
897           src/HDFPersist/HDFascii.cc, src/KERNEL_PY/CMakeLists.txt,
898           src/KERNEL_PY/kernel/CMakeLists.txt:
899
900         Merge from V6_main (04/10/2012)
901
902 2012-10-08 12:15  vsr
903
904         * CMakeLists.txt, configure.ac, bin/CMakeLists.txt,
905           bin/launchConfigureParser.py, bin/appliskel/CMakeLists.txt,
906           doc/CMakeLists.txt, doc/salome/CMakeLists.txt,
907           doc/salome/kernel_salome.dox, doc/salome/main.dox,
908           doc/salome/running_salome.dox, doc/salome/gui/CMakeLists.txt,
909           doc/salome/tui/CMakeLists.txt, idl/CMakeLists.txt,
910           resources/CMakeLists.txt, salome_adm/CMakeLists.txt,
911           salome_adm/Makefile.am, salome_adm/SALOMEconfig.ref.in,
912           salome_adm/cmake_files/CMakeLists.txt,
913           salome_adm/cmake_files/FindCPPUNIT.cmake,
914           salome_adm/cmake_files/FindLIBBATCH.cmake,
915           salome_adm/cmake_files/FindMPI.cmake,
916           salome_adm/cmake_files/FindPLATFORM.cmake,
917           salome_adm/cmake_files/FindPTHREADS.cmake,
918           salome_adm/cmake_files/FindSPHINX.cmake,
919           salome_adm/cmake_files/SalomeMacros.cmake,
920           salome_adm/cmake_files/UseOMNIORB.cmake,
921           salome_adm/cmake_files/am2cmake.py, salome_adm/unix/Makefile.am:
922
923         Merge from V6_main (04/10/2012)
924
925 2012-10-08 10:45  rnv
926
927         * src/Launcher/: Launcher_Job_SALOME.cxx, Launcher_Job.cxx,
928           Launcher_Job_Command.cxx:
929
930         Patrial fix of the issue 21727: [CEA 584] sending a Yacs graph from Windows to a cluster
931
932 2012-10-07 19:31  prascle
933
934         * doc/salome/tui/doxyfile.in:
935
936         PR: KERNEL Developer's guide with full index
937
938 2012-10-03 13:30  ana
939
940         * salome_adm/cmake_files/SalomeMacros.cmake:
941
942         CMake: Add new macros
943
944 2012-10-02 18:59  ana
945
946         * salome_adm/cmake_files/FindCPPUNIT.cmake:
947
948         CMake: Set env var for CPPUNIT
949
950 2012-10-02 12:50  ageay
951
952         * src/: HDFPersist/HDFascii.cc,
953           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
954
955         Fixing compilation error on gcc4.7
956
957 2012-10-01 15:15  ageay
958
959         * salome_adm/cmake_files/FindCPPUNIT.cmake:
960
961         Synchronization env var for CPPUNIT with autotools : CPPUNIT_ROOT -> CPPUNITHOME
962
963 2012-09-27 10:32  ana
964
965         * salome_adm/cmake_files/FindMPI.cmake:
966
967         CMake compatibility: fix problen with MPI
968
969 2012-09-27 09:33  ana
970
971         * salome_adm/cmake_files/FindLIBBATCH.cmake,
972           src/Launcher/CMakeLists.txt:
973
974         CMake compatibility: fix problen with LIBBATCH
975
976 2012-09-27 09:17  vsr
977
978         * salome_adm/cmake_files/am2cmake.py:
979
980         Modify am2cmake procedure:
981         - since generation of CMakeLists.txt is actually required on each level, rollback (partially) previous commit
982
983 2012-09-27 08:15  vsr
984
985         * salome_adm/cmake_files/am2cmake.py:
986
987         Improve am2cmake procedure:
988         - allow forcing am2cmake conversion procedure for separate modules only (with dedicated env variables, e.g. AM2CMAKE_FORCE_KERNEL_GENERATION)
989         - 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)
990
991 2012-09-27 07:16  vsr
992
993         * salome_adm/cmake_files/am2cmake.py:
994
995         Fix problem of SMESH compilation with CMake
996
997 2012-09-26 15:03  ana
998
999         * src/LifeCycleCORBA_SWIG/CMakeLists.txt:
1000
1001         Porting SALOME KERNEL to CMake: add missing flags
1002
1003 2012-09-26 14:30  ana
1004
1005         * src/: Communication/CMakeLists.txt,
1006           Communication_SWIG/CMakeLists.txt, Container/CMakeLists.txt,
1007           DSC/DSC_Basic/CMakeLists.txt, DSC/DSC_Python/CMakeLists.txt,
1008           DSC/DSC_User/CMakeLists.txt, DSC/DSC_User/Basic/CMakeLists.txt,
1009           DSC/DSC_User/Datastream/CMakeLists.txt,
1010           DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
1011           DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
1012           GenericObj/CMakeLists.txt, KernelHelpers/CMakeLists.txt,
1013           KernelHelpers/Test/CMakeLists.txt, Launcher/CMakeLists.txt,
1014           LifeCycleCORBA/CMakeLists.txt,
1015           LifeCycleCORBA/Test/CMakeLists.txt,
1016           LifeCycleCORBA_SWIG/CMakeLists.txt, Logger/CMakeLists.txt,
1017           MPIContainer/CMakeLists.txt, ModuleCatalog/CMakeLists.txt,
1018           NOTIFICATION_SWIG/CMakeLists.txt, NamingService/CMakeLists.txt,
1019           NamingService/Test/CMakeLists.txt, Notification/CMakeLists.txt,
1020           ParallelContainer/CMakeLists.txt, Registry/CMakeLists.txt,
1021           ResourcesManager/CMakeLists.txt, SALOMEDS/CMakeLists.txt,
1022           SALOMEDS/Test/CMakeLists.txt, SALOMEDSClient/CMakeLists.txt,
1023           SALOMEDSImpl/CMakeLists.txt, SALOMETraceCollector/CMakeLists.txt,
1024           TOOLSDS/CMakeLists.txt, TestContainer/CMakeLists.txt,
1025           TestMPIContainer/CMakeLists.txt, UnitTests/CMakeLists.txt,
1026           Utils/CMakeLists.txt:
1027
1028         Porting SALOME KERNEL to CMake
1029
1030 2012-09-26 14:00  vsr
1031
1032         * bin/appliskel/CMakeLists.txt:
1033
1034         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:16:46 +0000
1035
1036 2012-09-26 14:00  vsr
1037
1038         * bin/CMakeLists.txt:
1039
1040         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:16:25 +0000
1041
1042 2012-09-26 14:00  vsr
1043
1044         * doc/salome/tui/CMakeLists.txt:
1045
1046         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:49 +0000
1047
1048 2012-09-26 14:00  vsr
1049
1050         * doc/salome/gui/CMakeLists.txt:
1051
1052         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:42 +0000
1053
1054 2012-09-26 14:00  vsr
1055
1056         * doc/salome/CMakeLists.txt:
1057
1058         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:28 +0000
1059
1060 2012-09-26 14:00  vsr
1061
1062         * doc/CMakeLists.txt:
1063
1064         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:18 +0000
1065
1066 2012-09-26 14:00  vsr
1067
1068         * idl/CMakeLists.txt:
1069
1070         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:58 +0000
1071
1072 2012-09-26 14:00  vsr
1073
1074         * resources/CMakeLists.txt:
1075
1076         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:07 +0000
1077
1078 2012-09-26 14:00  ana
1079
1080         * salome_adm/cmake_files/am2cmake.py, salome_adm/unix/Makefile.am,
1081           salome_adm/unix/SALOMEconfig.ref.in,
1082           salome_adm/unix/make_common_starter.am, resources/CMakeLists.txt,
1083           idl/CMakeLists.txt, doc/CMakeLists.txt,
1084           doc/salome/CMakeLists.txt, doc/salome/gui/CMakeLists.txt,
1085           doc/salome/tui/CMakeLists.txt, bin/CMakeLists.txt,
1086           bin/appliskel/CMakeLists.txt:
1087
1088         Porting SALOME KERNEL to CMake
1089
1090 2012-09-26 14:00  vsr
1091
1092         * salome_adm/cmake_files/SalomeMacros.cmake:
1093
1094         file SalomeMacros.cmake was added on branch V7_main on 2012-10-08 10:18:44 +0000
1095
1096 2012-09-26 14:00  vsr
1097
1098         * salome_adm/cmake_files/CMakeLists.txt:
1099
1100         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:31 +0000
1101
1102 2012-09-26 14:00  vsr
1103
1104         * salome_adm/SALOMEconfig.ref.in:
1105
1106         file SALOMEconfig.ref.in was added on branch V7_main on 2012-10-08 10:18:21 +0000
1107
1108 2012-09-26 14:00  vsr
1109
1110         * salome_adm/CMakeLists.txt:
1111
1112         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:15 +0000
1113
1114 2012-09-26 13:59  vsr
1115
1116         * src/Utils/Test/CMakeLists.txt:
1117
1118         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:26:02 +0000
1119
1120 2012-09-26 13:59  vsr
1121
1122         * src/Utils/CMakeLists.txt:
1123
1124         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:26:00 +0000
1125
1126 2012-09-26 13:59  vsr
1127
1128         * src/UnitTests/CMakeLists.txt:
1129
1130         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:53 +0000
1131
1132 2012-09-26 13:59  vsr
1133
1134         * src/TestMPIContainer/CMakeLists.txt:
1135
1136         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:49 +0000
1137
1138 2012-09-26 13:59  vsr
1139
1140         * src/TestContainer/CMakeLists.txt:
1141
1142         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:47 +0000
1143
1144 2012-09-26 13:59  vsr
1145
1146         * src/TOOLSDS/CMakeLists.txt:
1147
1148         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:44 +0000
1149
1150 2012-09-26 13:59  vsr
1151
1152         * src/SALOMETraceCollector/Test/CMakeLists.txt:
1153
1154         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:40 +0000
1155
1156 2012-09-26 13:59  vsr
1157
1158         * src/SALOMETraceCollector/CMakeLists.txt:
1159
1160         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:38 +0000
1161
1162 2012-09-26 13:59  vsr
1163
1164         * src/SALOMELocalTrace/Test/CMakeLists.txt:
1165
1166         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:34 +0000
1167
1168 2012-09-26 13:59  vsr
1169
1170         * src/SALOMELocalTrace/CMakeLists.txt:
1171
1172         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:31 +0000
1173
1174 2012-09-26 13:59  vsr
1175
1176         * src/SALOMEDSImpl/Test/CMakeLists.txt:
1177
1178         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:24 +0000
1179
1180 2012-09-26 13:59  vsr
1181
1182         * src/SALOMEDSImpl/CMakeLists.txt:
1183
1184         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:20 +0000
1185
1186 2012-09-26 13:59  vsr
1187
1188         * src/SALOMEDSClient/CMakeLists.txt:
1189
1190         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:18 +0000
1191
1192 2012-09-26 13:59  vsr
1193
1194         * src/SALOMEDS/Test/CMakeLists.txt:
1195
1196         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:05 +0000
1197
1198 2012-09-26 13:59  vsr
1199
1200         * src/SALOMEDS/CMakeLists.txt:
1201
1202         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:03 +0000
1203
1204 2012-09-26 13:59  vsr
1205
1206         * src/ResourcesManager/CMakeLists.txt:
1207
1208         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:00 +0000
1209
1210 2012-09-26 13:59  vsr
1211
1212         * src/Registry/CMakeLists.txt:
1213
1214         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:58 +0000
1215
1216 2012-09-26 13:59  vsr
1217
1218         * src/ParallelContainer/CMakeLists.txt:
1219
1220         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:50 +0000
1221
1222 2012-09-26 13:59  vsr
1223
1224         * src/Notification/CMakeLists.txt:
1225
1226         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:46 +0000
1227
1228 2012-09-26 13:59  vsr
1229
1230         * src/NamingService/Test/CMakeLists.txt:
1231
1232         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:33 +0000
1233
1234 2012-09-26 13:59  vsr
1235
1236         * src/NamingService/CMakeLists.txt:
1237
1238         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:13 +0000
1239
1240 2012-09-26 13:59  vsr
1241
1242         * src/NOTIFICATION_SWIG/CMakeLists.txt:
1243
1244         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:00 +0000
1245
1246 2012-09-26 13:59  vsr
1247
1248         * src/ModuleGenerator/CMakeLists.txt:
1249
1250         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:54 +0000
1251
1252 2012-09-26 13:59  vsr
1253
1254         * src/ModuleCatalog/CMakeLists.txt:
1255
1256         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:43 +0000
1257
1258 2012-09-26 13:59  vsr
1259
1260         * src/MPIContainer/CMakeLists.txt:
1261
1262         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:23 +0000
1263
1264 2012-09-26 13:58  vsr
1265
1266         * src/Logger/Test/CMakeLists.txt:
1267
1268         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:00 +0000
1269
1270 2012-09-26 13:58  vsr
1271
1272         * src/Logger/CMakeLists.txt:
1273
1274         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:55 +0000
1275
1276 2012-09-26 13:58  vsr
1277
1278         * src/LifeCycleCORBA_SWIG/Test/CMakeLists.txt:
1279
1280         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:47 +0000
1281
1282 2012-09-26 13:58  vsr
1283
1284         * src/LifeCycleCORBA_SWIG/CMakeLists.txt:
1285
1286         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:43 +0000
1287
1288 2012-09-26 13:58  vsr
1289
1290         * src/LifeCycleCORBA/Test/CMakeLists.txt:
1291
1292         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:37 +0000
1293
1294 2012-09-26 13:58  vsr
1295
1296         * src/LifeCycleCORBA/CMakeLists.txt:
1297
1298         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:24 +0000
1299
1300 2012-09-26 13:58  vsr
1301
1302         * src/Launcher/CMakeLists.txt:
1303
1304         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:15 +0000
1305
1306 2012-09-26 13:58  vsr
1307
1308         * src/KernelHelpers/Test/CMakeLists.txt:
1309
1310         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:03 +0000
1311
1312 2012-09-26 13:58  vsr
1313
1314         * src/KernelHelpers/CMakeLists.txt:
1315
1316         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:56 +0000
1317
1318 2012-09-26 13:58  vsr
1319
1320         * src/KERNEL_PY/kernel/parametric/CMakeLists.txt:
1321
1322         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:52 +0000
1323
1324 2012-09-26 13:58  vsr
1325
1326         * src/KERNEL_PY/kernel/CMakeLists.txt:
1327
1328         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:40 +0000
1329
1330 2012-09-26 13:58  vsr
1331
1332         * src/KERNEL_PY/CMakeLists.txt:
1333
1334         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:29 +0000
1335
1336 2012-09-26 13:58  vsr
1337
1338         * src/HDFPersist/CMakeLists.txt:
1339
1340         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:14 +0000
1341
1342 2012-09-26 13:58  vsr
1343
1344         * src/GenericObj/CMakeLists.txt:
1345
1346         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:54 +0000
1347
1348 2012-09-26 13:58  vsr
1349
1350         * src/DSC/ParallelDSC/CMakeLists.txt:
1351
1352         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:42 +0000
1353
1354 2012-09-26 13:58  vsr
1355
1356         * src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt:
1357
1358         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:30 +0000
1359
1360 2012-09-26 13:58  vsr
1361
1362         * src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt:
1363
1364         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:16 +0000
1365
1366 2012-09-26 13:58  vsr
1367
1368         * src/DSC/DSC_User/Datastream/CMakeLists.txt:
1369
1370         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:10 +0000
1371
1372 2012-09-26 13:58  vsr
1373
1374         * src/DSC/DSC_User/Basic/CMakeLists.txt:
1375
1376         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:02 +0000
1377
1378 2012-09-26 13:58  vsr
1379
1380         * src/DSC/DSC_User/CMakeLists.txt:
1381
1382         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:58 +0000
1383
1384 2012-09-26 13:58  vsr
1385
1386         * src/DSC/DSC_Python/CMakeLists.txt:
1387
1388         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:50 +0000
1389
1390 2012-09-26 13:58  vsr
1391
1392         * src/DSC/DSC_Basic/CMakeLists.txt:
1393
1394         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:44 +0000
1395
1396 2012-09-26 13:58  vsr
1397
1398         * src/DSC/CMakeLists.txt:
1399
1400         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:40 +0000
1401
1402 2012-09-26 13:57  vsr
1403
1404         * src/DF/CMakeLists.txt:
1405
1406         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:37 +0000
1407
1408 2012-09-26 13:57  vsr
1409
1410         * src/Container/CMakeLists.txt:
1411
1412         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:32 +0000
1413
1414 2012-09-26 13:57  vsr
1415
1416         * src/Communication_SWIG/CMakeLists.txt:
1417
1418         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:27 +0000
1419
1420 2012-09-26 13:57  vsr
1421
1422         * src/Communication/CMakeLists.txt:
1423
1424         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:18 +0000
1425
1426 2012-09-26 13:57  vsr
1427
1428         * src/Basics/Test/CMakeLists.txt:
1429
1430         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:03 +0000
1431
1432 2012-09-26 13:57  vsr
1433
1434         * src/Basics/CMakeLists.txt:
1435
1436         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:02 +0000
1437
1438 2012-09-26 13:57  vsr
1439
1440         * src/CMakeLists.txt:
1441
1442         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:52 +0000
1443
1444 2012-09-26 13:57  vsr
1445
1446         * CMakeLists.txt:
1447
1448         file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:15:49 +0000
1449
1450 2012-09-26 13:57  ana
1451
1452         * configure.ac, CMakeLists.txt, src/CMakeLists.txt,
1453           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
1454           src/Basics/CMakeLists.txt, src/Basics/Test/CMakeLists.txt,
1455           src/Communication/CMakeLists.txt,
1456           src/Communication_SWIG/CMakeLists.txt,
1457           src/Container/CMakeLists.txt, src/DF/CMakeLists.txt,
1458           src/DSC/CMakeLists.txt, src/DSC/DSC_Basic/CMakeLists.txt,
1459           src/DSC/DSC_Python/CMakeLists.txt,
1460           src/DSC/DSC_User/CMakeLists.txt,
1461           src/DSC/DSC_User/Basic/CMakeLists.txt,
1462           src/DSC/DSC_User/Datastream/CMakeLists.txt,
1463           src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
1464           src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
1465           src/DSC/ParallelDSC/CMakeLists.txt,
1466           src/GenericObj/CMakeLists.txt, src/HDFPersist/CMakeLists.txt,
1467           src/KERNEL_PY/CMakeLists.txt,
1468           src/KERNEL_PY/kernel/CMakeLists.txt,
1469           src/KERNEL_PY/kernel/parametric/CMakeLists.txt,
1470           src/KernelHelpers/CMakeLists.txt,
1471           src/KernelHelpers/Test/CMakeLists.txt,
1472           src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
1473           src/Launcher/CMakeLists.txt, src/LifeCycleCORBA/CMakeLists.txt,
1474           src/LifeCycleCORBA/Test/CMakeLists.txt,
1475           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
1476           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
1477           src/LifeCycleCORBA_SWIG/CMakeLists.txt,
1478           src/LifeCycleCORBA_SWIG/Test/CMakeLists.txt,
1479           src/Logger/CMakeLists.txt, src/Logger/Test/CMakeLists.txt,
1480           src/MPIContainer/CMakeLists.txt,
1481           src/MPIContainer/MPIContainer_i.cxx,
1482           src/ModuleCatalog/CMakeLists.txt,
1483           src/ModuleGenerator/CMakeLists.txt,
1484           src/NOTIFICATION_SWIG/CMakeLists.txt,
1485           src/NamingService/CMakeLists.txt,
1486           src/NamingService/Test/CMakeLists.txt,
1487           src/NamingService/Test/NamingServiceTest.cxx,
1488           src/NamingService/Test/NamingServiceTest.hxx,
1489           src/Notification/CMakeLists.txt,
1490           src/ParallelContainer/CMakeLists.txt,
1491           src/Registry/CMakeLists.txt, src/ResourcesManager/CMakeLists.txt,
1492           src/SALOMEDS/CMakeLists.txt, src/SALOMEDS/Test/CMakeLists.txt,
1493           src/SALOMEDS/Test/SALOMEDSTest.hxx,
1494           src/SALOMEDS/Test/TestSALOMEDS.cxx,
1495           src/SALOMEDSClient/CMakeLists.txt,
1496           src/SALOMEDSImpl/CMakeLists.txt,
1497           src/SALOMEDSImpl/Test/CMakeLists.txt,
1498           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
1499           src/SALOMELocalTrace/CMakeLists.txt,
1500           src/SALOMELocalTrace/Test/CMakeLists.txt,
1501           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
1502           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
1503           src/SALOMETraceCollector/CMakeLists.txt,
1504           src/SALOMETraceCollector/Test/CMakeLists.txt,
1505           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
1506           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
1507           src/TOOLSDS/CMakeLists.txt, src/TestContainer/CMakeLists.txt,
1508           src/TestMPIContainer/CMakeLists.txt,
1509           src/UnitTests/CMakeLists.txt, src/Utils/CMakeLists.txt,
1510           src/Utils/Test/CMakeLists.txt, src/Utils/Test/UtilsTest.cxx,
1511           src/Utils/Test/UtilsTest.hxx, salome_adm/CMakeLists.txt,
1512           salome_adm/Makefile.am, salome_adm/SALOMEconfig.ref.in,
1513           salome_adm/cmake_files/CMakeLists.txt,
1514           salome_adm/cmake_files/SalomeMacros.cmake:
1515
1516         Porting SALOME KERNEL to CMake
1517
1518 2012-09-24 14:22  ana
1519
1520         * salome_adm/cmake_files/am2cmake.py:
1521
1522         Win32 compatibility for HexoticPLUGIN module
1523
1524 2012-09-24 10:33  vsr
1525
1526         * bin/launchConfigureParser.py:
1527
1528         0021781: [CEA 616] Suppress . in the user's config files
1529
1530 2012-09-21 08:15  ageay
1531
1532         * salome_adm/cmake_files/FindSPHINX.cmake:
1533
1534         Check usability of sphynx before declaring it OK.
1535
1536 2012-09-19 13:22  ana
1537
1538         * salome_adm/cmake_files/: FindPTHREADS.cmake, UseOMNIORB.cmake,
1539           FindPLATFORM.cmake:
1540
1541         Compilation SALOME by CMake(windows/linux)
1542
1543 2012-09-11 17:06  vsr
1544
1545         * doc/salome/: main.dox, running_salome.dox:
1546
1547         0021670: EDF 2265 GUI: Update GUI documentation
1548         Move documentation on SALOME running from GUI to KERNEL module.
1549
1550 2012-09-11 17:06  vsr
1551
1552         * doc/salome/running_salome.dox:
1553
1554         file running_salome.dox was added on branch V7_main on 2012-10-08 10:17:36 +0000
1555
1556 2012-09-11 14:52  rnv
1557
1558         * doc/salome/kernel_salome.dox:
1559
1560         Implementation of the "0021670: EDF 2265 GUI: Update GUI documentation" issue.
1561
1562 2012-08-15 12:42  inv
1563
1564         * configure.ac:
1565
1566         Increment version number (prepare SALOME version 7.0.0)
1567
1568 2012-08-08 15:54  vsr
1569
1570         * src/: Registry/RegistryConnexion.hxx,
1571           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
1572           Registry/SALOME_Registry.hxx,
1573           Registry/SALOME_Registry_Server.cxx,
1574           ResourcesManager/Makefile.am,
1575           ResourcesManager/ResourcesManager.cxx,
1576           ResourcesManager/ResourcesManager.hxx,
1577           ResourcesManager/ResourcesManager_Defs.hxx,
1578           ResourcesManager/SALOME_LoadRateManager.cxx,
1579           ResourcesManager/SALOME_LoadRateManager.hxx,
1580           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
1581           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
1582           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
1583           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
1584           ResourcesManager/SALOME_ResourcesManager.cxx,
1585           ResourcesManager/SALOME_ResourcesManager.hxx,
1586           SALOMEDS/Makefile.am, SALOMEDS/README_attributes,
1587           SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
1588           SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
1589           SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
1590           SALOMEDS/SALOMEDS_AttributeComment.cxx,
1591           SALOMEDS/SALOMEDS_AttributeComment.hxx,
1592           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
1593           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
1594           SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
1595           SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
1596           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
1597           SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
1598           SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
1599           SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
1600           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
1601           SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
1602           SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
1603           SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
1604           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
1605           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
1606           SALOMEDS/SALOMEDS_AttributeFileType.cxx,
1607           SALOMEDS/SALOMEDS_AttributeFileType.hxx,
1608           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
1609           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
1610           SALOMEDS/SALOMEDS_AttributeFlags.cxx,
1611           SALOMEDS/SALOMEDS_AttributeFlags.hxx,
1612           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
1613           SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
1614           SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
1615           SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
1616           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
1617           SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
1618           SALOMEDS/SALOMEDS_AttributeIOR.cxx,
1619           SALOMEDS/SALOMEDS_AttributeIOR.hxx,
1620           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
1621           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
1622           SALOMEDS/SALOMEDS_AttributeInteger.cxx,
1623           SALOMEDS/SALOMEDS_AttributeInteger.hxx,
1624           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
1625           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
1626           SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
1627           SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
1628           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
1629           SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
1630           SALOMEDS/SALOMEDS_AttributeName.cxx,
1631           SALOMEDS/SALOMEDS_AttributeName.hxx,
1632           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
1633           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
1634           SALOMEDS/SALOMEDS_AttributeOpened.cxx,
1635           SALOMEDS/SALOMEDS_AttributeOpened.hxx,
1636           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
1637           SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
1638           SALOMEDS/SALOMEDS_AttributeParameter.cxx,
1639           SALOMEDS/SALOMEDS_AttributeParameter.hxx,
1640           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
1641           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
1642           SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
1643           SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
1644           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
1645           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
1646           SALOMEDS/SALOMEDS_AttributePixMap.cxx,
1647           SALOMEDS/SALOMEDS_AttributePixMap.hxx,
1648           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
1649           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
1650           SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
1651           SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
1652           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
1653           SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
1654           SALOMEDS/SALOMEDS_AttributeReal.cxx,
1655           SALOMEDS/SALOMEDS_AttributeReal.hxx,
1656           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
1657           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
1658           SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
1659           SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
1660           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
1661           SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
1662           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
1663           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
1664           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
1665           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
1666           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
1667           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
1668           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
1669           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
1670           SALOMEDS/SALOMEDS_AttributeString.cxx,
1671           SALOMEDS/SALOMEDS_AttributeString.hxx,
1672           SALOMEDS/SALOMEDS_AttributeString_i.cxx,
1673           SALOMEDS/SALOMEDS_AttributeString_i.hxx,
1674           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
1675           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
1676           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
1677           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
1678           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
1679           SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
1680           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
1681           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
1682           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
1683           SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
1684           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
1685           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
1686           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
1687           SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
1688           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
1689           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
1690           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
1691           SALOMEDS/SALOMEDS_AttributeTarget.hxx,
1692           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
1693           SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
1694           SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
1695           SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
1696           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
1697           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
1698           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
1699           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
1700           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
1701           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
1702           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
1703           SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
1704           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
1705           SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
1706           SALOMEDS/SALOMEDS_AttributeUserID.cxx,
1707           SALOMEDS/SALOMEDS_AttributeUserID.hxx,
1708           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
1709           SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
1710           SALOMEDS/SALOMEDS_Attributes.hxx,
1711           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
1712           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
1713           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
1714           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
1715           SALOMEDS/SALOMEDS_Callback_i.hxx,
1716           SALOMEDS/SALOMEDS_ChildIterator.cxx,
1717           SALOMEDS/SALOMEDS_ChildIterator.hxx,
1718           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
1719           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
1720           SALOMEDS/SALOMEDS_Client.cxx,
1721           SALOMEDS/SALOMEDS_ClientAttributes.hxx,
1722           SALOMEDS/SALOMEDS_Defines.hxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
1723           SALOMEDS/SALOMEDS_Driver_i.hxx,
1724           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
1725           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
1726           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
1727           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
1728           SALOMEDS/SALOMEDS_IParameters.cxx,
1729           SALOMEDS/SALOMEDS_IParameters.hxx,
1730           SALOMEDS/SALOMEDS_SComponent.cxx,
1731           SALOMEDS/SALOMEDS_SComponent.hxx,
1732           SALOMEDS/SALOMEDS_SComponentIterator.cxx,
1733           SALOMEDS/SALOMEDS_SComponentIterator.hxx,
1734           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
1735           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
1736           SALOMEDS/SALOMEDS_SComponent_i.cxx,
1737           SALOMEDS/SALOMEDS_SComponent_i.hxx,
1738           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
1739           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
1740           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
1741           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
1742           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
1743           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
1744           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
1745           SALOMEDS/SALOMEDS_StudyManager.cxx,
1746           SALOMEDS/SALOMEDS_StudyManager.hxx,
1747           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
1748           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
1749           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
1750           SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
1751           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
1752           SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
1753           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
1754           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
1755           SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
1756           SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
1757           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
1758           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
1759           SALOMEDS/SALOME_DriverPy.py, SALOMEDS/Test/Makefile.am,
1760           SALOMEDS/Test/SALOMEDSTest.cxx, SALOMEDS/Test/SALOMEDSTest.hxx,
1761           SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
1762           SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
1763           SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
1764           SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
1765           SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
1766           SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
1767           SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
1768           SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
1769           SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
1770           SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
1771           SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
1772           SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
1773           SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
1774           SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
1775           SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
1776           SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
1777           SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
1778           SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
1779           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
1780           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
1781           SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
1782           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
1783           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
1784           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
1785           SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
1786           SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
1787           SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
1788           SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
1789           SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
1790           SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
1791           SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
1792           SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
1793           SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
1794           SALOMEDS/Test/SALOMEDSTest_Study.cxx,
1795           SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
1796           SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
1797           SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
1798           SALOMEDS/Test/TestSALOMEDS.cxx, SALOMEDS/Test/TestSALOMEDS.py,
1799           SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
1800           SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
1801           SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
1802           SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
1803           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
1804           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
1805           SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
1806           SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
1807           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
1808           SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
1809           SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
1810           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
1811           SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
1812           SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
1813           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
1814           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
1815           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
1816           SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
1817           SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
1818           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
1819           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
1820           SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
1821           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
1822           SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
1823           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
1824           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
1825           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
1826           SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
1827           SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
1828           SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
1829           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
1830           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
1831           SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
1832           SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
1833           SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
1834           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
1835           SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
1836           SALOMEDSClient/SALOMEDSClient_Observer.hxx,
1837           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
1838           SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
1839           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
1840           SALOMEDSClient/SALOMEDSClient_Study.hxx,
1841           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
1842           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
1843           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
1844           SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
1845           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
1846           SALOMEDSImpl/Makefile.am,
1847           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
1848           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
1849           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
1850           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
1851           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
1852           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
1853           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
1854           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
1855           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
1856           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
1857           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
1858           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
1859           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
1860           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
1861           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
1862           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
1863           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
1864           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
1865           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
1866           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
1867           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
1868           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
1869           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
1870           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
1871           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
1872           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
1873           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
1874           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
1875           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
1876           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
1877           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
1878           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
1879           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
1880           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
1881           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
1882           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
1883           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
1884           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
1885           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
1886           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
1887           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
1888           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
1889           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
1890           SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
1891           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
1892           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
1893           SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
1894           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
1895           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
1896           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
1897           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
1898           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
1899           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
1900           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
1901           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
1902           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
1903           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
1904           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
1905           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
1906           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
1907           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
1908           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
1909           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
1910           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
1911           SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
1912           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
1913           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
1914           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
1915           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
1916           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
1917           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
1918           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
1919           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
1920           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
1921           SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
1922           SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
1923           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
1924           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
1925           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
1926           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
1927           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
1928           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
1929           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
1930           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
1931           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
1932           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
1933           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
1934           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
1935           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
1936           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
1937           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
1938           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
1939           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
1940           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
1941           SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
1942           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
1943           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
1944           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
1945           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
1946           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
1947           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
1948           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
1949           SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
1950           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
1951           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
1952           SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
1953           SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
1954           SALOMELocalTrace/BaseTraceCollector.cxx,
1955           SALOMELocalTrace/BaseTraceCollector.hxx,
1956           SALOMELocalTrace/FileTraceCollector.cxx,
1957           SALOMELocalTrace/FileTraceCollector.hxx,
1958           SALOMELocalTrace/LocalTraceBufferPool.cxx,
1959           SALOMELocalTrace/LocalTraceBufferPool.hxx,
1960           SALOMELocalTrace/LocalTraceCollector.cxx,
1961           SALOMELocalTrace/LocalTraceCollector.hxx,
1962           SALOMELocalTrace/Makefile.am,
1963           SALOMELocalTrace/SALOME_LocalTrace.hxx,
1964           SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
1965           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
1966           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
1967           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
1968           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
1969           SALOMETraceCollector/Makefile.am,
1970           SALOMETraceCollector/SALOMETraceCollector.cxx,
1971           SALOMETraceCollector/SALOMETraceCollector.hxx,
1972           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
1973           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
1974           SALOMETraceCollector/Test/Makefile.am,
1975           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
1976           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
1977           SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
1978           SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
1979           TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
1980           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
1981           TestContainer/SALOME_TestComponent.hxx,
1982           TestContainer/SALOME_TestComponentPy.py,
1983           TestContainer/SALOME_TestComponent_i.cxx,
1984           TestContainer/SALOME_TestComponent_i.hxx,
1985           TestContainer/TestComponentPy.py,
1986           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
1987           TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
1988           TestMPIContainer/TestMPIComponentEngine.cxx,
1989           TestMPIContainer/TestMPIComponentEngine.hxx,
1990           TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
1991           UnitTests/UnitTests.cxx, UnitTests/UnitTests.py,
1992           Utils/Makefile.am, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
1993           Utils/SALOME_Utils.hxx, Utils/SALOME_utilities.py,
1994           Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
1995           Utils/Utils_CorbaException.hxx,
1996           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
1997           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
1998           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
1999           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
2000           Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
2001           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
2002           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
2003           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
2004           Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
2005           Utils/duplicate.cxx, Utils/Test/Makefile.am,
2006           Utils/Test/TestUtils.cxx, Utils/Test/TestUtils.py,
2007           Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx,
2008           win32pm/setup.py, win32pm/win32pm.c:
2009
2010         Merge from V6_main_20120808 08Aug12
2011
2012 2012-08-08 15:51  vsr
2013
2014         * src/: KERNEL_PY/salome_iapp.py, KERNEL_PY/salome_kernel.py,
2015           KERNEL_PY/salome_notebook.py, KERNEL_PY/salome_pynode.py,
2016           KERNEL_PY/salome_shared_modules.py, KERNEL_PY/salome_study.py,
2017           KERNEL_PY/salome_test.py, KERNEL_PY/salome_version.py,
2018           KERNEL_PY/kernel/Makefile.am, KERNEL_PY/kernel/__init__.py,
2019           KERNEL_PY/kernel/datamodeler.py, KERNEL_PY/kernel/deprecation.py,
2020           KERNEL_PY/kernel/diclookup.py, KERNEL_PY/kernel/enumerate.py,
2021           KERNEL_PY/kernel/kernelpy_autotest.sh.in,
2022           KERNEL_PY/kernel/logconfig.py.in, KERNEL_PY/kernel/logger.py,
2023           KERNEL_PY/kernel/pyunittester.py, KERNEL_PY/kernel/services.py,
2024           KERNEL_PY/kernel/studyedit.py, KERNEL_PY/kernel/syshelper.py,
2025           KERNEL_PY/kernel/termcolor.py, KERNEL_PY/kernel/testdata.py,
2026           KERNEL_PY/kernel/threadhelper.py,
2027           KERNEL_PY/kernel/uiexception.py, KERNEL_PY/kernel/unittester.py,
2028           KERNEL_PY/kernel/parametric/Makefile.am,
2029           KERNEL_PY/kernel/parametric/__init__.py,
2030           KERNEL_PY/kernel/parametric/compo_utils.py,
2031           KERNEL_PY/kernel/parametric/pyscript_utils.py,
2032           KERNEL_PY/kernel/parametric/study_exchange_vars.py,
2033           KernelHelpers/KernelHelpers.hxx,
2034           KernelHelpers/KernelHelpersUseCases.cxx,
2035           KernelHelpers/Makefile.am,
2036           KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
2037           KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
2038           KernelHelpers/SALOME_KernelServices.cxx,
2039           KernelHelpers/SALOME_KernelServices.hxx,
2040           KernelHelpers/SALOME_StudyEditor.cxx,
2041           KernelHelpers/SALOME_StudyEditor.hxx,
2042           KernelHelpers/Test/KernelHelpersUnitTests.cxx,
2043           KernelHelpers/Test/KernelHelpersUnitTests.hxx,
2044           KernelHelpers/Test/Makefile.am,
2045           KernelHelpers/Test/TestKernelHelpers.cxx,
2046           KernelHelpers/Test/TestKernelHelpers.py, Launcher/BatchTest.cxx,
2047           Launcher/BatchTest.hxx, Launcher/Launcher.cxx,
2048           Launcher/Launcher.hxx, Launcher/Launcher_Job.cxx,
2049           Launcher/Launcher_Job.hxx, Launcher/Launcher_Job_Command.cxx,
2050           Launcher/Launcher_Job_Command.hxx,
2051           Launcher/Launcher_Job_PythonSALOME.cxx,
2052           Launcher/Launcher_Job_PythonSALOME.hxx,
2053           Launcher/Launcher_Job_SALOME.cxx,
2054           Launcher/Launcher_Job_SALOME.hxx,
2055           Launcher/Launcher_Job_YACSFile.cxx,
2056           Launcher/Launcher_Job_YACSFile.hxx, Launcher/Launcher_Utils.hxx,
2057           Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
2058           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
2059           Launcher/SALOME_Launcher_Handler.cxx,
2060           Launcher/SALOME_Launcher_Handler.hxx,
2061           Launcher/SALOME_Launcher_Parser.cxx,
2062           Launcher/SALOME_Launcher_Parser.hxx,
2063           Launcher/SALOME_Launcher_defs.hxx, Launcher/TestLauncher.cxx,
2064           LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
2065           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
2066           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
2067           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
2068           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
2069           LifeCycleCORBA/TestContainerManager.cxx,
2070           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
2071           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
2072           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
2073           LifeCycleCORBA/Test/Makefile.am,
2074           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
2075           LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
2076           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
2077           LifeCycleCORBA_SWIG/Makefile.am,
2078           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
2079           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
2080           LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
2081           LifeCycleCORBA_SWIG/Test/Makefile.am,
2082           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
2083           LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
2084           LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
2085           Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
2086           Logger/SALOME_Logger_Server.hxx,
2087           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
2088           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
2089           Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
2090           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
2091           MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
2092           MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
2093           MPIContainer/launch_testMPI2.csh, MPIContainer/testMPI2.cxx,
2094           ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
2095           ModuleCatalog/SALOME_ModuleCatalog.hxx,
2096           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
2097           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
2098           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
2099           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
2100           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
2101           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
2102           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
2103           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
2104           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
2105           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
2106           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
2107           ModuleCatalog/TestModuleCatalog.py, ModuleGenerator/IDLparser.py,
2108           ModuleGenerator/Makefile.am, ModuleGenerator/README,
2109           ModuleGenerator/testIDLparser.in,
2110           ModuleGenerator/tests/AddComponent.idl,
2111           ModuleGenerator/tests/SubComponent.idl,
2112           ModuleGenerator/tests/Truc2Component.idl,
2113           ModuleGenerator/tests/TrucComponent.idl,
2114           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
2115           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
2116           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
2117           NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
2118           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
2119           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
2120           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
2121           NamingService/Makefile.am,
2122           NamingService/NamingService_WaitForServerReadiness.cxx,
2123           NamingService/NamingService_WaitForServerReadiness.hxx,
2124           NamingService/SALOME_NamingService.cxx,
2125           NamingService/SALOME_NamingService.hxx,
2126           NamingService/SALOME_NamingService.i,
2127           NamingService/SALOME_NamingServicePy.py,
2128           NamingService/SALOME_NamingService_defs.hxx,
2129           NamingService/ServiceUnreachable.cxx,
2130           NamingService/ServiceUnreachable.hxx,
2131           NamingService/Test/Makefile.am,
2132           NamingService/Test/NamingServiceTest.cxx,
2133           NamingService/Test/NamingServiceTest.hxx,
2134           NamingService/Test/TestNamingService.cxx,
2135           NamingService/Test/TestNamingService.py,
2136           Notification/CosNotifyShorthands.h, Notification/Makefile.am,
2137           Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
2138           Notification/NOTIFICATION_Consumer.cxx,
2139           Notification/NOTIFICATION_Consumer.hxx,
2140           Notification/NOTIFICATION_Supplier.cxx,
2141           Notification/NOTIFICATION_Supplier.hxx,
2142           Notification/SALOME_NOTIFICATION.hxx,
2143           ParallelContainer/Makefile.am,
2144           ParallelContainer/Parallel_Salome_file_i.cxx,
2145           ParallelContainer/Parallel_Salome_file_i.hxx,
2146           ParallelContainer/SALOME_ParallelComponent_i.cxx,
2147           ParallelContainer/SALOME_ParallelComponent_i.hxx,
2148           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
2149           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
2150           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
2151           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
2152           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
2153           ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
2154           ParallelContainer/SALOME_ParallelContainer_i.cxx,
2155           ParallelContainer/SALOME_ParallelContainer_i.hxx,
2156           ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
2157           ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
2158           Registry/Makefile.am, Registry/RegistryConnexion.cxx:
2159
2160         Merge from V6_main_20120808 08Aug12
2161
2162 2012-08-08 15:48  vsr
2163
2164         * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
2165           Communication/MatrixClient.hxx,
2166           Communication/MultiCommException.cxx,
2167           Communication/MultiCommException.hxx, Communication/Receiver.cxx,
2168           Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
2169           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
2170           Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
2171           Communication/SALOMEMultiComm.hxx,
2172           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
2173           Communication/SALOME_Communication.hxx,
2174           Communication/SALOME_Matrix_i.cxx,
2175           Communication/SALOME_Matrix_i.hxx,
2176           Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
2177           Communication_SWIG/Makefile.am,
2178           Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
2179           Container/Container_i.cxx, Container/Container_init_python.cxx,
2180           Container/Container_init_python.hxx, Container/Makefile.am,
2181           Container/SALOME_ComponentPy.py,
2182           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
2183           Container/SALOME_Container.hxx, Container/SALOME_Container.py,
2184           Container/SALOME_ContainerManager.cxx,
2185           Container/SALOME_ContainerManager.hxx,
2186           Container/SALOME_ContainerPy.py,
2187           Container/SALOME_Container_SignalsHandler.cxx,
2188           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
2189           Container/SALOME_FileRef_i.hxx,
2190           Container/SALOME_FileTransfer_i.cxx,
2191           Container/SALOME_FileTransfer_i.hxx, Container/SALOME_PyNode.py,
2192           Container/Salome_file_i.cxx, Container/Salome_file_i.hxx,
2193           Container/TestSalome_file.cxx, DF/DF_Application.cxx,
2194           DF/DF_Application.hxx, DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
2195           DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
2196           DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
2197           DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
2198           DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
2199           DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
2200           DSC/DSC_Basic/ConnectionManager_i.hxx,
2201           DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
2202           DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
2203           DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
2204           DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
2205           DSC/DSC_Basic/PortProperties_i.hxx,
2206           DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
2207           DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
2208           DSC/DSC_Python/dsccalcium.py, DSC/DSC_User/DSC_Exception.hxx,
2209           DSC/DSC_User/Makefile.am, DSC/DSC_User/Superv_Component_i.cxx,
2210           DSC/DSC_User/Superv_Component_i.hxx, DSC/DSC_User/base_port.cxx,
2211           DSC/DSC_User/base_port.hxx, DSC/DSC_User/port_factory.hxx,
2212           DSC/DSC_User/provides_port.cxx, DSC/DSC_User/provides_port.hxx,
2213           DSC/DSC_User/test_DSC_Exception.cxx, DSC/DSC_User/uses_port.cxx,
2214           DSC/DSC_User/uses_port.hxx, DSC/DSC_User/Basic/Makefile.am,
2215           DSC/DSC_User/Basic/basic_port_factory.cxx,
2216           DSC/DSC_User/Basic/basic_port_factory.hxx,
2217           DSC/DSC_User/Basic/data_short_port_provides.cxx,
2218           DSC/DSC_User/Basic/data_short_port_provides.hxx,
2219           DSC/DSC_User/Basic/data_short_port_uses.cxx,
2220           DSC/DSC_User/Basic/data_short_port_uses.hxx,
2221           DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
2222           DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
2223           DSC/DSC_User/Datastream/ConstTraits.hxx,
2224           DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
2225           DSC/DSC_User/Datastream/CouplingPolicy.hxx,
2226           DSC/DSC_User/Datastream/DataIdFilter.hxx,
2227           DSC/DSC_User/Datastream/DisplayPair.hxx,
2228           DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
2229           DSC/DSC_User/Datastream/GenericPort.hxx,
2230           DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
2231           DSC/DSC_User/Datastream/GenericUsesPort.hxx,
2232           DSC/DSC_User/Datastream/IteratorTraits.hxx,
2233           DSC/DSC_User/Datastream/Makefile.am,
2234           DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
2235           DSC/DSC_User/Datastream/fake.cc,
2236           DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
2237           DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
2238           DSC/DSC_User/Datastream/Calcium/Calcium.c,
2239           DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
2240           DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
2241           DSC/DSC_User/Datastream/Calcium/CalciumC.c,
2242           DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
2243           DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
2244           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
2245           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
2246           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
2247           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
2248           DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
2249           DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
2250           DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
2251           DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
2252           DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
2253           DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
2254           DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
2255           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
2256           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
2257           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
2258           DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
2259           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
2260           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
2261           DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
2262           DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
2263           DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
2264           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
2265           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
2266           DSC/DSC_User/Datastream/Calcium/Makefile.am,
2267           DSC/DSC_User/Datastream/Calcium/calcium.h,
2268           DSC/DSC_User/Datastream/Calcium/calcium.hf,
2269           DSC/DSC_User/Datastream/Calcium/calciumE.h,
2270           DSC/DSC_User/Datastream/Calcium/calciumP.h,
2271           DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
2272           DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
2273           DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
2274           DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
2275           DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
2276           DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
2277           DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
2278           DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
2279           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
2280           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
2281           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
2282           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
2283           DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
2284           DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
2285           DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
2286           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
2287           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
2288           DSC/DSC_User/Datastream/Calcium/calciumf.c,
2289           DSC/DSC_User/Datastream/Calcium/calciumf.h,
2290           DSC/DSC_User/Datastream/Calcium/fortoc.h,
2291           DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
2292           DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
2293           DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
2294           DSC/DSC_User/Datastream/Calcium/version.h,
2295           DSC/DSC_User/Datastream/Palm/Makefile.am,
2296           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
2297           DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
2298           DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
2299           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
2300           DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
2301           DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
2302           DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
2303           DSC/ParallelDSC/ParallelDSC_i.hxx,
2304           DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
2305           DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
2306           DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
2307           DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
2308           GenericObj/Makefile.am, GenericObj/SALOME_GenericObj_i.cc,
2309           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
2310           HDFPersist/HDFarray.cc, HDFPersist/HDFarray.hxx,
2311           HDFPersist/HDFarrayClose.c, HDFPersist/HDFarrayCreate.c,
2312           HDFPersist/HDFarrayGetDim.c, HDFPersist/HDFarrayGetType.c,
2313           HDFPersist/HDFarrayGetTypeId.c, HDFPersist/HDFarrayGetnDim.c,
2314           HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
2315           HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
2316           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
2317           HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
2318           HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
2319           HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
2320           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
2321           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
2322           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
2323           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
2324           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
2325           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
2326           HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
2327           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
2328           HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
2329           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
2330           HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
2331           HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
2332           HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
2333           HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
2334           HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
2335           HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
2336           HDFPersist/HDFinternalObject.cc,
2337           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
2338           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
2339           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
2340           HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
2341           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
2342           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
2343           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
2344           KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
2345           KERNEL_PY/__init__.py, KERNEL_PY/batchmode_salome.py,
2346           KERNEL_PY/import_hook.py, KERNEL_PY/iparameters.py,
2347           KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/omnipatch.py,
2348           KERNEL_PY/salome.py, KERNEL_PY/salome_ComponentGUI.py,
2349           KERNEL_PY/salome_genericobj.py:
2350
2351         Merge from V6_main_20120808 08Aug12
2352
2353 2012-08-08 15:44  vsr
2354
2355         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
2356           build_cmake.bat, build_configure, clean_configure, configure.ac,
2357           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
2358           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
2359           bin/VERSION.in, bin/addToKillList.py, bin/appli_clean.sh,
2360           bin/appli_gen.py, bin/appli_install.sh, bin/config_appli.xml,
2361           bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
2362           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
2363           bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
2364           bin/runIDLparser, bin/runNS.py, bin/runNS.sh, bin/runSalome,
2365           bin/runSalome.bat, bin/runSalome.csh, bin/runSalome.ksh,
2366           bin/runSalome.py, bin/salome.launch, bin/salomeConsole.py,
2367           bin/salome_session.py, bin/salome_utils.py, bin/server.py,
2368           bin/setenv.py, bin/showNS.py, bin/shutdownSalome.py,
2369           bin/virtual_salome.py, bin/waitContainers.py, bin/waitNS.py,
2370           bin/waitNS.sh, bin/appliskel/.bashrc,
2371           bin/appliskel/CatalogResources.xml, bin/appliskel/Makefile.am,
2372           bin/appliskel/README, bin/appliskel/SalomeApp.xml,
2373           bin/appliskel/envd, bin/appliskel/getAppliPath.py,
2374           bin/appliskel/killCurrentPort,
2375           bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
2376           bin/appliskel/runConsole, bin/appliskel/runParam,
2377           bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
2378           bin/appliskel/runSession, bin/appliskel/runTests,
2379           bin/appliskel/searchFreePort.sh,
2380           bin/appliskel/update_catalogs.py, doc/INSTALL.txt,
2381           doc/KERNEL_Services.txt, doc/Makefile.am,
2382           doc/README.cluster-CCRT, doc/SALOME_Application.txt,
2383           doc/UnitTests.txt, doc/index.txt, doc/kernel_resources.txt,
2384           doc/rst.css, doc/txt2html.sh, doc/userguide.txt,
2385           doc/configuration_examples/example_prerequis.sh,
2386           doc/docutils/Makefile.am, doc/docutils/conf.py.in,
2387           doc/docutils/docapi.rst, doc/docutils/index.rst,
2388           doc/docutils/kernel.rst, doc/docutils/overview.rst,
2389           doc/docutils/parametric.rst, doc/docutils/salomepypkg.rst,
2390           doc/docutils/archives/INSTALL.txt,
2391           doc/docutils/archives/KERNEL_Services.txt,
2392           doc/docutils/archives/SALOME_Application.txt,
2393           doc/docutils/archives/UnitTests.txt,
2394           doc/docutils/archives/index.txt,
2395           doc/docutils/archives/kernel_resources.txt,
2396           doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
2397           doc/docutils/archives/userguide.txt, doc/salome/Batch.texi,
2398           doc/salome/Makefile.am, doc/salome/batch.dox,
2399           doc/salome/install.dox, doc/salome/kernel_resources.dox,
2400           doc/salome/kernel_salome.dox, doc/salome/kernel_services.dox,
2401           doc/salome/kernel_services_cpphelpers.dox, doc/salome/main.dox,
2402           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
2403           doc/salome/unittests.dox, doc/salome/examples/example1,
2404           doc/salome/examples/example10, doc/salome/examples/example11,
2405           doc/salome/examples/example12, doc/salome/examples/example13,
2406           doc/salome/examples/example14, doc/salome/examples/example15,
2407           doc/salome/examples/example16, doc/salome/examples/example17,
2408           doc/salome/examples/example18, doc/salome/examples/example19,
2409           doc/salome/examples/example20, doc/salome/examples/example21,
2410           doc/salome/examples/example22, doc/salome/examples/example23,
2411           doc/salome/examples/example3, doc/salome/examples/example4,
2412           doc/salome/examples/example5, doc/salome/examples/example6,
2413           doc/salome/examples/example7, doc/salome/examples/example8,
2414           doc/salome/examples/example9, doc/salome/gui/Makefile.am,
2415           doc/salome/gui/doxyfile.in, doc/salome/gui/images/head.png,
2416           doc/salome/gui/images/icon_about.png,
2417           doc/salome/gui/static/doxygen.css,
2418           doc/salome/gui/static/footer.html,
2419           doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
2420           doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
2421           doc/salome/tui/images/head.png, doc/salome/tui/input/index.dox,
2422           doc/salome/tui/static/doxygen.css,
2423           doc/salome/tui/static/footer.html,
2424           doc/salome/tui/static/header.html.in, idl/Calcium_Ports.idl,
2425           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
2426           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
2427           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
2428           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
2429           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
2430           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
2431           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
2432           idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
2433           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
2434           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
2435           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
2436           idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
2437           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
2438           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
2439           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
2440           idl/SALOME_TestMPIComponent.idl,
2441           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
2442           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
2443           resources/CatalogResources.xml.in,
2444           resources/KERNELCatalog.xml.in, resources/Makefile.am,
2445           salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
2446           salome_adm/cmake_files/FindCPPUNIT.cmake,
2447           salome_adm/cmake_files/FindDOXYGEN.cmake,
2448           salome_adm/cmake_files/FindHDF5.cmake,
2449           salome_adm/cmake_files/FindKERNEL.cmake,
2450           salome_adm/cmake_files/FindLIBBATCH.cmake,
2451           salome_adm/cmake_files/FindLIBXML2.cmake,
2452           salome_adm/cmake_files/FindMPI.cmake,
2453           salome_adm/cmake_files/FindOMNIORB.cmake,
2454           salome_adm/cmake_files/FindPLATFORM.cmake,
2455           salome_adm/cmake_files/FindPTHREADS.cmake,
2456           salome_adm/cmake_files/FindPYTHON.cmake,
2457           salome_adm/cmake_files/FindSPHINX.cmake,
2458           salome_adm/cmake_files/FindSWIG.cmake,
2459           salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
2460           salome_adm/cmake_files/Makefile.am,
2461           salome_adm/cmake_files/UseOMNIORB.cmake,
2462           salome_adm/cmake_files/am2cmake.py,
2463           salome_adm/cmake_files/install_and_compile_python_file.cmake,
2464           salome_adm/cmake_files/install_python_from_idl.cmake,
2465           salome_adm/cmake_files/prepare_generating_doc.py,
2466           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
2467           salome_adm/unix/make_common_starter.am,
2468           salome_adm/unix/DEPRECATED/Doxyfile,
2469           salome_adm/unix/DEPRECATED/F77config.h.in,
2470           salome_adm/unix/DEPRECATED/config.h.in,
2471           salome_adm/unix/DEPRECATED/depend.in,
2472           salome_adm/unix/DEPRECATED/envScript.in,
2473           salome_adm/unix/DEPRECATED/make_commence.in,
2474           salome_adm/unix/DEPRECATED/make_conclude.in,
2475           salome_adm/unix/DEPRECATED/make_module.in,
2476           salome_adm/unix/DEPRECATED/make_omniorb.in,
2477           salome_adm/unix/config_files/Makefile.am,
2478           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
2479           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
2480           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
2481           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
2482           salome_adm/unix/config_files/ac_cxx_option.m4,
2483           salome_adm/unix/config_files/ac_cxx_template_options.m4,
2484           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
2485           salome_adm/unix/config_files/ac_cxx_warnings.m4,
2486           salome_adm/unix/config_files/ac_linker_options.m4,
2487           salome_adm/unix/config_files/acx_pthread.m4,
2488           salome_adm/unix/config_files/check_Kernel.m4,
2489           salome_adm/unix/config_files/check_boost.m4,
2490           salome_adm/unix/config_files/check_calcium.m4,
2491           salome_adm/unix/config_files/check_cas.m4,
2492           salome_adm/unix/config_files/check_corba.m4,
2493           salome_adm/unix/config_files/check_cppunit.m4,
2494           salome_adm/unix/config_files/check_f77.m4,
2495           salome_adm/unix/config_files/check_hdf5.m4,
2496           salome_adm/unix/config_files/check_htmlgen.m4,
2497           salome_adm/unix/config_files/check_lam.m4,
2498           salome_adm/unix/config_files/check_libbatch.m4,
2499           salome_adm/unix/config_files/check_libxml.m4,
2500           salome_adm/unix/config_files/check_local.m4,
2501           salome_adm/unix/config_files/check_lsf.m4,
2502           salome_adm/unix/config_files/check_mpi.m4,
2503           salome_adm/unix/config_files/check_mpich.m4,
2504           salome_adm/unix/config_files/check_omniorb.m4,
2505           salome_adm/unix/config_files/check_openmpi.m4,
2506           salome_adm/unix/config_files/check_openpbs.m4,
2507           salome_adm/unix/config_files/check_paco++.m4,
2508           salome_adm/unix/config_files/check_sockets.m4,
2509           salome_adm/unix/config_files/check_sphinx.m4,
2510           salome_adm/unix/config_files/check_swig.m4,
2511           salome_adm/unix/config_files/check_tbb.m4,
2512           salome_adm/unix/config_files/check_vtk.m4,
2513           salome_adm/unix/config_files/check_withihm.m4,
2514           salome_adm/unix/config_files/enable_pthreads.m4,
2515           salome_adm/unix/config_files/hack_libtool.m4,
2516           salome_adm/unix/config_files/local_install.m4,
2517           salome_adm/unix/config_files/production.m4,
2518           salome_adm/unix/config_files/pyembed.m4,
2519           salome_adm/unix/config_files/python.m4,
2520           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
2521           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
2522           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
2523           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
2524           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
2525           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
2526           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
2527           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
2528           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
2529           salome_adm/unix/config_files/DEPRECATED/install-sh,
2530           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
2531           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
2532           src/Basics/BasicsGenericDestructor.hxx,
2533           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
2534           src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
2535           src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
2536           src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
2537           src/Basics/Test/Makefile.am:
2538
2539         Merge from V6_main_20120808 08Aug12
2540
2541 2012-07-31 10:08  rnv
2542
2543         * src/Launcher/: Launcher_Job.cxx, Launcher_Job_SALOME.cxx:
2544
2545         Fix for the "21727: [CEA 584] sending a Yacs graph from Windows to a cluster " issue.
2546
2547 2012-06-27 11:44  gdd
2548
2549         * bin/: killSalomeWithPort.py, salome_session.py:
2550
2551         Add os.path.realpath
2552
2553 2012-06-20 07:42  mpv
2554
2555         * salome_adm/cmake_files/am2cmake.py:
2556
2557         Added ProE
2558
2559 2012-06-07 17:19  ageay
2560
2561         * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
2562           FindHDF5.cmake, FindLIBXML2.cmake, FindMPI.cmake,
2563           FindOMNIORB.cmake, FindPYTHON.cmake:
2564
2565         standardization of cmakization 2.
2566
2567 2012-06-07 16:27  ageay
2568
2569         * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
2570           FindHDF5.cmake, FindKERNEL.cmake, FindLIBXML2.cmake,
2571           FindMPI.cmake, FindOMNIORB.cmake, FindPYTHON.cmake:
2572
2573         cmakeization standardization.
2574
2575 2012-06-07 13:53  gdd
2576
2577         * src/DSC/DSC_User/Datastream/GenericPort.hxx:
2578
2579         Another fix for compilation with gcc 4.7
2580
2581 2012-06-07 13:26  gdd
2582
2583         * salome_adm/unix/config_files/check_vtk.m4,
2584           src/Basics/Basics_DirUtils.cxx,
2585           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
2586           src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/testMPI2.cxx,
2587           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
2588
2589         Fix for compilation with gcc 4.7
2590
2591 2012-06-07 12:07  vsr
2592
2593         * bin/runSalome.py:
2594
2595         0021482: [CEA 539] inconsistency between getAppliPath.py and runAppli
2596
2597 2012-06-07 11:22  ribes
2598
2599         * idl/DSC_Engines.idl, src/DSC/DSC_User/Superv_Component_i.hxx,
2600           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
2601           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx:
2602
2603         Adding a new method to initialize YACS services if
2604         the multi property on the service is used.
2605
2606 2012-06-05 12:44  vsr
2607
2608         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
2609           build_cmake.bat, build_configure, clean_configure, configure.ac,
2610           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
2611           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
2612           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
2613           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
2614           bin/killSalome.py, bin/killSalomeWithPort.py,
2615           bin/launchConfigureParser.py, bin/launchSalome.py,
2616           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
2617           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
2618           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
2619           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
2620           bin/server.py, bin/setenv.py, bin/showNS.py,
2621           bin/shutdownSalome.py, bin/virtual_salome.py,
2622           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
2623           bin/appliskel/.bashrc, bin/appliskel/Makefile.am,
2624           bin/appliskel/README, bin/appliskel/envd,
2625           bin/appliskel/getAppliPath.py,
2626           bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
2627           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
2628           bin/appliskel/runSalomeScript, bin/appliskel/runSession,
2629           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
2630           bin/appliskel/update_catalogs.py, doc/Makefile.am,
2631           doc/README.cluster-CCRT,
2632           doc/configuration_examples/example_prerequis.sh,
2633           doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
2634           doc/salome/Makefile.am, doc/salome/main.dox,
2635           doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
2636           doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
2637           doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
2638           doc/salome/tui/static/footer.html, idl/Calcium_Ports.idl.in,
2639           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
2640           idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
2641           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
2642           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
2643           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
2644           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
2645           idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
2646           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
2647           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
2648           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
2649           idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
2650           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
2651           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
2652           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
2653           idl/SALOME_TestMPIComponent.idl,
2654           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
2655           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
2656           resources/Makefile.am, salome_adm/Makefile.am,
2657           salome_adm/cmake_files/FindBOOST.cmake,
2658           salome_adm/cmake_files/FindCPPUNIT.cmake,
2659           salome_adm/cmake_files/FindDOXYGEN.cmake,
2660           salome_adm/cmake_files/FindHDF5.cmake,
2661           salome_adm/cmake_files/FindKERNEL.cmake,
2662           salome_adm/cmake_files/FindLIBBATCH.cmake,
2663           salome_adm/cmake_files/FindLIBXML2.cmake,
2664           salome_adm/cmake_files/FindMPI.cmake,
2665           salome_adm/cmake_files/FindOMNIORB.cmake,
2666           salome_adm/cmake_files/FindPLATFORM.cmake,
2667           salome_adm/cmake_files/FindPTHREADS.cmake,
2668           salome_adm/cmake_files/FindPYTHON.cmake,
2669           salome_adm/cmake_files/FindSPHINX.cmake,
2670           salome_adm/cmake_files/FindSWIG.cmake,
2671           salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
2672           salome_adm/cmake_files/Makefile.am,
2673           salome_adm/cmake_files/UseOMNIORB.cmake,
2674           salome_adm/cmake_files/am2cmake.py,
2675           salome_adm/cmake_files/install_and_compile_python_file.cmake,
2676           salome_adm/cmake_files/install_python_from_idl.cmake,
2677           salome_adm/cmake_files/prepare_generating_doc.py,
2678           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
2679           salome_adm/unix/make_common_starter.am,
2680           salome_adm/unix/DEPRECATED/Doxyfile,
2681           salome_adm/unix/DEPRECATED/F77config.h.in,
2682           salome_adm/unix/DEPRECATED/config.h.in,
2683           salome_adm/unix/DEPRECATED/depend.in,
2684           salome_adm/unix/DEPRECATED/envScript.in,
2685           salome_adm/unix/DEPRECATED/make_commence.in,
2686           salome_adm/unix/DEPRECATED/make_conclude.in,
2687           salome_adm/unix/DEPRECATED/make_module.in,
2688           salome_adm/unix/DEPRECATED/make_omniorb.in,
2689           salome_adm/unix/config_files/Makefile.am,
2690           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
2691           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
2692           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
2693           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
2694           salome_adm/unix/config_files/ac_cxx_option.m4,
2695           salome_adm/unix/config_files/ac_cxx_template_options.m4,
2696           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
2697           salome_adm/unix/config_files/ac_cxx_warnings.m4,
2698           salome_adm/unix/config_files/ac_linker_options.m4,
2699           salome_adm/unix/config_files/acx_pthread.m4,
2700           salome_adm/unix/config_files/check_Kernel.m4,
2701           salome_adm/unix/config_files/check_boost.m4,
2702           salome_adm/unix/config_files/check_calcium.m4,
2703           salome_adm/unix/config_files/check_cas.m4,
2704           salome_adm/unix/config_files/check_corba.m4,
2705           salome_adm/unix/config_files/check_cppunit.m4,
2706           salome_adm/unix/config_files/check_f77.m4,
2707           salome_adm/unix/config_files/check_hdf5.m4,
2708           salome_adm/unix/config_files/check_htmlgen.m4,
2709           salome_adm/unix/config_files/check_lam.m4,
2710           salome_adm/unix/config_files/check_libbatch.m4,
2711           salome_adm/unix/config_files/check_libxml.m4,
2712           salome_adm/unix/config_files/check_mpi.m4,
2713           salome_adm/unix/config_files/check_mpich.m4,
2714           salome_adm/unix/config_files/check_omniorb.m4,
2715           salome_adm/unix/config_files/check_openmpi.m4,
2716           salome_adm/unix/config_files/check_paco++.m4,
2717           salome_adm/unix/config_files/check_sockets.m4,
2718           salome_adm/unix/config_files/check_sphinx.m4,
2719           salome_adm/unix/config_files/check_swig.m4,
2720           salome_adm/unix/config_files/check_tbb.m4,
2721           salome_adm/unix/config_files/check_vtk.m4,
2722           salome_adm/unix/config_files/check_withihm.m4,
2723           salome_adm/unix/config_files/hack_libtool.m4,
2724           salome_adm/unix/config_files/local_install.m4,
2725           salome_adm/unix/config_files/production.m4,
2726           salome_adm/unix/config_files/pyembed.m4,
2727           salome_adm/unix/config_files/python.m4,
2728           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
2729           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
2730           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
2731           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
2732           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
2733           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
2734           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
2735           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
2736           src/Basics/BasicsGenericDestructor.hxx,
2737           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
2738           src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
2739           src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
2740           src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
2741           src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
2742           src/Communication/MatrixClient.cxx,
2743           src/Communication/MatrixClient.hxx,
2744           src/Communication/MultiCommException.cxx,
2745           src/Communication/MultiCommException.hxx,
2746           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
2747           src/Communication/ReceiverFactory.cxx,
2748           src/Communication/ReceiverFactory.hxx,
2749           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
2750           src/Communication/SALOMEMultiComm.cxx,
2751           src/Communication/SALOMEMultiComm.hxx,
2752           src/Communication/SALOME_Comm_i.cxx,
2753           src/Communication/SALOME_Comm_i.hxx,
2754           src/Communication/SALOME_Communication.hxx,
2755           src/Communication/SALOME_Matrix_i.cxx,
2756           src/Communication/SALOME_Matrix_i.hxx,
2757           src/Communication/SenderFactory.cxx,
2758           src/Communication/SenderFactory.hxx,
2759           src/Communication_SWIG/Makefile.am,
2760           src/Communication_SWIG/libSALOME_Comm.i,
2761           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
2762           src/Container/Container_init_python.cxx,
2763           src/Container/Container_init_python.hxx,
2764           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
2765           src/Container/SALOME_Component_i.hxx,
2766           src/Container/SALOME_Container.cxx,
2767           src/Container/SALOME_Container.hxx,
2768           src/Container/SALOME_Container.py,
2769           src/Container/SALOME_ContainerManager.cxx,
2770           src/Container/SALOME_ContainerManager.hxx,
2771           src/Container/SALOME_ContainerPy.py,
2772           src/Container/SALOME_Container_SignalsHandler.cxx,
2773           src/Container/SALOME_Container_i.hxx,
2774           src/Container/SALOME_FileRef_i.cxx,
2775           src/Container/SALOME_FileRef_i.hxx,
2776           src/Container/SALOME_FileTransfer_i.cxx,
2777           src/Container/SALOME_FileTransfer_i.hxx,
2778           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
2779           src/Container/Salome_file_i.hxx,
2780           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
2781           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
2782           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
2783           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
2784           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
2785           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
2786           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
2787           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
2788           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
2789           src/DSC/DSC_Basic/DSC_Basic.hxx,
2790           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
2791           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
2792           src/DSC/DSC_Basic/DSC_interface.hxx,
2793           src/DSC/DSC_Basic/Makefile.am,
2794           src/DSC/DSC_Basic/PortProperties_i.cxx,
2795           src/DSC/DSC_Basic/PortProperties_i.hxx,
2796           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
2797           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
2798           src/DSC/DSC_Python/dsccalcium.py,
2799           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
2800           src/DSC/DSC_User/Superv_Component_i.cxx,
2801           src/DSC/DSC_User/Superv_Component_i.hxx,
2802           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
2803           src/DSC/DSC_User/port_factory.hxx,
2804           src/DSC/DSC_User/provides_port.cxx,
2805           src/DSC/DSC_User/provides_port.hxx,
2806           src/DSC/DSC_User/test_DSC_Exception.cxx,
2807           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
2808           src/DSC/DSC_User/Basic/Makefile.am,
2809           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
2810           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
2811           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
2812           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
2813           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
2814           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
2815           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
2816           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
2817           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
2818           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
2819           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
2820           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
2821           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
2822           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
2823           src/DSC/DSC_User/Datastream/GenericPort.hxx,
2824           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
2825           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
2826           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
2827           src/DSC/DSC_User/Datastream/Makefile.am,
2828           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
2829           src/DSC/DSC_User/Datastream/fake.cc,
2830           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
2831           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
2832           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
2833           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
2834           src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
2835           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
2836           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
2837           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
2838           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
2839           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
2840           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
2841           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
2842           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
2843           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
2844           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
2845           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
2846           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
2847           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
2848           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
2849           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
2850           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
2851           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
2852           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
2853           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
2854           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
2855           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
2856           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
2857           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
2858           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
2859           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
2860           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
2861           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
2862           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
2863           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
2864           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
2865           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
2866           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
2867           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
2868           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
2869           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
2870           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
2871           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
2872           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
2873           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
2874           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
2875           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
2876           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
2877           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
2878           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
2879           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
2880           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
2881           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
2882           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
2883           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
2884           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
2885           src/DSC/DSC_User/Datastream/Calcium/version.h,
2886           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
2887           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
2888           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
2889           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
2890           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
2891           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
2892           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
2893           src/DSC/ParallelDSC/Makefile.am,
2894           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
2895           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
2896           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
2897           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
2898           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
2899           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
2900           src/GenericObj/Makefile.am,
2901           src/GenericObj/SALOME_GenericObj_i.cc,
2902           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
2903           src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
2904           src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
2905           src/HDFPersist/HDFarrayGetDim.c,
2906           src/HDFPersist/HDFarrayGetType.c,
2907           src/HDFPersist/HDFarrayGetTypeId.c,
2908           src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
2909           src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
2910           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
2911           src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
2912           src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
2913           src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
2914           src/HDFPersist/HDFcontainerObject.cc,
2915           src/HDFPersist/HDFcontainerObject.hxx,
2916           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
2917           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
2918           src/HDFPersist/HDFdatasetClose.c,
2919           src/HDFPersist/HDFdatasetCreate.c,
2920           src/HDFPersist/HDFdatasetGetDim.c,
2921           src/HDFPersist/HDFdatasetGetOrder.c,
2922           src/HDFPersist/HDFdatasetGetSize.c,
2923           src/HDFPersist/HDFdatasetGetType.c,
2924           src/HDFPersist/HDFdatasetGetnDim.c,
2925           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
2926           src/HDFPersist/HDFdatasetWrite.c,
2927           src/HDFPersist/HDFerrorModeLock.c,
2928           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
2929           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
2930           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
2931           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
2932           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
2933           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
2934           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
2935           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
2936           src/HDFPersist/HDFinternalObject.cc,
2937           src/HDFPersist/HDFinternalObject.hxx,
2938           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
2939           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
2940           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
2941           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
2942           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
2943           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
2944           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
2945           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
2946           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
2947           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
2948           src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
2949           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
2950           src/KERNEL_PY/kernel_shared_modules.py,
2951           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
2952           src/KERNEL_PY/salome_ComponentGUI.py,
2953           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
2954           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
2955           src/KERNEL_PY/salome_pynode.py,
2956           src/KERNEL_PY/salome_shared_modules.py,
2957           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
2958           src/KERNEL_PY/salome_version.py,
2959           src/KERNEL_PY/kernel/Makefile.am,
2960           src/KERNEL_PY/kernel/__init__.py,
2961           src/KERNEL_PY/kernel/datamodeler.py,
2962           src/KERNEL_PY/kernel/deprecation.py,
2963           src/KERNEL_PY/kernel/diclookup.py,
2964           src/KERNEL_PY/kernel/enumerate.py,
2965           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
2966           src/KERNEL_PY/kernel/logconfig.py.in,
2967           src/KERNEL_PY/kernel/logger.py,
2968           src/KERNEL_PY/kernel/pyunittester.py,
2969           src/KERNEL_PY/kernel/services.py,
2970           src/KERNEL_PY/kernel/studyedit.py,
2971           src/KERNEL_PY/kernel/syshelper.py,
2972           src/KERNEL_PY/kernel/termcolor.py,
2973           src/KERNEL_PY/kernel/testdata.py,
2974           src/KERNEL_PY/kernel/threadhelper.py,
2975           src/KERNEL_PY/kernel/uiexception.py,
2976           src/KERNEL_PY/kernel/unittester.py,
2977           src/KERNEL_PY/kernel/parametric/Makefile.am,
2978           src/KERNEL_PY/kernel/parametric/__init__.py,
2979           src/KERNEL_PY/kernel/parametric/compo_utils.py,
2980           src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
2981           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
2982           src/KernelHelpers/KernelHelpers.hxx,
2983           src/KernelHelpers/KernelHelpersUseCases.cxx,
2984           src/KernelHelpers/Makefile.am,
2985           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
2986           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
2987           src/KernelHelpers/SALOME_KernelServices.cxx,
2988           src/KernelHelpers/SALOME_KernelServices.hxx,
2989           src/KernelHelpers/SALOME_StudyEditor.cxx,
2990           src/KernelHelpers/SALOME_StudyEditor.hxx,
2991           src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
2992           src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
2993           src/KernelHelpers/Test/Makefile.am,
2994           src/KernelHelpers/Test/TestKernelHelpers.cxx,
2995           src/KernelHelpers/Test/TestKernelHelpers.py,
2996           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
2997           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
2998           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
2999           src/Launcher/Launcher_Job_Command.cxx,
3000           src/Launcher/Launcher_Job_Command.hxx,
3001           src/Launcher/Launcher_Job_PythonSALOME.cxx,
3002           src/Launcher/Launcher_Job_PythonSALOME.hxx,
3003           src/Launcher/Launcher_Job_SALOME.cxx,
3004           src/Launcher/Launcher_Job_SALOME.hxx,
3005           src/Launcher/Launcher_Job_YACSFile.cxx,
3006           src/Launcher/Launcher_Job_YACSFile.hxx,
3007           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
3008           src/Launcher/SALOME_Launcher.cxx,
3009           src/Launcher/SALOME_Launcher.hxx,
3010           src/Launcher/SALOME_LauncherServer.cxx,
3011           src/Launcher/SALOME_Launcher_Handler.cxx,
3012           src/Launcher/SALOME_Launcher_Handler.hxx,
3013           src/Launcher/SALOME_Launcher_Parser.cxx,
3014           src/Launcher/SALOME_Launcher_Parser.hxx,
3015           src/Launcher/SALOME_Launcher_defs.hxx,
3016           src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
3017           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
3018           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
3019           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
3020           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
3021           src/LifeCycleCORBA/TestContainerManager.cxx,
3022           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
3023           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
3024           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
3025           src/LifeCycleCORBA/Test/Makefile.am,
3026           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
3027           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
3028           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
3029           src/LifeCycleCORBA_SWIG/Makefile.am,
3030           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
3031           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
3032           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
3033           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
3034           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
3035           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
3036           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
3037           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
3038           src/Logger/SALOME_Logger_Server.hxx,
3039           src/Logger/SALOME_Logger_Server_main.cxx,
3040           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
3041           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
3042           src/Logger/Test/TestKiller.py,
3043           src/MPIContainer/MPIContainer_i.cxx,
3044           src/MPIContainer/MPIContainer_i.hxx,
3045           src/MPIContainer/MPIObject_i.cxx,
3046           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
3047           src/MPIContainer/SALOME_MPIContainer.cxx,
3048           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
3049           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
3050           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
3051           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
3052           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
3053           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
3054           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
3055           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
3056           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
3057           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
3058           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
3059           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
3060           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
3061           src/ModuleCatalog/TestModuleCatalog.py,
3062           src/ModuleGenerator/IDLparser.py,
3063           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
3064           src/ModuleGenerator/testIDLparser.in,
3065           src/ModuleGenerator/tests/AddComponent.idl,
3066           src/ModuleGenerator/tests/SubComponent.idl,
3067           src/ModuleGenerator/tests/Truc2Component.idl,
3068           src/ModuleGenerator/tests/TrucComponent.idl,
3069           src/ModuleGenerator/tests/test1.sh,
3070           src/ModuleGenerator/tests/test1b.sh,
3071           src/ModuleGenerator/tests/test2.sh,
3072           src/ModuleGenerator/tests/test3.sh,
3073           src/ModuleGenerator/tests/test4.sh,
3074           src/ModuleGenerator/tests/test5.sh,
3075           src/NOTIFICATION_SWIG/Makefile.am,
3076           src/NOTIFICATION_SWIG/NOTIFICATION.i,
3077           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
3078           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
3079           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
3080           src/NamingService/Makefile.am,
3081           src/NamingService/NamingService_WaitForServerReadiness.cxx,
3082           src/NamingService/NamingService_WaitForServerReadiness.hxx,
3083           src/NamingService/SALOME_NamingService.cxx,
3084           src/NamingService/SALOME_NamingService.hxx,
3085           src/NamingService/SALOME_NamingService.i,
3086           src/NamingService/SALOME_NamingServicePy.py,
3087           src/NamingService/SALOME_NamingService_defs.hxx,
3088           src/NamingService/ServiceUnreachable.cxx,
3089           src/NamingService/ServiceUnreachable.hxx,
3090           src/NamingService/Test/Makefile.am,
3091           src/NamingService/Test/NamingServiceTest.cxx,
3092           src/NamingService/Test/NamingServiceTest.hxx,
3093           src/NamingService/Test/TestNamingService.cxx,
3094           src/NamingService/Test/TestNamingService.py,
3095           src/Notification/CosNotifyShorthands.h,
3096           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
3097           src/Notification/NOTIFICATION.hxx,
3098           src/Notification/NOTIFICATION_Consumer.cxx,
3099           src/Notification/NOTIFICATION_Consumer.hxx,
3100           src/Notification/NOTIFICATION_Supplier.cxx,
3101           src/Notification/NOTIFICATION_Supplier.hxx,
3102           src/Notification/SALOME_NOTIFICATION.hxx,
3103           src/ParallelContainer/Makefile.am,
3104           src/ParallelContainer/Parallel_Salome_file_i.cxx,
3105           src/ParallelContainer/Parallel_Salome_file_i.hxx,
3106           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
3107           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
3108           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
3109           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
3110           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
3111           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
3112           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
3113           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
3114           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
3115           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
3116           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
3117           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
3118           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
3119           src/Registry/RegistryConnexion.hxx,
3120           src/Registry/RegistryService.cxx,
3121           src/Registry/RegistryService.hxx,
3122           src/Registry/SALOME_Registry.hxx,
3123           src/Registry/SALOME_Registry_Server.cxx,
3124           src/ResourcesManager/Makefile.am,
3125           src/ResourcesManager/ResourcesManager.cxx,
3126           src/ResourcesManager/ResourcesManager.hxx,
3127           src/ResourcesManager/ResourcesManager_Defs.hxx,
3128           src/ResourcesManager/SALOME_LoadRateManager.cxx,
3129           src/ResourcesManager/SALOME_LoadRateManager.hxx,
3130           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
3131           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
3132           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
3133           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
3134           src/ResourcesManager/SALOME_ResourcesManager.cxx,
3135           src/ResourcesManager/SALOME_ResourcesManager.hxx,
3136           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
3137           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
3138           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
3139           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
3140           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
3141           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
3142           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
3143           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
3144           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
3145           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
3146           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
3147           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
3148           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
3149           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
3150           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
3151           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
3152           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
3153           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
3154           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
3155           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
3156           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
3157           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
3158           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
3159           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
3160           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
3161           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
3162           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
3163           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
3164           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
3165           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
3166           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
3167           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
3168           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
3169           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
3170           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
3171           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
3172           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
3173           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
3174           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
3175           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
3176           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
3177           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
3178           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
3179           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
3180           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
3181           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
3182           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
3183           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
3184           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
3185           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
3186           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
3187           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
3188           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
3189           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
3190           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
3191           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
3192           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
3193           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
3194           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
3195           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
3196           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
3197           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
3198           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
3199           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
3200           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
3201           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
3202           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
3203           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
3204           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
3205           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
3206           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
3207           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
3208           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
3209           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
3210           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
3211           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
3212           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
3213           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
3214           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
3215           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
3216           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
3217           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
3218           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
3219           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
3220           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
3221           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
3222           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
3223           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
3224           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
3225           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
3226           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
3227           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
3228           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
3229           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
3230           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
3231           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
3232           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
3233           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
3234           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
3235           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
3236           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
3237           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
3238           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
3239           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
3240           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
3241           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
3242           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
3243           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
3244           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
3245           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
3246           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
3247           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
3248           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
3249           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
3250           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
3251           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
3252           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
3253           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
3254           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
3255           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
3256           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
3257           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
3258           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
3259           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
3260           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
3261           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
3262           src/SALOMEDS/SALOMEDS_Attributes.hxx,
3263           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
3264           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
3265           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
3266           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
3267           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
3268           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
3269           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
3270           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
3271           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
3272           src/SALOMEDS/SALOMEDS_Client.cxx,
3273           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
3274           src/SALOMEDS/SALOMEDS_Defines.hxx,
3275           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
3276           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
3277           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
3278           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
3279           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
3280           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
3281           src/SALOMEDS/SALOMEDS_IParameters.cxx,
3282           src/SALOMEDS/SALOMEDS_IParameters.hxx,
3283           src/SALOMEDS/SALOMEDS_SComponent.cxx,
3284           src/SALOMEDS/SALOMEDS_SComponent.hxx,
3285           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
3286           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
3287           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
3288           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
3289           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
3290           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
3291           src/SALOMEDS/SALOMEDS_SObject.cxx,
3292           src/SALOMEDS/SALOMEDS_SObject.hxx,
3293           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
3294           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
3295           src/SALOMEDS/SALOMEDS_Server.cxx,
3296           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
3297           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
3298           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
3299           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
3300           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
3301           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
3302           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
3303           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
3304           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
3305           src/SALOMEDS/SALOMEDS_Study_i.cxx,
3306           src/SALOMEDS/SALOMEDS_Study_i.hxx,
3307           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
3308           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
3309           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
3310           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
3311           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
3312           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
3313           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
3314           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
3315           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
3316           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
3317           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
3318           src/SALOMEDS/Test/SALOMEDSTest.cxx,
3319           src/SALOMEDS/Test/SALOMEDSTest.hxx,
3320           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
3321           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
3322           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
3323           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
3324           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
3325           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
3326           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
3327           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
3328           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
3329           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
3330           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
3331           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
3332           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
3333           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
3334           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
3335           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
3336           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
3337           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
3338           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
3339           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
3340           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
3341           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
3342           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
3343           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
3344           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
3345           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
3346           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
3347           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
3348           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
3349           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
3350           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
3351           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
3352           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
3353           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
3354           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
3355           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
3356           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
3357           src/SALOMEDS/Test/TestSALOMEDS.cxx,
3358           src/SALOMEDS/Test/TestSALOMEDS.py,
3359           src/SALOMEDSClient/Makefile.am,
3360           src/SALOMEDSClient/SALOMEDSClient.hxx,
3361           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
3362           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
3363           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
3364           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
3365           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
3366           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
3367           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
3368           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
3369           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
3370           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
3371           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
3372           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
3373           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
3374           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
3375           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
3376           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
3377           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
3378           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
3379           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
3380           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
3381           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
3382           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
3383           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
3384           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
3385           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
3386           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
3387           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
3388           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
3389           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
3390           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
3391           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
3392           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
3393           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
3394           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
3395           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
3396           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
3397           src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
3398           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
3399           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
3400           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
3401           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
3402           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
3403           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
3404           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
3405           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
3406           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
3407           src/SALOMEDSImpl/Makefile.am,
3408           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
3409           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
3410           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
3411           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
3412           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
3413           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
3414           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
3415           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
3416           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
3417           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
3418           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
3419           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
3420           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
3421           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
3422           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
3423           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
3424           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
3425           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
3426           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
3427           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
3428           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
3429           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
3430           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
3431           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
3432           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
3433           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
3434           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
3435           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
3436           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
3437           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
3438           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
3439           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
3440           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
3441           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
3442           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
3443           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
3444           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
3445           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
3446           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
3447           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
3448           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
3449           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
3450           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
3451           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
3452           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
3453           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
3454           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
3455           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
3456           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
3457           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
3458           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
3459           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
3460           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
3461           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
3462           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
3463           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
3464           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
3465           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
3466           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
3467           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
3468           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
3469           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
3470           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
3471           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
3472           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
3473           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
3474           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
3475           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
3476           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
3477           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
3478           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
3479           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
3480           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
3481           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
3482           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
3483           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
3484           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
3485           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
3486           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
3487           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
3488           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
3489           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
3490           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
3491           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
3492           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
3493           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
3494           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
3495           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
3496           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
3497           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
3498           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
3499           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
3500           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
3501           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
3502           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
3503           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
3504           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
3505           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
3506           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
3507           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
3508           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
3509           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
3510           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
3511           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
3512           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
3513           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
3514           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
3515           src/SALOMELocalTrace/BaseTraceCollector.cxx,
3516           src/SALOMELocalTrace/BaseTraceCollector.hxx,
3517           src/SALOMELocalTrace/FileTraceCollector.cxx,
3518           src/SALOMELocalTrace/FileTraceCollector.hxx,
3519           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
3520           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
3521           src/SALOMELocalTrace/LocalTraceCollector.cxx,
3522           src/SALOMELocalTrace/LocalTraceCollector.hxx,
3523           src/SALOMELocalTrace/Makefile.am,
3524           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
3525           src/SALOMELocalTrace/utilities.h,
3526           src/SALOMELocalTrace/Test/Makefile.am,
3527           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
3528           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
3529           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
3530           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
3531           src/SALOMETraceCollector/Makefile.am,
3532           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
3533           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
3534           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
3535           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
3536           src/SALOMETraceCollector/Test/Makefile.am,
3537           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
3538           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
3539           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
3540           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
3541           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
3542           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
3543           src/TestContainer/SALOME_TestComponent.hxx,
3544           src/TestContainer/SALOME_TestComponentPy.py,
3545           src/TestContainer/SALOME_TestComponent_i.cxx,
3546           src/TestContainer/SALOME_TestComponent_i.hxx,
3547           src/TestContainer/TestComponentPy.py,
3548           src/TestContainer/TestContainer.cxx,
3549           src/TestContainer/TestLogger.cxx,
3550           src/TestContainer/TestLogger.py,
3551           src/TestMPIContainer/Makefile.am,
3552           src/TestMPIContainer/TestMPIComponentEngine.cxx,
3553           src/TestMPIContainer/TestMPIComponentEngine.hxx,
3554           src/TestMPIContainer/TestMPIContainer.cxx,
3555           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
3556           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
3557           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
3558           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
3559           src/Utils/Utils_CommException.cxx,
3560           src/Utils/Utils_CommException.hxx,
3561           src/Utils/Utils_CorbaException.hxx,
3562           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
3563           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
3564           src/Utils/Utils_ExceptHandlers.cxx,
3565           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
3566           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
3567           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
3568           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
3569           src/Utils/Utils_SALOME_Exception.cxx,
3570           src/Utils/Utils_SALOME_Exception.hxx,
3571           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
3572           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
3573           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
3574           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
3575           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
3576           src/win32pm/win32pm.c:
3577
3578         Merge from V6_5_BR 05/06/2012
3579
3580 2012-05-31 08:22  mpv
3581
3582         * salome_adm/cmake_files/am2cmake.py:
3583
3584         TRIPOLI project specific configuration
3585
3586 2012-05-31 07:45  mpv
3587
3588         * salome_adm/cmake_files/am2cmake.py:
3589
3590         TRIPOLI project specific configuration
3591
3592 2012-05-25 13:00  rnv
3593
3594         * salome_adm/cmake_files/am2cmake.py:
3595
3596         Generate documentation in the GHS3DPRLPLUGIN module.
3597
3598 2012-05-24 10:47  vsr
3599
3600         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
3601
3602         Fix regression of Save()/SaveAs() operation (multi-file mode) caused by previous integrations.
3603
3604 2012-04-27 17:10  ageay
3605
3606         * salome_adm/cmake_files/FindHDF5.cmake:
3607
3608         Little type error.
3609
3610 2012-04-27 11:23  rnc
3611
3612         * salome_adm/cmake_files/am2cmake.py:
3613
3614         updated salome version
3615
3616 2012-04-27 08:59  rnv
3617
3618         * salome_adm/cmake_files/am2cmake.py:
3619
3620         Remove old packages from Geometry module.
3621
3622 2012-04-24 15:36  rnc
3623
3624         * salome_adm/cmake_files/: FindHDF5.cmake, am2cmake.py:
3625
3626         Dealing with HDF5 compiled with mpi:
3627         - Addition of a temporary necessary line to remove after cmakeization.
3628         - Reordering of checking procedure in am2cmake in order to check MPI before HDF5.
3629
3630 2012-04-24 09:42  ageay
3631
3632         * salome_adm/cmake_files/FindHDF5.cmake:
3633
3634         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.
3635
3636 2012-04-24 09:33  ageay
3637
3638         * salome_adm/cmake_files/FindHDF5.cmake:
3639
3640         Dealing with HDF5 compiled with mpi. addition of MPI_INCLUDES_DIR into HDF5_INCLUDES_DIR. Same for FLAGs and LIBS.
3641
3642 2012-04-23 13:59  vsr
3643
3644         * bin/killSalomeWithPort.py:
3645
3646         Fix problem with --portkill / -p option
3647
3648 2012-04-20 09:25  rnv
3649
3650         * doc/salome/gui/doxyfile.in:
3651
3652         Change dot image format from jpg to png.
3653
3654 2012-04-20 09:11  rnv
3655
3656         * doc/salome/tui/doxyfile.in:
3657
3658         Change dot image format from jpg to png.
3659
3660 2012-04-18 16:24  vsr
3661
3662         * doc/salome/main.dox:
3663
3664         Fixed error in the documentation (wrong indentation)
3665
3666 2012-04-18 15:57  gdd
3667
3668         * doc/salome/main.dox:
3669
3670         Fix small mispell
3671
3672 2012-04-18 10:01  vsr
3673
3674         * doc/salome/tui/Makefile.am:
3675
3676         Fix problem of make distcheck on automake 1.11 (Mandriva 2010):
3677         - we have to uninstall only the staff generated for tui doc files and nothing more
3678
3679 2012-04-17 13:56  rnv
3680
3681         * salome_adm/cmake_files/FindBOOST.cmake:
3682
3683         Add new version of the boost library.
3684
3685 2012-04-17 09:28  vsr
3686
3687         * bin/killSalomeWithPort.py:
3688
3689         0021548: [CEA 555]: Pb with --shutdown-servers=1 option
3690         Fix regression caused by previous integration
3691
3692 2012-04-13 17:32  barate
3693
3694         * src/Launcher/Launcher.cxx:
3695
3696         Properly handle errors in queryJob
3697
3698 2012-04-12 16:04  vsr
3699
3700         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
3701           build_cmake.bat, build_configure, clean_configure, configure.ac,
3702           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
3703           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
3704           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
3705           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
3706           bin/killSalome.py, bin/killSalomeWithPort.py,
3707           bin/launchConfigureParser.py, bin/launchSalome.py,
3708           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
3709           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
3710           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
3711           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
3712           bin/server.py, bin/setenv.py, bin/showNS.py,
3713           bin/shutdownSalome.py, bin/virtual_salome.py,
3714           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
3715           bin/appliskel/.bashrc, bin/appliskel/Makefile.am,
3716           bin/appliskel/README, bin/appliskel/envd,
3717           bin/appliskel/getAppliPath.py,
3718           bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
3719           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
3720           bin/appliskel/runSalomeScript, bin/appliskel/runSession,
3721           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
3722           bin/appliskel/update_catalogs.py, doc/Makefile.am,
3723           doc/README.cluster-CCRT,
3724           doc/configuration_examples/example_prerequis.sh,
3725           doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
3726           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
3727           doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
3728           doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
3729           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
3730           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
3731           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
3732           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
3733           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
3734           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
3735           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
3736           idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
3737           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
3738           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
3739           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
3740           idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
3741           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
3742           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
3743           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
3744           idl/SALOME_TestMPIComponent.idl,
3745           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
3746           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
3747           resources/Makefile.am, salome_adm/Makefile.am,
3748           salome_adm/cmake_files/FindBOOST.cmake,
3749           salome_adm/cmake_files/FindCPPUNIT.cmake,
3750           salome_adm/cmake_files/FindDOXYGEN.cmake,
3751           salome_adm/cmake_files/FindHDF5.cmake,
3752           salome_adm/cmake_files/FindKERNEL.cmake,
3753           salome_adm/cmake_files/FindLIBBATCH.cmake,
3754           salome_adm/cmake_files/FindLIBXML2.cmake,
3755           salome_adm/cmake_files/FindMPI.cmake,
3756           salome_adm/cmake_files/FindOMNIORB.cmake,
3757           salome_adm/cmake_files/FindPLATFORM.cmake,
3758           salome_adm/cmake_files/FindPTHREADS.cmake,
3759           salome_adm/cmake_files/FindPYTHON.cmake,
3760           salome_adm/cmake_files/FindSPHINX.cmake,
3761           salome_adm/cmake_files/FindSWIG.cmake,
3762           salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
3763           salome_adm/cmake_files/Makefile.am,
3764           salome_adm/cmake_files/UseOMNIORB.cmake,
3765           salome_adm/cmake_files/am2cmake.py,
3766           salome_adm/cmake_files/install_and_compile_python_file.cmake,
3767           salome_adm/cmake_files/install_python_from_idl.cmake,
3768           salome_adm/cmake_files/prepare_generating_doc.py,
3769           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
3770           salome_adm/unix/make_common_starter.am,
3771           salome_adm/unix/DEPRECATED/Doxyfile,
3772           salome_adm/unix/DEPRECATED/F77config.h.in,
3773           salome_adm/unix/DEPRECATED/config.h.in,
3774           salome_adm/unix/DEPRECATED/depend.in,
3775           salome_adm/unix/DEPRECATED/envScript.in,
3776           salome_adm/unix/DEPRECATED/make_commence.in,
3777           salome_adm/unix/DEPRECATED/make_conclude.in,
3778           salome_adm/unix/DEPRECATED/make_module.in,
3779           salome_adm/unix/DEPRECATED/make_omniorb.in,
3780           salome_adm/unix/config_files/Makefile.am,
3781           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
3782           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
3783           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
3784           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
3785           salome_adm/unix/config_files/ac_cxx_option.m4,
3786           salome_adm/unix/config_files/ac_cxx_template_options.m4,
3787           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
3788           salome_adm/unix/config_files/ac_cxx_warnings.m4,
3789           salome_adm/unix/config_files/ac_linker_options.m4,
3790           salome_adm/unix/config_files/acx_pthread.m4,
3791           salome_adm/unix/config_files/check_Kernel.m4,
3792           salome_adm/unix/config_files/check_boost.m4,
3793           salome_adm/unix/config_files/check_calcium.m4,
3794           salome_adm/unix/config_files/check_cas.m4,
3795           salome_adm/unix/config_files/check_corba.m4,
3796           salome_adm/unix/config_files/check_cppunit.m4,
3797           salome_adm/unix/config_files/check_f77.m4,
3798           salome_adm/unix/config_files/check_hdf5.m4,
3799           salome_adm/unix/config_files/check_htmlgen.m4,
3800           salome_adm/unix/config_files/check_lam.m4,
3801           salome_adm/unix/config_files/check_libbatch.m4,
3802           salome_adm/unix/config_files/check_libxml.m4,
3803           salome_adm/unix/config_files/check_mpi.m4,
3804           salome_adm/unix/config_files/check_mpich.m4,
3805           salome_adm/unix/config_files/check_omniorb.m4,
3806           salome_adm/unix/config_files/check_openmpi.m4,
3807           salome_adm/unix/config_files/check_paco++.m4,
3808           salome_adm/unix/config_files/check_sockets.m4,
3809           salome_adm/unix/config_files/check_sphinx.m4,
3810           salome_adm/unix/config_files/check_swig.m4,
3811           salome_adm/unix/config_files/check_tbb.m4,
3812           salome_adm/unix/config_files/check_vtk.m4,
3813           salome_adm/unix/config_files/check_withihm.m4,
3814           salome_adm/unix/config_files/hack_libtool.m4,
3815           salome_adm/unix/config_files/local_install.m4,
3816           salome_adm/unix/config_files/production.m4,
3817           salome_adm/unix/config_files/pyembed.m4,
3818           salome_adm/unix/config_files/python.m4,
3819           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
3820           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
3821           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
3822           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
3823           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
3824           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
3825           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
3826           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
3827           src/Basics/BasicsGenericDestructor.hxx,
3828           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
3829           src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
3830           src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
3831           src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
3832           src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
3833           src/Communication/MatrixClient.cxx,
3834           src/Communication/MatrixClient.hxx,
3835           src/Communication/MultiCommException.cxx,
3836           src/Communication/MultiCommException.hxx,
3837           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
3838           src/Communication/ReceiverFactory.cxx,
3839           src/Communication/ReceiverFactory.hxx,
3840           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
3841           src/Communication/SALOMEMultiComm.cxx,
3842           src/Communication/SALOMEMultiComm.hxx,
3843           src/Communication/SALOME_Comm_i.cxx,
3844           src/Communication/SALOME_Comm_i.hxx,
3845           src/Communication/SALOME_Communication.hxx,
3846           src/Communication/SALOME_Matrix_i.cxx,
3847           src/Communication/SALOME_Matrix_i.hxx,
3848           src/Communication/SenderFactory.cxx,
3849           src/Communication/SenderFactory.hxx,
3850           src/Communication_SWIG/Makefile.am,
3851           src/Communication_SWIG/libSALOME_Comm.i,
3852           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
3853           src/Container/Container_init_python.cxx,
3854           src/Container/Container_init_python.hxx,
3855           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
3856           src/Container/SALOME_Component_i.hxx,
3857           src/Container/SALOME_Container.cxx,
3858           src/Container/SALOME_Container.hxx,
3859           src/Container/SALOME_Container.py,
3860           src/Container/SALOME_ContainerManager.cxx,
3861           src/Container/SALOME_ContainerManager.hxx,
3862           src/Container/SALOME_ContainerPy.py,
3863           src/Container/SALOME_Container_SignalsHandler.cxx,
3864           src/Container/SALOME_Container_i.hxx,
3865           src/Container/SALOME_FileRef_i.cxx,
3866           src/Container/SALOME_FileRef_i.hxx,
3867           src/Container/SALOME_FileTransfer_i.cxx,
3868           src/Container/SALOME_FileTransfer_i.hxx,
3869           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
3870           src/Container/Salome_file_i.hxx,
3871           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
3872           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
3873           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
3874           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
3875           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
3876           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
3877           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
3878           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
3879           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
3880           src/DSC/DSC_Basic/DSC_Basic.hxx,
3881           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
3882           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
3883           src/DSC/DSC_Basic/DSC_interface.hxx,
3884           src/DSC/DSC_Basic/Makefile.am,
3885           src/DSC/DSC_Basic/PortProperties_i.cxx,
3886           src/DSC/DSC_Basic/PortProperties_i.hxx,
3887           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
3888           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
3889           src/DSC/DSC_Python/dsccalcium.py,
3890           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
3891           src/DSC/DSC_User/Superv_Component_i.cxx,
3892           src/DSC/DSC_User/Superv_Component_i.hxx,
3893           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
3894           src/DSC/DSC_User/port_factory.hxx,
3895           src/DSC/DSC_User/provides_port.cxx,
3896           src/DSC/DSC_User/provides_port.hxx,
3897           src/DSC/DSC_User/test_DSC_Exception.cxx,
3898           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
3899           src/DSC/DSC_User/Basic/Makefile.am,
3900           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
3901           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
3902           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
3903           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
3904           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
3905           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
3906           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
3907           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
3908           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
3909           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
3910           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
3911           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
3912           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
3913           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
3914           src/DSC/DSC_User/Datastream/GenericPort.hxx,
3915           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
3916           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
3917           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
3918           src/DSC/DSC_User/Datastream/Makefile.am,
3919           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
3920           src/DSC/DSC_User/Datastream/fake.cc,
3921           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
3922           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
3923           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
3924           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
3925           src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
3926           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
3927           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
3928           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
3929           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
3930           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
3931           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
3932           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
3933           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
3934           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
3935           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
3936           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
3937           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
3938           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
3939           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
3940           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
3941           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
3942           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
3943           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
3944           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
3945           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
3946           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
3947           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
3948           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
3949           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
3950           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
3951           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
3952           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
3953           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
3954           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
3955           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
3956           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
3957           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
3958           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
3959           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
3960           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
3961           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
3962           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
3963           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
3964           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
3965           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
3966           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
3967           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
3968           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
3969           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
3970           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
3971           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
3972           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
3973           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
3974           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
3975           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
3976           src/DSC/DSC_User/Datastream/Calcium/version.h,
3977           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
3978           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
3979           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
3980           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
3981           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
3982           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
3983           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
3984           src/DSC/ParallelDSC/Makefile.am,
3985           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
3986           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
3987           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
3988           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
3989           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
3990           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
3991           src/GenericObj/Makefile.am,
3992           src/GenericObj/SALOME_GenericObj_i.cc,
3993           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
3994           src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
3995           src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
3996           src/HDFPersist/HDFarrayGetDim.c,
3997           src/HDFPersist/HDFarrayGetType.c,
3998           src/HDFPersist/HDFarrayGetTypeId.c,
3999           src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
4000           src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
4001           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
4002           src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
4003           src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
4004           src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
4005           src/HDFPersist/HDFcontainerObject.cc,
4006           src/HDFPersist/HDFcontainerObject.hxx,
4007           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
4008           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
4009           src/HDFPersist/HDFdatasetClose.c,
4010           src/HDFPersist/HDFdatasetCreate.c,
4011           src/HDFPersist/HDFdatasetGetDim.c,
4012           src/HDFPersist/HDFdatasetGetOrder.c,
4013           src/HDFPersist/HDFdatasetGetSize.c,
4014           src/HDFPersist/HDFdatasetGetType.c,
4015           src/HDFPersist/HDFdatasetGetnDim.c,
4016           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
4017           src/HDFPersist/HDFdatasetWrite.c,
4018           src/HDFPersist/HDFerrorModeLock.c,
4019           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
4020           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
4021           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
4022           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
4023           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
4024           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
4025           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
4026           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
4027           src/HDFPersist/HDFinternalObject.cc,
4028           src/HDFPersist/HDFinternalObject.hxx,
4029           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
4030           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
4031           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
4032           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
4033           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
4034           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
4035           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
4036           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
4037           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
4038           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
4039           src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
4040           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
4041           src/KERNEL_PY/kernel_shared_modules.py,
4042           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
4043           src/KERNEL_PY/salome_ComponentGUI.py,
4044           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
4045           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
4046           src/KERNEL_PY/salome_pynode.py,
4047           src/KERNEL_PY/salome_shared_modules.py,
4048           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
4049           src/KERNEL_PY/salome_version.py,
4050           src/KERNEL_PY/kernel/Makefile.am,
4051           src/KERNEL_PY/kernel/__init__.py,
4052           src/KERNEL_PY/kernel/datamodeler.py,
4053           src/KERNEL_PY/kernel/deprecation.py,
4054           src/KERNEL_PY/kernel/diclookup.py,
4055           src/KERNEL_PY/kernel/enumerate.py,
4056           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
4057           src/KERNEL_PY/kernel/logconfig.py.in,
4058           src/KERNEL_PY/kernel/logger.py,
4059           src/KERNEL_PY/kernel/pyunittester.py,
4060           src/KERNEL_PY/kernel/services.py,
4061           src/KERNEL_PY/kernel/studyedit.py,
4062           src/KERNEL_PY/kernel/syshelper.py,
4063           src/KERNEL_PY/kernel/termcolor.py,
4064           src/KERNEL_PY/kernel/testdata.py,
4065           src/KERNEL_PY/kernel/threadhelper.py,
4066           src/KERNEL_PY/kernel/uiexception.py,
4067           src/KERNEL_PY/kernel/unittester.py,
4068           src/KERNEL_PY/kernel/parametric/Makefile.am,
4069           src/KERNEL_PY/kernel/parametric/__init__.py,
4070           src/KERNEL_PY/kernel/parametric/compo_utils.py,
4071           src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
4072           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
4073           src/KernelHelpers/KernelHelpers.hxx,
4074           src/KernelHelpers/KernelHelpersUseCases.cxx,
4075           src/KernelHelpers/Makefile.am,
4076           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
4077           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
4078           src/KernelHelpers/SALOME_KernelServices.cxx,
4079           src/KernelHelpers/SALOME_KernelServices.hxx,
4080           src/KernelHelpers/SALOME_StudyEditor.cxx,
4081           src/KernelHelpers/SALOME_StudyEditor.hxx,
4082           src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
4083           src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
4084           src/KernelHelpers/Test/Makefile.am,
4085           src/KernelHelpers/Test/TestKernelHelpers.cxx,
4086           src/KernelHelpers/Test/TestKernelHelpers.py,
4087           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
4088           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
4089           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
4090           src/Launcher/Launcher_Job_Command.cxx,
4091           src/Launcher/Launcher_Job_Command.hxx,
4092           src/Launcher/Launcher_Job_PythonSALOME.cxx,
4093           src/Launcher/Launcher_Job_PythonSALOME.hxx,
4094           src/Launcher/Launcher_Job_SALOME.cxx,
4095           src/Launcher/Launcher_Job_SALOME.hxx,
4096           src/Launcher/Launcher_Job_YACSFile.cxx,
4097           src/Launcher/Launcher_Job_YACSFile.hxx,
4098           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
4099           src/Launcher/SALOME_Launcher.cxx,
4100           src/Launcher/SALOME_Launcher.hxx,
4101           src/Launcher/SALOME_LauncherServer.cxx,
4102           src/Launcher/SALOME_Launcher_Handler.cxx,
4103           src/Launcher/SALOME_Launcher_Handler.hxx,
4104           src/Launcher/SALOME_Launcher_Parser.cxx,
4105           src/Launcher/SALOME_Launcher_Parser.hxx,
4106           src/Launcher/SALOME_Launcher_defs.hxx,
4107           src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
4108           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
4109           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
4110           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
4111           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
4112           src/LifeCycleCORBA/TestContainerManager.cxx,
4113           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
4114           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
4115           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
4116           src/LifeCycleCORBA/Test/Makefile.am,
4117           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
4118           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
4119           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
4120           src/LifeCycleCORBA_SWIG/Makefile.am,
4121           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
4122           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
4123           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
4124           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
4125           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
4126           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
4127           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
4128           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
4129           src/Logger/SALOME_Logger_Server.hxx,
4130           src/Logger/SALOME_Logger_Server_main.cxx,
4131           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
4132           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
4133           src/Logger/Test/TestKiller.py,
4134           src/MPIContainer/MPIContainer_i.cxx,
4135           src/MPIContainer/MPIContainer_i.hxx,
4136           src/MPIContainer/MPIObject_i.cxx,
4137           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
4138           src/MPIContainer/SALOME_MPIContainer.cxx,
4139           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
4140           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
4141           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
4142           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
4143           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
4144           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
4145           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
4146           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
4147           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
4148           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
4149           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
4150           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
4151           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
4152           src/ModuleCatalog/TestModuleCatalog.py,
4153           src/ModuleGenerator/IDLparser.py,
4154           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
4155           src/ModuleGenerator/testIDLparser.in,
4156           src/ModuleGenerator/tests/AddComponent.idl,
4157           src/ModuleGenerator/tests/SubComponent.idl,
4158           src/ModuleGenerator/tests/Truc2Component.idl,
4159           src/ModuleGenerator/tests/TrucComponent.idl,
4160           src/ModuleGenerator/tests/test1.sh,
4161           src/ModuleGenerator/tests/test1b.sh,
4162           src/ModuleGenerator/tests/test2.sh,
4163           src/ModuleGenerator/tests/test3.sh,
4164           src/ModuleGenerator/tests/test4.sh,
4165           src/ModuleGenerator/tests/test5.sh,
4166           src/NOTIFICATION_SWIG/Makefile.am,
4167           src/NOTIFICATION_SWIG/NOTIFICATION.i,
4168           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
4169           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
4170           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
4171           src/NamingService/Makefile.am,
4172           src/NamingService/NamingService_WaitForServerReadiness.cxx,
4173           src/NamingService/NamingService_WaitForServerReadiness.hxx,
4174           src/NamingService/SALOME_NamingService.cxx,
4175           src/NamingService/SALOME_NamingService.hxx,
4176           src/NamingService/SALOME_NamingService.i,
4177           src/NamingService/SALOME_NamingServicePy.py,
4178           src/NamingService/SALOME_NamingService_defs.hxx,
4179           src/NamingService/ServiceUnreachable.cxx,
4180           src/NamingService/ServiceUnreachable.hxx,
4181           src/NamingService/Test/Makefile.am,
4182           src/NamingService/Test/NamingServiceTest.cxx,
4183           src/NamingService/Test/NamingServiceTest.hxx,
4184           src/NamingService/Test/TestNamingService.cxx,
4185           src/NamingService/Test/TestNamingService.py,
4186           src/Notification/CosNotifyShorthands.h,
4187           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
4188           src/Notification/NOTIFICATION.hxx,
4189           src/Notification/NOTIFICATION_Consumer.cxx,
4190           src/Notification/NOTIFICATION_Consumer.hxx,
4191           src/Notification/NOTIFICATION_Supplier.cxx,
4192           src/Notification/NOTIFICATION_Supplier.hxx,
4193           src/Notification/SALOME_NOTIFICATION.hxx,
4194           src/ParallelContainer/Makefile.am,
4195           src/ParallelContainer/Parallel_Salome_file_i.cxx,
4196           src/ParallelContainer/Parallel_Salome_file_i.hxx,
4197           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
4198           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
4199           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
4200           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
4201           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
4202           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
4203           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
4204           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
4205           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
4206           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
4207           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
4208           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
4209           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
4210           src/Registry/RegistryConnexion.hxx,
4211           src/Registry/RegistryService.cxx,
4212           src/Registry/RegistryService.hxx,
4213           src/Registry/SALOME_Registry.hxx,
4214           src/Registry/SALOME_Registry_Server.cxx,
4215           src/ResourcesManager/Makefile.am,
4216           src/ResourcesManager/ResourcesManager.cxx,
4217           src/ResourcesManager/ResourcesManager.hxx,
4218           src/ResourcesManager/ResourcesManager_Defs.hxx,
4219           src/ResourcesManager/SALOME_LoadRateManager.cxx,
4220           src/ResourcesManager/SALOME_LoadRateManager.hxx,
4221           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
4222           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
4223           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
4224           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
4225           src/ResourcesManager/SALOME_ResourcesManager.cxx,
4226           src/ResourcesManager/SALOME_ResourcesManager.hxx,
4227           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
4228           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
4229           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
4230           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
4231           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
4232           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
4233           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
4234           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
4235           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
4236           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
4237           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
4238           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
4239           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
4240           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
4241           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
4242           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
4243           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
4244           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
4245           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
4246           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
4247           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
4248           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
4249           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
4250           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
4251           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
4252           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
4253           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
4254           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
4255           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
4256           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
4257           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
4258           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
4259           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
4260           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
4261           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
4262           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
4263           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
4264           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
4265           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
4266           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
4267           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
4268           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
4269           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
4270           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
4271           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
4272           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
4273           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
4274           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
4275           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
4276           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
4277           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
4278           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
4279           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
4280           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
4281           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
4282           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
4283           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
4284           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
4285           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
4286           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
4287           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
4288           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
4289           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
4290           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
4291           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
4292           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
4293           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
4294           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
4295           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
4296           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
4297           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
4298           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
4299           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
4300           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
4301           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
4302           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
4303           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
4304           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
4305           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
4306           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
4307           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
4308           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
4309           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
4310           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
4311           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
4312           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
4313           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
4314           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
4315           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
4316           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
4317           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
4318           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
4319           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
4320           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
4321           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
4322           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
4323           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
4324           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
4325           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
4326           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
4327           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
4328           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
4329           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
4330           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
4331           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
4332           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
4333           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
4334           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
4335           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
4336           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
4337           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
4338           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
4339           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
4340           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
4341           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
4342           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
4343           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
4344           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
4345           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
4346           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
4347           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
4348           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
4349           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
4350           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
4351           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
4352           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
4353           src/SALOMEDS/SALOMEDS_Attributes.hxx,
4354           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
4355           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
4356           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
4357           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
4358           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
4359           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
4360           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
4361           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
4362           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
4363           src/SALOMEDS/SALOMEDS_Client.cxx,
4364           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
4365           src/SALOMEDS/SALOMEDS_Defines.hxx,
4366           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
4367           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
4368           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
4369           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
4370           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
4371           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
4372           src/SALOMEDS/SALOMEDS_IParameters.cxx,
4373           src/SALOMEDS/SALOMEDS_IParameters.hxx,
4374           src/SALOMEDS/SALOMEDS_SComponent.cxx,
4375           src/SALOMEDS/SALOMEDS_SComponent.hxx,
4376           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
4377           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
4378           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
4379           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
4380           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
4381           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
4382           src/SALOMEDS/SALOMEDS_SObject.cxx,
4383           src/SALOMEDS/SALOMEDS_SObject.hxx,
4384           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
4385           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
4386           src/SALOMEDS/SALOMEDS_Server.cxx,
4387           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
4388           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
4389           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
4390           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
4391           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
4392           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
4393           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
4394           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
4395           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
4396           src/SALOMEDS/SALOMEDS_Study_i.cxx,
4397           src/SALOMEDS/SALOMEDS_Study_i.hxx,
4398           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
4399           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
4400           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
4401           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
4402           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
4403           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
4404           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
4405           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
4406           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
4407           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
4408           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
4409           src/SALOMEDS/Test/SALOMEDSTest.cxx,
4410           src/SALOMEDS/Test/SALOMEDSTest.hxx,
4411           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
4412           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
4413           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
4414           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
4415           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
4416           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
4417           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
4418           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
4419           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
4420           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
4421           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
4422           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
4423           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
4424           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
4425           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
4426           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
4427           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
4428           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
4429           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
4430           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
4431           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
4432           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
4433           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
4434           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
4435           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
4436           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
4437           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
4438           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
4439           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
4440           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
4441           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
4442           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
4443           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
4444           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
4445           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
4446           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
4447           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
4448           src/SALOMEDS/Test/TestSALOMEDS.cxx,
4449           src/SALOMEDS/Test/TestSALOMEDS.py,
4450           src/SALOMEDSClient/Makefile.am,
4451           src/SALOMEDSClient/SALOMEDSClient.hxx,
4452           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
4453           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
4454           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
4455           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
4456           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
4457           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
4458           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
4459           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
4460           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
4461           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
4462           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
4463           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
4464           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
4465           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
4466           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
4467           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
4468           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
4469           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
4470           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
4471           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
4472           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
4473           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
4474           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
4475           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
4476           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
4477           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
4478           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
4479           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
4480           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
4481           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
4482           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
4483           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
4484           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
4485           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
4486           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
4487           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
4488           src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
4489           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
4490           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
4491           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
4492           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
4493           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
4494           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
4495           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
4496           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
4497           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
4498           src/SALOMEDSImpl/Makefile.am,
4499           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
4500           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
4501           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
4502           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
4503           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
4504           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
4505           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
4506           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
4507           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
4508           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
4509           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
4510           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
4511           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
4512           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
4513           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
4514           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
4515           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
4516           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
4517           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
4518           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
4519           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
4520           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
4521           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
4522           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
4523           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
4524           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
4525           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
4526           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
4527           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
4528           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
4529           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
4530           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
4531           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
4532           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
4533           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
4534           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
4535           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
4536           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
4537           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
4538           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
4539           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
4540           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
4541           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
4542           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
4543           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
4544           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
4545           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
4546           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
4547           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
4548           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
4549           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
4550           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
4551           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
4552           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
4553           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
4554           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
4555           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
4556           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
4557           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
4558           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
4559           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
4560           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
4561           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
4562           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
4563           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
4564           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
4565           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
4566           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
4567           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
4568           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
4569           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
4570           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
4571           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
4572           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
4573           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
4574           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
4575           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
4576           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
4577           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
4578           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
4579           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
4580           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
4581           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
4582           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
4583           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
4584           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
4585           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
4586           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
4587           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
4588           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
4589           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
4590           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
4591           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
4592           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
4593           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
4594           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
4595           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
4596           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
4597           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
4598           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
4599           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
4600           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
4601           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
4602           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
4603           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
4604           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
4605           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
4606           src/SALOMELocalTrace/BaseTraceCollector.cxx,
4607           src/SALOMELocalTrace/BaseTraceCollector.hxx,
4608           src/SALOMELocalTrace/FileTraceCollector.cxx,
4609           src/SALOMELocalTrace/FileTraceCollector.hxx,
4610           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
4611           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
4612           src/SALOMELocalTrace/LocalTraceCollector.cxx,
4613           src/SALOMELocalTrace/LocalTraceCollector.hxx,
4614           src/SALOMELocalTrace/Makefile.am,
4615           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
4616           src/SALOMELocalTrace/utilities.h,
4617           src/SALOMELocalTrace/Test/Makefile.am,
4618           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
4619           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
4620           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
4621           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
4622           src/SALOMETraceCollector/Makefile.am,
4623           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
4624           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
4625           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
4626           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
4627           src/SALOMETraceCollector/Test/Makefile.am,
4628           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
4629           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
4630           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
4631           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
4632           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
4633           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
4634           src/TestContainer/SALOME_TestComponent.hxx,
4635           src/TestContainer/SALOME_TestComponentPy.py,
4636           src/TestContainer/SALOME_TestComponent_i.cxx,
4637           src/TestContainer/SALOME_TestComponent_i.hxx,
4638           src/TestContainer/TestComponentPy.py,
4639           src/TestContainer/TestContainer.cxx,
4640           src/TestContainer/TestLogger.cxx,
4641           src/TestContainer/TestLogger.py,
4642           src/TestMPIContainer/Makefile.am,
4643           src/TestMPIContainer/TestMPIComponentEngine.cxx,
4644           src/TestMPIContainer/TestMPIComponentEngine.hxx,
4645           src/TestMPIContainer/TestMPIContainer.cxx,
4646           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
4647           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
4648           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
4649           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
4650           src/Utils/Utils_CommException.cxx,
4651           src/Utils/Utils_CommException.hxx,
4652           src/Utils/Utils_CorbaException.hxx,
4653           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
4654           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
4655           src/Utils/Utils_ExceptHandlers.cxx,
4656           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
4657           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
4658           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
4659           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
4660           src/Utils/Utils_SALOME_Exception.cxx,
4661           src/Utils/Utils_SALOME_Exception.hxx,
4662           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
4663           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
4664           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
4665           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
4666           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
4667           src/win32pm/win32pm.c:
4668
4669         Update copyright information
4670
4671 2012-04-12 13:00  vsr
4672
4673         * configure.ac:
4674
4675         Increment version
4676
4677 2012-04-12 09:06  rnv
4678
4679         * doc/salome/: gui/static/doxygen.css, gui/static/header.html.in,
4680           tui/static/doxygen.css, tui/static/header.html.in:
4681
4682         Porting documentation on the Doxygen-1.8.0
4683
4684 2012-04-03 14:45  ageay
4685
4686         * salome_adm/cmake_files/UseOMNIORB.cmake:
4687
4688         MED CMakization
4689
4690 2012-04-03 12:39  ageay
4691
4692         * salome_adm/cmake_files/UseOMNIORB.cmake:
4693
4694         MED CMakization
4695
4696 2012-04-02 15:40  ageay
4697
4698         * salome_adm/cmake_files/InstallAndCompilePythonFile.cmake:
4699
4700         MED CMakization
4701
4702 2012-04-02 14:40  ageay
4703
4704         * salome_adm/cmake_files/: InstallAndCompilePythonFile.cmake,
4705           Makefile.am:
4706
4707         Usefull Macro for *.pyc and *.pyo on install.
4708
4709 2012-03-30 11:59  ageay
4710
4711         * salome_adm/cmake_files/FindLIBXML2.cmake:
4712
4713         MED CMakization.
4714
4715 2012-03-30 10:36  ageay
4716
4717         * salome_adm/cmake_files/FindPYTHON.cmake:
4718
4719         MED CMakization.
4720
4721 2012-03-29 17:39  vsr
4722
4723         * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
4724
4725         Improve dev docs
4726
4727 2012-03-28 18:05  barate
4728
4729         * src/: Launcher/Launcher.cxx,
4730           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
4731           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
4732           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
4733           ResourcesManager/SALOME_ResourcesManager.cxx:
4734
4735         Merge from BR_VISHNU
4736
4737 2012-03-28 16:34  rnv
4738
4739         * salome_adm/cmake_files/am2cmake.py:
4740
4741         Build PLUGIN'S documentation.
4742
4743 2012-03-27 16:40  daix
4744
4745         * src/Launcher/Launcher_Job.cxx:
4746
4747         Special parameters for VISHNU removed
4748
4749 2012-03-23 16:48  ageay
4750
4751         * salome_adm/cmake_files/Makefile.am:
4752
4753         MED CMakization
4754
4755 2012-03-22 12:53  rnv
4756
4757         * src/Container/SALOME_ContainerManager.cxx:
4758
4759         Win32 compilation.
4760
4761 2012-03-22 11:31  ribes
4762
4763         * src/Container/Container_i.cxx:
4764
4765         Add new env var TIMEOUT_TO_WAIT_EXE_COMPONENT
4766
4767         Defines how many seconds a container waits an exe component to be loaded
4768
4769 2012-03-22 10:45  ageay
4770
4771         * salome_adm/cmake_files/FindBOOST.cmake:
4772
4773         Cmakization of MED.
4774
4775 2012-03-22 09:50  ageay
4776
4777         * salome_adm/cmake_files/FindMPI.cmake:
4778
4779         Cmakization of MED.
4780
4781 2012-03-21 18:01  ribes
4782
4783         * src/Container/SALOME_ContainerManager.cxx:
4784
4785         Adding new env variable for SALOME: TIMEOUT_TO_LAUNCH_CONTAINER
4786
4787         If set to an int, defines how many seconds the SALOME container manager
4788         will wait for a container
4789
4790 2012-03-21 17:43  ribes
4791
4792         * src/: Container/SALOME_ContainerManager.cxx,
4793           Container/SALOME_ContainerManager.hxx,
4794           ResourcesManager/SALOME_LoadRateManager.cxx,
4795           ResourcesManager/SALOME_ResourcesManager.hxx:
4796
4797         Basic FaultTolerance for ContainerManager
4798
4799         If a machine is not available (shutdown for instance), try to launch
4800         the container on another resource according to the getFittingResources list.
4801
4802 2012-03-21 15:27  ageay
4803
4804         * salome_adm/cmake_files/FindMPI.cmake:
4805
4806         Cmakization of MED.
4807
4808 2012-03-21 14:07  ageay
4809
4810         * salome_adm/cmake_files/UseOMNIORB.cmake:
4811
4812         Cmakization of MED.
4813
4814 2012-03-21 13:53  ageay
4815
4816         * salome_adm/cmake_files/: FindKERNEL.cmake, FindOMNIORB.cmake:
4817
4818         Cmakization of MED.
4819
4820 2012-03-21 09:53  vsr
4821
4822         * salome_adm/cmake_files/am2cmake.py:
4823
4824         Fix check of the AM2CMAKE_FORCE_GENERATION environment variable
4825
4826 2012-03-21 09:33  eap
4827
4828         * salome_adm/unix/config_files/: Makefile.am, check_tbb.m4:
4829
4830         0021336: EDF 1717 SMESH: New algorithm "body fitting" cartesian unstructured
4831
4832         +check_tbb.m4
4833
4834 2012-03-21 09:25  rnv
4835
4836         * salome_adm/cmake_files/am2cmake.py:
4837
4838         Forced generation of the CMakeLists.txt from Makefile.am
4839
4840 2012-03-20 17:03  ageay
4841
4842         * salome_adm/cmake_files/am2cmake.py:
4843
4844         Cmakization of MED.
4845
4846 2012-03-20 13:00  ana
4847
4848         * salome_adm/cmake_files/am2cmake.py:
4849
4850         Bug IPAL22865 "Re-structurization of Partition-related packges in SALOME GEOM module"
4851         Win32 compilation
4852
4853 2012-03-19 17:54  ribes
4854
4855         * idl/SALOME_ContainerManager.idl,
4856           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
4857           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
4858           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
4859           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
4860           src/ResourcesManager/SALOME_ResourcesManager.cxx:
4861
4862         Working on PAL# 2078
4863
4864         Adding two new attributes to a SALOME resource:
4865
4866         is_cluster_head ->  set to "true" if the resource refers to a cluster head (false by default)
4867         working_directory -> defines a default working directory in a cluster
4868
4869 2012-03-19 16:01  ageay
4870
4871         * salome_adm/cmake_files/: FindCPPUNIT.cmake, FindHDF5.cmake:
4872
4873         cmakization of MED.
4874
4875 2012-03-19 11:40  ribes
4876
4877         * src/ResourcesManager/ResourcesManager.cxx:
4878
4879         Resolve PAL# 2058
4880
4881         Create a default catalog resources file if USER_CATALOG_RESOURCES_FILE
4882         env variable is set on an unexisting file.
4883
4884         If we cannot create the file, we use the default catalog resource file
4885
4886 2012-03-19 08:26  vsr
4887
4888         * src/KERNEL_PY/salome_version.py, bin/VERSION.in,
4889           KERNEL_version.h.in, configure.ac:
4890
4891         Add functions to know that SALOME module version is development one
4892
4893 2012-03-16 17:04  ageay
4894
4895         * salome_adm/cmake_files/am2cmake.py:
4896
4897         am2cmake.py does not overwrite not automatically generated CMakeLists.txt.
4898
4899 2012-03-15 12:39  ageay
4900
4901         * salome_adm/cmake_files/am2cmake.py:
4902
4903         Correction of bug on bin_program.
4904
4905 2012-03-15 09:51  eap
4906
4907         * src/Container/Container_i.cxx:
4908
4909         0021208: EDF 1138 SMESH: Performance issue when loading SMESH with an hdf file containing a big mesh
4910
4911         -    std::string command = "rm -f ";
4912         +    std::string command = "rm -rf ";
4913
4914 2012-03-15 07:58  vsr
4915
4916         * bin/killSalomeWithPort.py:
4917
4918         Improve killSalomeWithPort script: before killing the servers with kill command, give them chance to shutdown in a proper way:
4919         - attempt 2: invoke shutdowning in a separate thread to prevent script blocking if shutdown procedure hangs up
4920
4921 2012-03-15 07:51  vsr
4922
4923         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
4924
4925         Shutdown Session server (move it to the end of shutdownServers() to avoid problems with shutdowning embedded servers)
4926
4927 2012-03-14 15:39  vsr
4928
4929         * bin/killSalomeWithPort.py:
4930
4931         Improve killSalomeWithPort script: before killing the servers with kill command, give them chance to shutdown in a proper way
4932
4933 2012-03-14 11:56  jfa
4934
4935         * salome_adm/unix/config_files/check_cas.m4:
4936
4937         Internal issue 0022865: Restructurization of Partition packages.
4938
4939 2012-03-13 15:14  vsr
4940
4941         * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
4942
4943         Register temporary files in the container; automatically remove temporary files on shutdown.
4944
4945 2012-03-13 13:22  vsr
4946
4947         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
4948
4949         Implement Shutdown() method for the SALOME Session server
4950
4951 2012-03-13 12:27  ageay
4952
4953         * salome_adm/cmake_files/am2cmake.py:
4954
4955         CMake now manages graph partionners scotch, metis and parmetis.
4956
4957 2012-03-13 10:21  vsr
4958
4959         * idl/SALOME_Session.idl:
4960
4961         Implement Shutdown() method for the SALOME Session server
4962
4963 2012-03-08 18:14  prascle
4964
4965         * bin/orbmodule.py:
4966
4967         PR: Bug PAL EDF 2090
4968         sometimes, on cluster systems heavily loaded, the timeout on connection to Naming Service in initNS() is too short and SALOME launch aborts. 1s --> 10s
4969
4970 2012-02-21 13:56  adam
4971
4972         * salome_adm/cmake_files/FindBOOST.cmake:
4973
4974         Print the missing boost library if necessary
4975
4976 2012-02-15 12:21  vsr
4977
4978         * src/: SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
4979           KERNEL_PY/iparameters.py:
4980
4981         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.
4982
4983 2012-02-13 13:49  boulant
4984
4985         * src/KERNEL_PY/kernel/studyedit.py:
4986
4987         IMP: studyedit, helper functions to convert study in studyId et conversely
4988
4989 2012-02-10 16:49  ageay
4990
4991         * salome_adm/cmake_files/FindMPI.cmake:
4992
4993         In openmpi need to link with libmpi_cxx and libmpi.so
4994
4995 2012-02-10 16:48  ageay
4996
4997         * salome_adm/cmake_files/FindBOOST.cmake:
4998
4999         On Fedora libboost_thread.so does not exit.
5000
5001 2012-02-09 16:06  eap
5002
5003         * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
5004
5005         0021375: EDF 1671 SMESH: Dump study of current state
5006
5007         +  virtual void  SetOption(const char*, const char*);
5008         +  virtual char* GetOption(const char*);
5009
5010 2012-02-09 16:06  eap
5011
5012         * idl/SALOME_Component.idl:
5013
5014         0021375: EDF 1671 SMESH: Dump study of current state
5015
5016         +    void SetOption(in string optionName, in string value);
5017         +    string GetOption(in string optionName);
5018
5019 2012-02-08 07:51  ana
5020
5021         * salome_adm/cmake_files/: Makefile.am, prepare_generating_doc.py:
5022
5023         doc compilation
5024
5025 2012-02-06 13:32  ana
5026
5027         * salome_adm/cmake_files/am2cmake.py:
5028
5029         Build documentation by CMAKE: small correction
5030
5031 2012-02-06 12:37  ana
5032
5033         * salome_adm/cmake_files/copytree1.py:
5034
5035         Build documentation by CMAKE
5036
5037 2012-02-06 12:32  ana
5038
5039         * salome_adm/cmake_files/: Makefile.am, am2cmake.py:
5040
5041         Build documentation by CMAKE
5042
5043 2012-02-06 11:20  barate
5044
5045         * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
5046           salome_adm/cmake_files/FindSPHINX.cmake,
5047           salome_adm/cmake_files/Makefile.am,
5048           salome_adm/cmake_files/am2cmake.py,
5049           salome_adm/cmake_files/prepare_generating_doc.py,
5050           src/Container/SALOME_ContainerManager.cxx,
5051           src/Container/SALOME_ContainerManager.hxx,
5052           src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/__init__.py,
5053           src/KERNEL_PY/kernel/services.py,
5054           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
5055           src/Launcher/Launcher_Job.cxx,
5056           src/Launcher/Launcher_Job_SALOME.cxx, src/Launcher/Makefile.am,
5057           src/ResourcesManager/Makefile.am,
5058           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
5059           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
5060           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
5061           src/ResourcesManager/SALOME_ResourcesManager.cxx,
5062           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
5063           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
5064
5065         Merge from V6_main
5066
5067 2012-02-06 08:29  barate
5068
5069         * salome_adm/cmake_files/prepare_generating_doc.py:
5070
5071         file prepare_generating_doc.py was added on branch BR_VISHNU on 2012-02-06 10:20:58 +0000
5072
5073 2012-02-06 08:29  ana
5074
5075         * salome_adm/cmake_files/: Makefile.am, prepare_generating_doc.py:
5076
5077         Implementation of the "0020839: EDF 1370 DOC : Update of the TUI features documentation / help(aMethod)" issue.
5078
5079 2012-02-01 13:19  barate
5080
5081         * salome_adm/cmake_files/FindSPHINX.cmake:
5082
5083         file FindSPHINX.cmake was added on branch BR_VISHNU on 2012-02-06 10:20:58 +0000
5084
5085 2012-02-01 13:19  rnv
5086
5087         * salome_adm/cmake_files/: FindSPHINX.cmake, Makefile.am,
5088           am2cmake.py:
5089
5090         1) Build documentation using sphinx.
5091         2) win32 compilation of the Geometry module.
5092
5093 2012-02-01 13:15  rnv
5094
5095         * src/KERNEL_PY/__init__.py:
5096
5097         Win32 compatibility.
5098
5099 2012-01-27 09:15  rnv
5100
5101         * salome_adm/cmake_files/am2cmake.py:
5102
5103         Build SALOME on win32 platform.
5104
5105 2012-01-26 11:55  vsr
5106
5107         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
5108
5109         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.
5110
5111 2012-01-26 10:28  vsr
5112
5113         * src/Container/SALOME_ContainerPy.py:
5114
5115         Improve Python container:
5116         - load_component_Library() function returns now reason of the failure if it can't load the component module
5117         - avoid raising an exception when triyng loading unexistent or inappropriate module (for instance, if module is not a Python, but C++ one).
5118
5119 2012-01-25 14:24  vsr
5120
5121         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
5122
5123         Fix bugs in     GetDirFromPath() and GetNameFromPath() functions: they give wrong result if file is in the root directory.
5124
5125 2012-01-16 11:06  barate
5126
5127         * src/Launcher/Launcher_Job.cxx:
5128
5129         Raise correct exception in Launcher when maximum_duration parameter does not contain ':'
5130
5131 2012-01-13 10:48  rnv
5132
5133         * salome_adm/cmake_files/am2cmake.py:
5134
5135         Build SALOME using cmake.
5136
5137 2012-01-11 12:37  ana
5138
5139         * salome_adm/cmake_files/am2cmake.py:
5140
5141         Porting GUI_SRC/tools/dlgfactory on win32 platform
5142
5143 2012-01-10 15:24  rnv
5144
5145         * salome_adm/cmake_files/am2cmake.py,
5146           src/ResourcesManager/Makefile.am:
5147
5148         Build SALOME on win32 platform.
5149
5150 2012-01-06 11:27  barate
5151
5152         * src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
5153
5154         Add functions to save / load exchange variables to / from XML files
5155
5156 2012-01-05 18:11  barate
5157
5158         * src/KERNEL_PY/kernel/services.py:
5159
5160         Fix sphinx doc generation in GEOM and SMESH
5161
5162 2012-01-05 16:10  barate
5163
5164         * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
5165           src/Container/SALOME_ContainerManager.cxx,
5166           src/Container/SALOME_ContainerManager.hxx,
5167           src/Launcher/Launcher_Job_SALOME.cxx, src/Launcher/Makefile.am,
5168           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
5169           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
5170           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
5171           src/ResourcesManager/SALOME_ResourcesManager.cxx:
5172
5173         Improvements for Salome on clusters (fix bug PAL #1966):
5174         - New option to launch Salome servers with a simple fork instead of daemons
5175         - Add internal protocols pbsdsh and blaunch for PBS and LSF clusters
5176
5177 2011-12-15 09:39  rnv
5178
5179         * salome_adm/cmake_files/am2cmake.py:
5180
5181         Build YACS documentation using sphinx-1.0.7 via cmake.
5182
5183 2011-12-08 12:43  mpv
5184
5185         * salome_adm/cmake_files/am2cmake.py:
5186
5187         TRIPOLI and MATERIALS specific rules of compilation
5188
5189 2011-12-05 11:05  vsr
5190
5191         * Makefile.am, configure.ac, bin/launchConfigureParser.py,
5192           bin/salome_utils.py, bin/virtual_salome.py,
5193           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
5194           bin/appliskel/SalomeApp.xml, bin/appliskel/killCurrentPort,
5195           bin/appliskel/runParam, doc/Makefile.am,
5196           doc/docutils/Makefile.am, doc/docutils/archives/UnitTests.txt,
5197           doc/salome/Makefile.am, doc/salome/unittests.dox,
5198           doc/salome/tui/Makefile.am, idl/Makefile.am,
5199           resources/Makefile.am, salome_adm/cmake_files/FindKERNEL.cmake,
5200           salome_adm/cmake_files/am2cmake.py,
5201           salome_adm/unix/config_files/check_hdf5.m4, src/Makefile.am,
5202           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
5203           src/Container/Container_i.cxx,
5204           src/Container/Container_init_python.hxx,
5205           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
5206           src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
5207           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
5208           src/KERNEL_PY/kernel/Makefile.am,
5209           src/KERNEL_PY/kernel/deprecation.py,
5210           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
5211           src/KERNEL_PY/kernel/services.py,
5212           src/KERNEL_PY/kernel/studyedit.py,
5213           src/KERNEL_PY/kernel/syshelper.py,
5214           src/KernelHelpers/KernelHelpers.hxx,
5215           src/KernelHelpers/KernelHelpersUseCases.cxx,
5216           src/KernelHelpers/Makefile.am,
5217           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
5218           src/KernelHelpers/SALOME_KernelServices.hxx,
5219           src/KernelHelpers/SALOME_StudyEditor.hxx,
5220           src/KernelHelpers/TestKernelHelpers.cxx,
5221           src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
5222           src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
5223           src/KernelHelpers/Test/Makefile.am,
5224           src/KernelHelpers/Test/TestKernelHelpers.cxx,
5225           src/KernelHelpers/Test/TestKernelHelpers.py,
5226           src/Launcher/Makefile.am, src/SALOMEDS/SALOMEDS_Driver_i.cxx,
5227           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
5228
5229         Merge from V6_4_BR 05/12/2011
5230
5231 2011-12-01 17:51  barate
5232
5233         * src/Launcher/Launcher_Job.cxx:
5234
5235         Fix bug in Vishnu parameter
5236
5237 2011-12-01 09:22  barate
5238
5239         * src/: Launcher/Launcher.cxx, Launcher/Launcher_Job.cxx,
5240           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
5241           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
5242           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
5243           ResourcesManager/SALOME_ResourcesManager.cxx:
5244
5245         Add Vishnu batch manager and Vishnu specific parameters
5246
5247 2011-11-24 15:15  vsr
5248
5249         * salome_adm/cmake_files/am2cmake.py:
5250
5251         Fix pb of undefined symbols in SMESH MEFISTO library when compiling with cmake - linking to libf2c libbrary is required.
5252
5253 2011-11-24 14:51  vsr
5254
5255         * salome_adm/cmake_files/am2cmake.py:
5256
5257         Increment version for cmake-based procedure
5258
5259 2011-11-24 11:26  barate
5260
5261         * bin/appliskel/: CatalogResources.xml, Makefile.am, README,
5262           SalomeApp.xml, killCurrentPort, runParam:
5263
5264         Remove unused files from appliskel and update README
5265
5266 2011-11-23 17:55  ribes
5267
5268         * doc/docutils/Makefile.am:
5269
5270         Fix doc generation when compiling with PaCO++
5271
5272 2011-11-23 11:56  vsr
5273
5274         * bin/: launchConfigureParser.py, salome_utils.py:
5275
5276         Fix a bug: user preferences file is incorrectly detected on Windows
5277
5278 2011-11-23 08:47  vsr
5279
5280         * salome_adm/cmake_files/am2cmake.py:
5281
5282         Fix problem with cmake-based build procedure - in "light" mode Python is not initialized by SUITApp
5283
5284 2011-11-22 12:25  vsr
5285
5286         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
5287
5288         Fix crash in DumpPython if cannot cast Driver to the Component
5289
5290 2011-11-22 11:00  rnv
5291
5292         * src/Container/: Container_i.cxx, Container_init_python.hxx:
5293
5294         Fix compilation warnings.
5295
5296 2011-11-18 09:36  rnv
5297
5298         * src/Basics/Basics_Utils.hxx:
5299
5300         rnv: prepare SALOME-6.4.0 version for the Win32 platform.
5301
5302 2011-11-16 13:40  rnv
5303
5304         * salome_adm/cmake_files/am2cmake.py,
5305           src/KernelHelpers/SALOME_KernelServices.hxx:
5306
5307         rnv: Prepare SALOME-6.4.0 version for windows platform.
5308
5309 2011-11-15 18:04  eap
5310
5311         * src/KERNEL_PY/kernel/services.py:
5312
5313         Fix errors in generating documentation by SPHINX
5314
5315         -    except RuntimeError, e:
5316         +    except Exception, e:
5317
5318 2011-11-15 08:31  rnv
5319
5320         * src/KernelHelpers/KernelHelpers.hxx:
5321
5322         rnv: Prepare SALOME-6.4.0 version for windows platform: small correction.
5323
5324 2011-11-15 08:07  rnv
5325
5326         * src/KernelHelpers/: KernelHelpers.hxx, KernelHelpersUseCases.cxx,
5327           Makefile.am, SALOMEDS_DriverDefaultImpl.hxx,
5328           SALOME_KernelServices.hxx, SALOME_StudyEditor.hxx:
5329
5330         rnv: Prepare SALOME-6.4.0 for Windows.
5331
5332 2011-11-15 08:07  vsr
5333
5334         * src/KernelHelpers/KernelHelpers.hxx:
5335
5336         file KernelHelpers.hxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
5337
5338 2011-11-15 08:03  rnv
5339
5340         * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
5341           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
5342
5343         rnv: Prepare SALOME-6.4.0 for Windows.
5344
5345 2011-11-10 11:27  vsr
5346
5347         * src/KERNEL_PY/kernel/syshelper.py:
5348
5349         file syshelper.py was added on branch V6_main on 2011-12-05 10:05:32 +0000
5350
5351 2011-11-10 11:27  boulant
5352
5353         * bin/virtual_salome.py, src/KERNEL_PY/kernel/Makefile.am,
5354           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
5355           src/KERNEL_PY/kernel/syshelper.py:
5356
5357         IMP: modufication of virtual_salome.py for the needs of plugins directories
5358         ADD: syshelper for the need of plugins management
5359
5360 2011-11-09 16:11  barate
5361
5362         * src/KERNEL_PY/kernel/deprecation.py:
5363
5364         Fix bug with Python 2.7 and update doc in module deprecation
5365
5366 2011-11-08 11:11  boulant
5367
5368         * salome_adm/unix/config_files/check_hdf5.m4,
5369           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in:
5370
5371         Modify check_hdf5 for SMESH/padder purpose
5372
5373 2011-11-06 10:04  vsr
5374
5375         * salome_adm/cmake_files/am2cmake.py:
5376
5377         Update am2cmake.py to take into account latest changes in GUI module (MOC_FILES_HXX)
5378
5379 2011-11-05 17:49  vsr
5380
5381         * src/KernelHelpers/: KernelHelpersUseCases.cxx,
5382           Test/KernelHelpersUnitTests.cxx:
5383
5384         Fix compilation warnings
5385
5386 2011-11-05 17:35  vsr
5387
5388         * src/Launcher/Makefile.am:
5389
5390         Add missing dependency (fails on some platforms)
5391
5392 2011-11-05 17:33  vsr
5393
5394         * resources/Makefile.am, src/KERNEL_PY/kernel/Makefile.am:
5395
5396         complete make dist step
5397
5398 2011-11-05 17:28  vsr
5399
5400         * Makefile.am, bin/appliskel/Makefile.am, doc/Makefile.am,
5401           doc/salome/Makefile.am, idl/Makefile.am:
5402
5403         complete make dist step
5404
5405 2011-11-05 16:02  vsr
5406
5407         * doc/: salome/unittests.dox, docutils/archives/UnitTests.txt:
5408
5409         Remove obsolete files and directories
5410
5411 2011-11-03 18:15  barate
5412
5413         * src/KERNEL_PY/kernel/studyedit.py:
5414
5415         Fix bug in studyedit
5416
5417 2011-11-03 11:20  barate
5418
5419         * salome_adm/cmake_files/: FindKERNEL.cmake, am2cmake.py:
5420
5421         Fix GUI compilation with CMake
5422
5423 2011-11-02 15:56  boulant
5424
5425         * src/KERNEL_PY/kernel/: services.py, studyedit.py:
5426
5427         FIX: add missing commit from the V6_main
5428
5429 2011-11-02 14:50  boulant
5430
5431         * configure.ac:
5432
5433         FIX: forget the KernelHeleprs/Test/Makefile
5434
5435 2011-11-02 13:21  boulant
5436
5437         * src/: Makefile.am, KernelHelpers/KernelHelpersUseCases.cxx,
5438           KernelHelpers/Makefile.am, KernelHelpers/TestKernelHelpers.cxx,
5439           KernelHelpers/Test/KernelHelpersUnitTests.cxx,
5440           KernelHelpers/Test/KernelHelpersUnitTests.hxx,
5441           KernelHelpers/Test/Makefile.am,
5442           KernelHelpers/Test/TestKernelHelpers.cxx,
5443           KernelHelpers/Test/TestKernelHelpers.py:
5444
5445         IMP: salomization of unit tests in KernelHelpers
5446
5447 2011-11-02 13:21  vsr
5448
5449         * src/KernelHelpers/Test/KernelHelpersUnitTests.cxx:
5450
5451         file KernelHelpersUnitTests.cxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
5452
5453 2011-11-02 13:21  vsr
5454
5455         * src/KernelHelpers/Test/KernelHelpersUnitTests.hxx:
5456
5457         file KernelHelpersUnitTests.hxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
5458
5459 2011-11-02 13:21  vsr
5460
5461         * src/KernelHelpers/KernelHelpersUseCases.cxx:
5462
5463         file KernelHelpersUseCases.cxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
5464
5465 2011-11-02 13:21  vsr
5466
5467         * src/KernelHelpers/Test/Makefile.am:
5468
5469         file Makefile.am was added on branch V6_main on 2011-12-05 10:05:33 +0000
5470
5471 2011-11-02 13:21  vsr
5472
5473         * src/KernelHelpers/Test/TestKernelHelpers.cxx:
5474
5475         file TestKernelHelpers.cxx was added on branch V6_main on 2011-12-05 10:05:33 +0000
5476
5477 2011-11-02 13:21  vsr
5478
5479         * src/KernelHelpers/Test/TestKernelHelpers.py:
5480
5481         file TestKernelHelpers.py was added on branch V6_main on 2011-12-05 10:05:33 +0000
5482
5483 2011-11-02 11:37  vsr
5484
5485         * salome_adm/cmake_files/am2cmake.py:
5486
5487         Fix logical error in generated cmake files
5488
5489 2011-11-02 11:19  vsr
5490
5491         * src/DSC/DSC_User/Datastream/Calcium/: Calcium.c, CalciumC.c,
5492           Makefile.am:
5493
5494         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)
5495
5496 2011-11-02 11:19  vsr
5497
5498         * src/DSC/DSC_User/Datastream/Calcium/CalciumC.c:
5499
5500         file CalciumC.c was added on branch V6_main on 2011-12-05 10:05:32 +0000
5501
5502 2011-11-02 11:01  vsr
5503
5504         * salome_adm/cmake_files/am2cmake.py:
5505
5506         Add missing brace symbol to avoid cmake failure
5507
5508 2011-10-31 12:15  vsr
5509
5510         * doc/salome/tui/Makefile.am:
5511
5512         Fix make distcheck problem
5513
5514 2011-10-31 09:43  inv
5515
5516         * configure.ac:
5517
5518         Changing version to 6.4.0
5519
5520 2011-10-28 18:55  boulant
5521
5522         * src/KERNEL_PY/kernel/services.py:
5523
5524         The function ObjectToSObject, ... are already defined in salome.py but with less arguments (the study is predefined as a global variable in salome.py).
5525
5526 2011-10-28 18:50  boulant
5527
5528         * src/KERNEL_PY/kernel/studyedit.py:
5529
5530         Update the getActiveStudy* functions in studyedit (usage of salome.getActiveStudy())
5531
5532 2011-10-28 14:08  jfa
5533
5534         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
5535           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
5536           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
5537           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
5538           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
5539           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
5540           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx:
5541
5542         Mantis issue 0020136: EDF 933 DEV : Drag&Drop in OB
5543
5544 2011-10-27 17:37  boulant
5545
5546         * src/KERNEL_PY/kernel/services.py:
5547
5548         IMP: add some function in services.py to manipulate objects, sobjects and entry (object id in a study)
5549
5550 2011-10-27 17:32  vsr
5551
5552         * salome_adm/cmake_files/: FindBOOST.cmake, FindHDF5.cmake,
5553           FindPLATFORM.cmake, am2cmake.py:
5554
5555         Merge from V6_3_BR branch (Windows porting) 27/10/2011
5556
5557 2011-10-27 13:52  barate
5558
5559         * salome_adm/cmake_files/am2cmake.py:
5560
5561         Fix GUI compilation with CMake
5562
5563 2011-10-27 12:03  ribes
5564
5565         * src/Launcher/Launcher_Job.cxx:
5566
5567         Bug Fix: Job file and env file are now not added to input list files
5568
5569 2011-10-27 11:35  ribes
5570
5571         * src/Launcher/: Launcher.cxx, Launcher.hxx, SALOME_Launcher.hxx:
5572
5573         Bug Fix: correct job number when loading jobs
5574
5575 2011-10-26 18:20  boulant
5576
5577         * src/KERNEL_PY/kernel/services.py:
5578
5579         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)
5580
5581 2011-10-26 18:15  boulant
5582
5583         * src/KERNEL_PY/kernel/: Makefile.am, kernelpy_autotest.sh.in,
5584           services.py, threadhelper.py:
5585
5586         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)
5587
5588 2011-10-26 17:25  barate
5589
5590         * salome_adm/cmake_files/am2cmake.py:
5591
5592         Fix Python UI generation when building with CMake
5593
5594 2011-10-25 12:09  vsr
5595
5596         * doc/docutils/Makefile.am:
5597
5598         Fix problem of build procedure: 'make install' fails if OMNIORB_CONFIG variable points to the running omniNames but other SALOME services are unreachable.
5599
5600 2011-10-24 15:40  barate
5601
5602         * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
5603           src/Container/SALOME_ContainerManager.cxx,
5604           src/Container/SALOME_ContainerManager.hxx,
5605           src/Launcher/Launcher_Job_SALOME.cxx:
5606
5607         Add possibility to launch Salome servers and local containers with a specific command like srun
5608
5609 2011-10-22 18:22  prascle
5610
5611         * src/SALOMEDSImpl/Makefile.am:
5612
5613         PR: compilation on KUbuntu 11.10
5614
5615 2011-10-21 18:04  boulant
5616
5617         * configure.ac, doc/docutils/kernel.rst,
5618           doc/salome/kernel_services_cpphelpers.dox,
5619           src/KERNEL_PY/kernel/Makefile.am,
5620           src/KERNEL_PY/kernel/__init__.py,
5621           src/KERNEL_PY/kernel/datamodeler.py,
5622           src/KERNEL_PY/kernel/diclookup.py,
5623           src/KERNEL_PY/kernel/enumerate.py,
5624           src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
5625           src/KERNEL_PY/kernel/pyunittester.py,
5626           src/KERNEL_PY/kernel/services.py,
5627           src/KERNEL_PY/kernel/testdata.py,
5628           src/KERNEL_PY/kernel/uiexception.py,
5629           src/KERNEL_PY/kernel/unittester.py:
5630
5631         Add python modules in KERNE_PY.
5632         Test with kernelpy_autotest.sh
5633         Doc in kernel.rst
5634
5635 2011-10-21 15:14  gdd
5636
5637         * src/KernelHelpers/Makefile.am:
5638
5639         Add missing linking flags
5640
5641 2011-10-20 18:03  boulant
5642
5643         * configure.ac, doc/salome/Makefile.am, doc/salome/main.dox,
5644           src/Makefile.am, src/Basics/Basics_Utils.hxx,
5645           src/KernelHelpers/Makefile.am,
5646           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
5647           src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
5648           src/KernelHelpers/SALOME_KernelServices.cxx,
5649           src/KernelHelpers/SALOME_KernelServices.hxx,
5650           src/KernelHelpers/SALOME_StudyEditor.cxx,
5651           src/KernelHelpers/SALOME_StudyEditor.hxx,
5652           src/KernelHelpers/TestKernelHelpers.cxx:
5653
5654         Add the KernelHelpers package that contains helper functions to deal with KERNEL services and the study objects.
5655         Tests and Documentation are initiated. To be completed.
5656
5657 2011-10-18 17:36  barate
5658
5659         * src/Launcher/Launcher_Job_SALOME.cxx:
5660
5661         Fix bugs with Salome launcher jobs
5662
5663 2011-10-17 17:57  barate
5664
5665         * src/Launcher/Launcher_Job_YACSFile.cxx:
5666
5667         Try to kill Salome application when a YACS Launcher job is killed
5668
5669 2011-10-15 15:45  vsr
5670
5671         * salome_adm/cmake_files/am2cmake.py:
5672
5673         Add -I${CMAKE_BINARY_DIR} to default CXX flags (all modules) - equivalent of -I$(top_builddir) for automake
5674
5675 2011-10-13 11:09  eap
5676
5677         * src/Launcher/Launcher.cxx:
5678
5679         Add stopJob() for #ifndef WITH_LIBBATCH
5680
5681 2011-10-11 18:01  ribes
5682
5683         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
5684           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
5685           src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx,
5686           src/Launcher/SALOME_Launcher.hxx:
5687
5688         Adding new Launcher method: stop_job
5689         Bug tracker PAL Id: #1960
5690
5691 2011-10-11 16:29  ageay
5692
5693         * src/GenericObj/SALOME_GenericObj_i.hh:
5694
5695         Suppression of warnings.
5696
5697 2011-10-10 15:06  barate
5698
5699         * src/Launcher/Launcher_Job_SALOME.cxx:
5700
5701         Fix bug with dash and env script
5702
5703 2011-10-07 11:53  ribes
5704
5705         * src/Launcher/: Launcher.cxx, Launcher.hxx, SALOME_Launcher.cxx:
5706
5707         Create a BatchManager instance for each job.
5708         The BatchManager is created when the job is launched and not when it's created.
5709         EDF bug tacker id: PAL #1895
5710
5711 2011-10-06 15:44  barate
5712
5713         * bin/runSalome.py, src/Launcher/Launcher_Job_SALOME.cxx:
5714
5715         ns_port_log file is now created in USERS directory of Salome application (fix bug PAL #1946)
5716
5717 2011-10-05 16:33  vsr
5718
5719         * salome_adm/unix/config_files/check_cas.m4:
5720
5721         CASCADE 6.5 compatibility
5722
5723 2011-10-05 16:12  barate
5724
5725         * salome_adm/cmake_files/am2cmake.py:
5726
5727         Compilation of JOBMANAGER with CMake
5728
5729 2011-10-03 15:51  vsr
5730
5731         * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
5732
5733         Fix SIGSEGV in data server, in local driver implementation, if some component does not inherit from SALOMEDS::Driver interface.
5734
5735 2011-10-03 14:19  barate
5736
5737         * salome_adm/cmake_files/am2cmake.py:
5738
5739         Fix generation of file SalomeApp.xml in YACS with CMake
5740
5741 2011-10-03 11:04  barate
5742
5743         * configure.ac, bin/Makefile.am, bin/appliskel/Makefile.am,
5744           salome_adm/cmake_files/am2cmake.py:
5745
5746         Fix Salome application generation when compiling with CMake
5747         Fix Python UI generation when compiling with CMake
5748
5749 2011-09-22 13:51  rnv
5750
5751         * bin/appliskel/SalomeApp.xml:
5752
5753         Implementation of the issue 21276: EDF 1857 SMESH: Order of algorithms in the combobox
5754
5755 2011-09-20 16:32  ana
5756
5757         * salome_adm/cmake_files/: FindBOOST.cmake, FindHDF5.cmake,
5758           FindPLATFORM.cmake, am2cmake.py:
5759
5760         Integrate patches for win32 version
5761
5762 2011-09-07 16:25  secher
5763
5764         * src/MPIContainer/Makefile.am:
5765
5766         just a little bug
5767
5768 2011-09-07 11:40  secher
5769
5770         * src/MPIContainer/: testMPI2.cxx:
5771
5772         add check on mpi implementation
5773
5774 2011-09-07 10:48  secher
5775
5776         * src/MPIContainer/launch_testMPI2.csh:
5777
5778         update of test
5779
5780 2011-09-06 15:48  secher
5781
5782         * src/MPIContainer/launch_testMPI2.csh:
5783
5784         add test MPI2 communication
5785
5786 2011-09-06 15:44  secher
5787
5788         * src/MPIContainer/: Makefile.am, launch_testMPI2.csh,
5789           testMPI2.cxx:
5790
5791         add test MPI2 communication
5792
5793 2011-09-06 09:29  prascle
5794
5795         * src/Container/SALOME_ContainerManager.cxx:
5796
5797         PR: wrong syntax for srun parameters
5798
5799 2011-09-02 17:53  barate
5800
5801         * src/: Launcher/Launcher_Job_Command.cxx,
5802           Launcher/Launcher_Job_SALOME.cxx, ResourcesManager/Makefile.am,
5803           ResourcesManager/ResourcesManager.hxx:
5804
5805         Changes due to recent improvements in libBatch.
5806         Add batch parameter "EXCLUSIVE" in Launcher: Salome jobs are launched in exclusive mode, command jobs in shared mode.
5807
5808 2011-08-12 17:15  vsr
5809
5810         * salome_adm/cmake_files/am2cmake.py:
5811
5812         Merge from V6_3_BR 12/08/2011
5813
5814 2011-08-12 15:01  jfa
5815
5816         * src/Basics/: Basics_OCCTVersion.hxx, Makefile.am:
5817
5818         Porting to OCCT6.5.1
5819
5820 2011-08-12 13:20  rnv
5821
5822         * salome_adm/cmake_files/am2cmake.py:
5823
5824         Win32 compilation.
5825
5826 2011-08-11 15:16  jfa
5827
5828         * salome_adm/unix/config_files/check_cas.m4:
5829
5830         Porting to OCCT6.5.1
5831
5832 2011-07-27 17:07  gdd
5833
5834         * src/KERNEL_PY/kernel/termcolor.py:
5835
5836         Fix doc example
5837
5838 2011-07-27 12:51  rnv
5839
5840         * salome_adm/cmake_files/am2cmake.py:
5841
5842         Generation of the user documentation under Windows platform in GEOM and SMESH modules.
5843
5844 2011-07-27 12:22  vsr
5845
5846         * configure.ac, doc/docutils/Makefile.am, doc/docutils/conf.py,
5847           doc/docutils/conf.py.in:
5848
5849         Fix-up docutils conf file (version)
5850
5851 2011-07-27 09:04  vsr
5852
5853         * salome_adm/unix/config_files/hack_libtool.m4:
5854
5855         Update copyright info (2010->2011)
5856
5857 2011-07-27 07:44  vsr
5858
5859         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
5860           build_cmake.bat, build_configure, clean_configure, configure.ac,
5861           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
5862           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
5863           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
5864           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
5865           bin/killSalome.py, bin/killSalomeWithPort.py,
5866           bin/launchConfigureParser.py, bin/launchSalome.py,
5867           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
5868           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
5869           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
5870           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
5871           bin/server.py, bin/setenv.py, bin/showNS.py,
5872           bin/shutdownSalome.py, bin/virtual_salome.py,
5873           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
5874           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
5875           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
5876           bin/appliskel/runAppli, bin/appliskel/runConsole,
5877           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
5878           bin/appliskel/runSalomeScript, bin/appliskel/runSession,
5879           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
5880           bin/appliskel/update_catalogs.py, doc/Makefile.am,
5881           doc/configuration_examples/example_prerequis.sh,
5882           doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
5883           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
5884           doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
5885           doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
5886           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
5887           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
5888           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
5889           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
5890           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
5891           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
5892           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
5893           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
5894           idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
5895           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
5896           idl/SALOME_ParamPorts.xml, idl/SALOME_Parametric.idl,
5897           idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
5898           idl/SALOME_PyNode.idl, idl/SALOME_Registry.idl,
5899           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
5900           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
5901           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
5902           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
5903           resources/Makefile.am, salome_adm/Makefile.am,
5904           salome_adm/cmake_files/FindBOOST.cmake,
5905           salome_adm/cmake_files/FindCPPUNIT.cmake,
5906           salome_adm/cmake_files/FindDOXYGEN.cmake,
5907           salome_adm/cmake_files/FindHDF5.cmake,
5908           salome_adm/cmake_files/FindKERNEL.cmake,
5909           salome_adm/cmake_files/FindLIBXML2.cmake,
5910           salome_adm/cmake_files/FindMPI.cmake,
5911           salome_adm/cmake_files/FindOMNIORB.cmake,
5912           salome_adm/cmake_files/FindPLATFORM.cmake,
5913           salome_adm/cmake_files/FindPTHREADS.cmake,
5914           salome_adm/cmake_files/FindPYTHON.cmake,
5915           salome_adm/cmake_files/FindSWIG.cmake,
5916           salome_adm/cmake_files/Makefile.am,
5917           salome_adm/cmake_files/am2cmake.py,
5918           salome_adm/cmake_files/install_and_compile_python_file.cmake,
5919           salome_adm/cmake_files/install_python_from_idl.cmake,
5920           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
5921           salome_adm/unix/make_common_starter.am,
5922           salome_adm/unix/DEPRECATED/Doxyfile,
5923           salome_adm/unix/DEPRECATED/F77config.h.in,
5924           salome_adm/unix/DEPRECATED/config.h.in,
5925           salome_adm/unix/DEPRECATED/depend.in,
5926           salome_adm/unix/DEPRECATED/envScript.in,
5927           salome_adm/unix/DEPRECATED/make_commence.in,
5928           salome_adm/unix/DEPRECATED/make_conclude.in,
5929           salome_adm/unix/DEPRECATED/make_module.in,
5930           salome_adm/unix/DEPRECATED/make_omniorb.in,
5931           salome_adm/unix/config_files/Makefile.am,
5932           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
5933           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
5934           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
5935           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
5936           salome_adm/unix/config_files/ac_cxx_option.m4,
5937           salome_adm/unix/config_files/ac_cxx_template_options.m4,
5938           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
5939           salome_adm/unix/config_files/ac_cxx_warnings.m4,
5940           salome_adm/unix/config_files/ac_linker_options.m4,
5941           salome_adm/unix/config_files/acx_pthread.m4,
5942           salome_adm/unix/config_files/check_Kernel.m4,
5943           salome_adm/unix/config_files/check_boost.m4,
5944           salome_adm/unix/config_files/check_calcium.m4,
5945           salome_adm/unix/config_files/check_cas.m4,
5946           salome_adm/unix/config_files/check_corba.m4,
5947           salome_adm/unix/config_files/check_cppunit.m4,
5948           salome_adm/unix/config_files/check_f77.m4,
5949           salome_adm/unix/config_files/check_hdf5.m4,
5950           salome_adm/unix/config_files/check_htmlgen.m4,
5951           salome_adm/unix/config_files/check_lam.m4,
5952           salome_adm/unix/config_files/check_libbatch.m4,
5953           salome_adm/unix/config_files/check_libxml.m4,
5954           salome_adm/unix/config_files/check_mpi.m4,
5955           salome_adm/unix/config_files/check_mpich.m4,
5956           salome_adm/unix/config_files/check_omniorb.m4,
5957           salome_adm/unix/config_files/check_openmpi.m4,
5958           salome_adm/unix/config_files/check_paco++.m4,
5959           salome_adm/unix/config_files/check_sockets.m4,
5960           salome_adm/unix/config_files/check_sphinx.m4,
5961           salome_adm/unix/config_files/check_swig.m4,
5962           salome_adm/unix/config_files/check_vtk.m4,
5963           salome_adm/unix/config_files/check_withihm.m4,
5964           salome_adm/unix/config_files/hack_libtool.m4,
5965           salome_adm/unix/config_files/local_install.m4,
5966           salome_adm/unix/config_files/production.m4,
5967           salome_adm/unix/config_files/pyembed.m4,
5968           salome_adm/unix/config_files/python.m4,
5969           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
5970           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
5971           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
5972           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
5973           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
5974           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
5975           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
5976           salome_adm/unix/config_files/DEPRECATED/install-sh,
5977           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
5978           src/Basics/BasicsGenericDestructor.hxx,
5979           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
5980           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
5981           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
5982           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
5983           src/Communication/Makefile.am,
5984           src/Communication/MatrixClient.cxx,
5985           src/Communication/MatrixClient.hxx,
5986           src/Communication/MultiCommException.cxx,
5987           src/Communication/MultiCommException.hxx,
5988           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
5989           src/Communication/ReceiverFactory.cxx,
5990           src/Communication/ReceiverFactory.hxx,
5991           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
5992           src/Communication/SALOMEMultiComm.cxx,
5993           src/Communication/SALOMEMultiComm.hxx,
5994           src/Communication/SALOME_Comm_i.cxx,
5995           src/Communication/SALOME_Comm_i.hxx,
5996           src/Communication/SALOME_Communication.hxx,
5997           src/Communication/SALOME_Matrix_i.cxx,
5998           src/Communication/SALOME_Matrix_i.hxx,
5999           src/Communication/SenderFactory.cxx,
6000           src/Communication/SenderFactory.hxx,
6001           src/Communication_SWIG/Makefile.am,
6002           src/Communication_SWIG/libSALOME_Comm.i,
6003           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
6004           src/Container/Container_init_python.cxx,
6005           src/Container/Container_init_python.hxx,
6006           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
6007           src/Container/SALOME_Component_i.hxx,
6008           src/Container/SALOME_Container.cxx,
6009           src/Container/SALOME_Container.hxx,
6010           src/Container/SALOME_Container.py,
6011           src/Container/SALOME_ContainerManager.cxx,
6012           src/Container/SALOME_ContainerManager.hxx,
6013           src/Container/SALOME_ContainerPy.py,
6014           src/Container/SALOME_Container_SignalsHandler.cxx,
6015           src/Container/SALOME_Container_i.hxx,
6016           src/Container/SALOME_FileRef_i.cxx,
6017           src/Container/SALOME_FileRef_i.hxx,
6018           src/Container/SALOME_FileTransfer_i.cxx,
6019           src/Container/SALOME_FileTransfer_i.hxx,
6020           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
6021           src/Container/Salome_file_i.hxx,
6022           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
6023           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
6024           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
6025           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
6026           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
6027           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
6028           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
6029           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
6030           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
6031           src/DSC/DSC_Basic/DSC_Basic.hxx,
6032           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
6033           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
6034           src/DSC/DSC_Basic/DSC_interface.hxx,
6035           src/DSC/DSC_Basic/Makefile.am,
6036           src/DSC/DSC_Basic/PortProperties_i.cxx,
6037           src/DSC/DSC_Basic/PortProperties_i.hxx,
6038           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
6039           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
6040           src/DSC/DSC_Python/dsccalcium.py,
6041           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
6042           src/DSC/DSC_User/Superv_Component_i.cxx,
6043           src/DSC/DSC_User/Superv_Component_i.hxx,
6044           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
6045           src/DSC/DSC_User/port_factory.hxx,
6046           src/DSC/DSC_User/provides_port.cxx,
6047           src/DSC/DSC_User/provides_port.hxx,
6048           src/DSC/DSC_User/test_DSC_Exception.cxx,
6049           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
6050           src/DSC/DSC_User/Basic/Makefile.am,
6051           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
6052           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
6053           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
6054           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
6055           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
6056           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
6057           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
6058           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
6059           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
6060           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
6061           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
6062           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
6063           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
6064           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
6065           src/DSC/DSC_User/Datastream/GenericPort.hxx,
6066           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
6067           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
6068           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
6069           src/DSC/DSC_User/Datastream/Makefile.am,
6070           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
6071           src/DSC/DSC_User/Datastream/fake.cc,
6072           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
6073           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
6074           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
6075           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
6076           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
6077           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
6078           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
6079           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
6080           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
6081           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
6082           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
6083           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
6084           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
6085           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
6086           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
6087           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
6088           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
6089           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
6090           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
6091           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
6092           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
6093           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
6094           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
6095           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
6096           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
6097           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
6098           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
6099           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
6100           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
6101           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
6102           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
6103           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
6104           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
6105           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
6106           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
6107           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
6108           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
6109           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
6110           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
6111           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
6112           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
6113           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
6114           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
6115           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
6116           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
6117           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
6118           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
6119           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
6120           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
6121           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
6122           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
6123           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
6124           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
6125           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
6126           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
6127           src/DSC/DSC_User/Datastream/Calcium/version.h,
6128           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
6129           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
6130           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
6131           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
6132           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
6133           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
6134           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
6135           src/DSC/ParallelDSC/Makefile.am,
6136           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
6137           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
6138           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
6139           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
6140           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
6141           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
6142           src/GenericObj/Makefile.am,
6143           src/GenericObj/SALOME_GenericObj_i.cc,
6144           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
6145           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
6146           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
6147           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
6148           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
6149           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
6150           src/HDFPersist/HDFattribute.hxx,
6151           src/HDFPersist/HDFcontainerObject.cc,
6152           src/HDFPersist/HDFcontainerObject.hxx,
6153           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
6154           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
6155           src/HDFPersist/HDFdatasetClose.c,
6156           src/HDFPersist/HDFdatasetCreate.c,
6157           src/HDFPersist/HDFdatasetGetDim.c,
6158           src/HDFPersist/HDFdatasetGetOrder.c,
6159           src/HDFPersist/HDFdatasetGetSize.c,
6160           src/HDFPersist/HDFdatasetGetType.c,
6161           src/HDFPersist/HDFdatasetGetnDim.c,
6162           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
6163           src/HDFPersist/HDFdatasetWrite.c,
6164           src/HDFPersist/HDFerrorModeLock.c,
6165           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
6166           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
6167           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
6168           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
6169           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
6170           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
6171           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
6172           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
6173           src/HDFPersist/HDFinternalObject.cc,
6174           src/HDFPersist/HDFinternalObject.hxx,
6175           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
6176           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
6177           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
6178           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
6179           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
6180           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
6181           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
6182           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
6183           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
6184           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
6185           src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
6186           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
6187           src/KERNEL_PY/kernel_shared_modules.py,
6188           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
6189           src/KERNEL_PY/salome_ComponentGUI.py,
6190           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
6191           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
6192           src/KERNEL_PY/salome_pynode.py,
6193           src/KERNEL_PY/salome_shared_modules.py,
6194           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
6195           src/KERNEL_PY/salome_version.py,
6196           src/KERNEL_PY/kernel/__init__.py,
6197           src/KERNEL_PY/kernel/deprecation.py,
6198           src/KERNEL_PY/kernel/logconfig.py.in,
6199           src/KERNEL_PY/kernel/logger.py,
6200           src/KERNEL_PY/kernel/studyedit.py,
6201           src/KERNEL_PY/kernel/termcolor.py, src/Launcher/BatchTest.cxx,
6202           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
6203           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
6204           src/Launcher/Launcher_Job.hxx,
6205           src/Launcher/Launcher_Job_Command.cxx,
6206           src/Launcher/Launcher_Job_Command.hxx,
6207           src/Launcher/Launcher_Job_PythonSALOME.cxx,
6208           src/Launcher/Launcher_Job_PythonSALOME.hxx,
6209           src/Launcher/Launcher_Job_SALOME.cxx,
6210           src/Launcher/Launcher_Job_SALOME.hxx,
6211           src/Launcher/Launcher_Job_YACSFile.cxx,
6212           src/Launcher/Launcher_Job_YACSFile.hxx,
6213           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
6214           src/Launcher/SALOME_Launcher.cxx,
6215           src/Launcher/SALOME_Launcher.hxx,
6216           src/Launcher/SALOME_LauncherServer.cxx,
6217           src/Launcher/SALOME_Launcher_Handler.cxx,
6218           src/Launcher/SALOME_Launcher_Handler.hxx,
6219           src/Launcher/SALOME_Launcher_Parser.cxx,
6220           src/Launcher/SALOME_Launcher_Parser.hxx,
6221           src/Launcher/SALOME_Launcher_defs.hxx,
6222           src/LifeCycleCORBA/Makefile.am,
6223           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
6224           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
6225           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
6226           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
6227           src/LifeCycleCORBA/TestContainerManager.cxx,
6228           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
6229           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
6230           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
6231           src/LifeCycleCORBA/Test/Makefile.am,
6232           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
6233           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
6234           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
6235           src/LifeCycleCORBA_SWIG/Makefile.am,
6236           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
6237           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
6238           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
6239           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
6240           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
6241           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
6242           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
6243           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
6244           src/Logger/SALOME_Logger_Server.hxx,
6245           src/Logger/SALOME_Logger_Server_main.cxx,
6246           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
6247           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
6248           src/Logger/Test/TestKiller.py,
6249           src/MPIContainer/MPIContainer_i.cxx,
6250           src/MPIContainer/MPIContainer_i.hxx,
6251           src/MPIContainer/MPIObject_i.cxx,
6252           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
6253           src/MPIContainer/SALOME_MPIContainer.cxx,
6254           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
6255           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
6256           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
6257           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
6258           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
6259           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
6260           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
6261           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
6262           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
6263           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
6264           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
6265           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
6266           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
6267           src/ModuleCatalog/TestModuleCatalog.py,
6268           src/ModuleGenerator/IDLparser.py,
6269           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
6270           src/ModuleGenerator/testIDLparser.in,
6271           src/ModuleGenerator/tests/AddComponent.idl,
6272           src/ModuleGenerator/tests/SubComponent.idl,
6273           src/ModuleGenerator/tests/Truc2Component.idl,
6274           src/ModuleGenerator/tests/TrucComponent.idl,
6275           src/ModuleGenerator/tests/test1.sh,
6276           src/ModuleGenerator/tests/test1b.sh,
6277           src/ModuleGenerator/tests/test2.sh,
6278           src/ModuleGenerator/tests/test3.sh,
6279           src/ModuleGenerator/tests/test4.sh,
6280           src/ModuleGenerator/tests/test5.sh,
6281           src/NOTIFICATION_SWIG/Makefile.am,
6282           src/NOTIFICATION_SWIG/NOTIFICATION.i,
6283           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
6284           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
6285           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
6286           src/NamingService/Makefile.am,
6287           src/NamingService/NamingService_WaitForServerReadiness.cxx,
6288           src/NamingService/NamingService_WaitForServerReadiness.hxx,
6289           src/NamingService/SALOME_NamingService.cxx,
6290           src/NamingService/SALOME_NamingService.hxx,
6291           src/NamingService/SALOME_NamingService.i,
6292           src/NamingService/SALOME_NamingServicePy.py,
6293           src/NamingService/SALOME_NamingService_defs.hxx,
6294           src/NamingService/ServiceUnreachable.cxx,
6295           src/NamingService/ServiceUnreachable.hxx,
6296           src/NamingService/Test/Makefile.am,
6297           src/NamingService/Test/NamingServiceTest.cxx,
6298           src/NamingService/Test/NamingServiceTest.hxx,
6299           src/NamingService/Test/TestNamingService.cxx,
6300           src/NamingService/Test/TestNamingService.py,
6301           src/Notification/CosNotifyShorthands.h,
6302           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
6303           src/Notification/NOTIFICATION.hxx,
6304           src/Notification/NOTIFICATION_Consumer.cxx,
6305           src/Notification/NOTIFICATION_Consumer.hxx,
6306           src/Notification/NOTIFICATION_Supplier.cxx,
6307           src/Notification/NOTIFICATION_Supplier.hxx,
6308           src/Notification/SALOME_NOTIFICATION.hxx,
6309           src/ParallelContainer/Makefile.am,
6310           src/ParallelContainer/Parallel_Salome_file_i.cxx,
6311           src/ParallelContainer/Parallel_Salome_file_i.hxx,
6312           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
6313           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
6314           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
6315           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
6316           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
6317           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
6318           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
6319           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
6320           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
6321           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
6322           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
6323           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
6324           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
6325           src/Registry/RegistryConnexion.hxx,
6326           src/Registry/RegistryService.cxx,
6327           src/Registry/RegistryService.hxx,
6328           src/Registry/SALOME_Registry.hxx,
6329           src/Registry/SALOME_Registry_Server.cxx,
6330           src/ResourcesManager/Makefile.am,
6331           src/ResourcesManager/ResourcesManager.cxx,
6332           src/ResourcesManager/ResourcesManager.hxx,
6333           src/ResourcesManager/ResourcesManager_Defs.hxx,
6334           src/ResourcesManager/SALOME_LoadRateManager.cxx,
6335           src/ResourcesManager/SALOME_LoadRateManager.hxx,
6336           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
6337           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
6338           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
6339           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
6340           src/ResourcesManager/SALOME_ResourcesManager.cxx,
6341           src/ResourcesManager/SALOME_ResourcesManager.hxx,
6342           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
6343           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
6344           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
6345           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
6346           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
6347           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
6348           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
6349           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
6350           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
6351           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
6352           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
6353           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
6354           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
6355           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
6356           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
6357           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
6358           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
6359           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
6360           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
6361           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
6362           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
6363           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
6364           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
6365           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
6366           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
6367           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
6368           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
6369           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
6370           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
6371           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
6372           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
6373           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
6374           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
6375           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
6376           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
6377           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
6378           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
6379           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
6380           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
6381           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
6382           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
6383           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
6384           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
6385           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
6386           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
6387           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
6388           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
6389           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
6390           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
6391           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
6392           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
6393           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
6394           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
6395           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
6396           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
6397           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
6398           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
6399           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
6400           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
6401           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
6402           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
6403           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
6404           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
6405           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
6406           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
6407           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
6408           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
6409           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
6410           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
6411           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
6412           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
6413           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
6414           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
6415           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
6416           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
6417           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
6418           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
6419           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
6420           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
6421           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
6422           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
6423           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
6424           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
6425           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
6426           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
6427           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
6428           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
6429           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
6430           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
6431           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
6432           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
6433           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
6434           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
6435           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
6436           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
6437           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
6438           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
6439           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
6440           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
6441           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
6442           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
6443           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
6444           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
6445           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
6446           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
6447           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
6448           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
6449           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
6450           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
6451           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
6452           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
6453           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
6454           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
6455           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
6456           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
6457           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
6458           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
6459           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
6460           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
6461           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
6462           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
6463           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
6464           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
6465           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
6466           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
6467           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
6468           src/SALOMEDS/SALOMEDS_Attributes.hxx,
6469           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
6470           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
6471           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
6472           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
6473           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
6474           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
6475           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
6476           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
6477           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
6478           src/SALOMEDS/SALOMEDS_Client.cxx,
6479           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
6480           src/SALOMEDS/SALOMEDS_Defines.hxx,
6481           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
6482           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
6483           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
6484           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
6485           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
6486           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
6487           src/SALOMEDS/SALOMEDS_IParameters.cxx,
6488           src/SALOMEDS/SALOMEDS_IParameters.hxx,
6489           src/SALOMEDS/SALOMEDS_SComponent.cxx,
6490           src/SALOMEDS/SALOMEDS_SComponent.hxx,
6491           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
6492           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
6493           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
6494           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
6495           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
6496           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
6497           src/SALOMEDS/SALOMEDS_SObject.cxx,
6498           src/SALOMEDS/SALOMEDS_SObject.hxx,
6499           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
6500           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
6501           src/SALOMEDS/SALOMEDS_Server.cxx,
6502           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
6503           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
6504           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
6505           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
6506           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
6507           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
6508           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
6509           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
6510           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
6511           src/SALOMEDS/SALOMEDS_Study_i.cxx,
6512           src/SALOMEDS/SALOMEDS_Study_i.hxx,
6513           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
6514           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
6515           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
6516           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
6517           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
6518           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
6519           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
6520           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
6521           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
6522           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
6523           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
6524           src/SALOMEDS/Test/SALOMEDSTest.cxx,
6525           src/SALOMEDS/Test/SALOMEDSTest.hxx,
6526           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
6527           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
6528           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
6529           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
6530           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
6531           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
6532           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
6533           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
6534           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
6535           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
6536           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
6537           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
6538           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
6539           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
6540           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
6541           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
6542           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
6543           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
6544           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
6545           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
6546           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
6547           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
6548           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
6549           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
6550           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
6551           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
6552           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
6553           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
6554           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
6555           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
6556           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
6557           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
6558           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
6559           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
6560           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
6561           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
6562           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
6563           src/SALOMEDS/Test/TestSALOMEDS.cxx,
6564           src/SALOMEDS/Test/TestSALOMEDS.py,
6565           src/SALOMEDSClient/Makefile.am,
6566           src/SALOMEDSClient/SALOMEDSClient.hxx,
6567           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
6568           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
6569           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
6570           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
6571           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
6572           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
6573           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
6574           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
6575           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
6576           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
6577           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
6578           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
6579           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
6580           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
6581           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
6582           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
6583           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
6584           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
6585           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
6586           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
6587           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
6588           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
6589           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
6590           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
6591           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
6592           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
6593           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
6594           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
6595           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
6596           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
6597           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
6598           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
6599           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
6600           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
6601           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
6602           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
6603           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
6604           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
6605           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
6606           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
6607           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
6608           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
6609           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
6610           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
6611           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
6612           src/SALOMEDSImpl/Makefile.am,
6613           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
6614           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
6615           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
6616           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
6617           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
6618           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
6619           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
6620           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
6621           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
6622           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
6623           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
6624           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
6625           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
6626           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
6627           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
6628           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
6629           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
6630           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
6631           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
6632           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
6633           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
6634           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
6635           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
6636           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
6637           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
6638           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
6639           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
6640           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
6641           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
6642           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
6643           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
6644           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
6645           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
6646           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
6647           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
6648           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
6649           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
6650           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
6651           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
6652           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
6653           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
6654           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
6655           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
6656           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
6657           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
6658           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
6659           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
6660           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
6661           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
6662           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
6663           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
6664           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
6665           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
6666           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
6667           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
6668           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
6669           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
6670           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
6671           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
6672           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
6673           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
6674           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
6675           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
6676           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
6677           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
6678           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
6679           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
6680           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
6681           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
6682           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
6683           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
6684           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
6685           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
6686           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
6687           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
6688           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
6689           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
6690           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
6691           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
6692           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
6693           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
6694           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
6695           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
6696           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
6697           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
6698           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
6699           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
6700           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
6701           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
6702           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
6703           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
6704           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
6705           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
6706           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
6707           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
6708           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
6709           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
6710           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
6711           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
6712           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
6713           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
6714           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
6715           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
6716           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
6717           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
6718           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
6719           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
6720           src/SALOMELocalTrace/BaseTraceCollector.cxx,
6721           src/SALOMELocalTrace/BaseTraceCollector.hxx,
6722           src/SALOMELocalTrace/FileTraceCollector.cxx,
6723           src/SALOMELocalTrace/FileTraceCollector.hxx,
6724           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
6725           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
6726           src/SALOMELocalTrace/LocalTraceCollector.cxx,
6727           src/SALOMELocalTrace/LocalTraceCollector.hxx,
6728           src/SALOMELocalTrace/Makefile.am,
6729           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
6730           src/SALOMELocalTrace/utilities.h,
6731           src/SALOMELocalTrace/Test/Makefile.am,
6732           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
6733           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
6734           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
6735           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
6736           src/SALOMETraceCollector/Makefile.am,
6737           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
6738           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
6739           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
6740           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
6741           src/SALOMETraceCollector/Test/Makefile.am,
6742           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
6743           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
6744           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
6745           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
6746           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
6747           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
6748           src/TestContainer/SALOME_TestComponent.hxx,
6749           src/TestContainer/SALOME_TestComponentPy.py,
6750           src/TestContainer/SALOME_TestComponent_i.cxx,
6751           src/TestContainer/SALOME_TestComponent_i.hxx,
6752           src/TestContainer/TestComponentPy.py,
6753           src/TestContainer/TestContainer.cxx,
6754           src/TestContainer/TestLogger.cxx,
6755           src/TestContainer/TestLogger.py,
6756           src/TestMPIContainer/Makefile.am,
6757           src/TestMPIContainer/TestMPIComponentEngine.cxx,
6758           src/TestMPIContainer/TestMPIComponentEngine.hxx,
6759           src/TestMPIContainer/TestMPIContainer.cxx,
6760           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
6761           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
6762           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
6763           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
6764           src/Utils/Utils_CommException.cxx,
6765           src/Utils/Utils_CommException.hxx,
6766           src/Utils/Utils_CorbaException.hxx,
6767           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
6768           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
6769           src/Utils/Utils_ExceptHandlers.cxx,
6770           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
6771           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
6772           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
6773           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
6774           src/Utils/Utils_SALOME_Exception.cxx,
6775           src/Utils/Utils_SALOME_Exception.hxx,
6776           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
6777           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
6778           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
6779           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
6780           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
6781           src/win32pm/win32pm.c:
6782
6783         Update copyright info (2010->2011)
6784
6785 2011-07-27 06:54  vsr
6786
6787         * salome_adm/cmake_files/am2cmake.py:
6788
6789         Increment version number -> 5.1.6
6790
6791 2011-07-26 09:49  inv
6792
6793         * configure.ac:
6794
6795         Changing version to 5.1.6
6796
6797 2011-07-20 16:31  prascle
6798
6799         * bin/appli_gen.py:
6800
6801         PR: use_advanced_selection_algorithm is set to false in SalomeApp.xml for virtual application. Avoid freezes when displaying big meshes.
6802
6803 2011-07-20 12:09  vsr
6804
6805         * doc/salome/: gui/doxyfile.in, tui/doxyfile.in:
6806
6807         Fix problem with doxygen (using default font leads to the dot errors) - switch default dot font explicitly to Arial.
6808
6809 2011-07-20 11:29  vsr
6810
6811         * salome_adm/cmake_files/am2cmake.py:
6812
6813         Increment version to 6.3.1
6814
6815 2011-07-20 08:27  vsr
6816
6817         * salome_adm/cmake_files/am2cmake.py:
6818
6819         Increment version to 6.3.1
6820
6821 2011-07-19 13:56  vsr
6822
6823         * bin/killSalomeWithPort.py, bin/runSalome.py,
6824           salome_adm/cmake_files/FindBOOST.cmake,
6825           salome_adm/cmake_files/am2cmake.py:
6826
6827         Merge from V6_3_BR 19/07/2011
6828
6829 2011-07-19 08:36  vsr
6830
6831         * bin/killSalomeWithPort.py, bin/runSalome.py,
6832           salome_adm/cmake_files/FindBOOST.cmake,
6833           salome_adm/cmake_files/am2cmake.py:
6834
6835         Merge from V6_3_1_WIN (Win32 porting) 19/07/2011
6836
6837 2011-07-18 10:29  sln
6838
6839         * .cvsignore:
6840
6841         Migration on VS9 (2008) + Integration of V1.6.4 sources
6842
6843 2011-07-15 12:34  vsr
6844
6845         * configure.ac, bin/createAppli.sh, idl/Makefile.am,
6846           salome_adm/cmake_files/FindBOOST.cmake,
6847           salome_adm/cmake_files/FindCPPUNIT.cmake,
6848           salome_adm/cmake_files/FindLIBXML2.cmake,
6849           salome_adm/cmake_files/am2cmake.py, src/Basics/Basics_Utils.hxx,
6850           src/Container/SALOME_ContainerManager.cxx,
6851           src/KERNEL_PY/salome_ComponentGUI.py,
6852           src/KERNEL_PY/kernel/parametric/compo_utils.py,
6853           src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
6854           src/Launcher/Launcher_Job_SALOME.cxx,
6855           src/ResourcesManager/ResourcesManager.cxx,
6856           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
6857           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
6858           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
6859           src/ResourcesManager/SALOME_ResourcesManager.cxx:
6860
6861         Merge from V6_3_BR 15/07/2011
6862
6863 2011-07-15 11:13  vsr
6864
6865         * src/ResourcesManager/ResourcesManager.cxx:
6866
6867         Merge from V6_3_1_BR (V6_3_1rc3 tag) 15/07/2011
6868
6869 2011-07-14 14:12  rnv
6870
6871         * salome_adm/cmake_files/am2cmake.py:
6872
6873         Porting SALOME6.3.1 on Win32 platform: generate usr documentation.
6874
6875 2011-07-14 09:42  rnv
6876
6877         * bin/: killSalomeWithPort.py, runSalome.py:
6878
6879         Porting SALOME 6.3.1 on Win 32 platform.
6880
6881 2011-07-13 09:17  secher
6882
6883         * src/Container/SALOME_ContainerManager.cxx:
6884
6885         a little bug
6886
6887 2011-07-12 15:49  ribes
6888
6889         * src/ResourcesManager/ResourcesManager.cxx:
6890
6891         Fix Bug with USER_CATALOG_RESOURCES_FILE is set with a non-existing file
6892
6893 2011-07-08 16:40  secher
6894
6895         * salome_adm/unix/config_files/check_hdf5.m4,
6896           salome_adm/unix/config_files/check_mpich.m4,
6897           src/Container/SALOME_ContainerManager.cxx,
6898           src/Container/SALOME_ContainerManager.hxx,
6899           src/MPIContainer/MPIObject_i.cxx:
6900
6901         allow using mpich for mpi2 coupling in Salome
6902
6903 2011-07-06 15:59  boulant
6904
6905         * src/Basics/: Basics_DirUtils.cxx, Basics_DirUtils.hxx:
6906
6907         ADD: GetDirName(path) and IsWritable(path)
6908
6909 2011-07-05 14:51  rnv
6910
6911         * salome_adm/cmake_files/: am2cmake.py, FindBOOST.cmake:
6912
6913         Porting SALOME 6.3.1 on windows platform.
6914
6915 2011-06-30 14:49  secher
6916
6917         * src/Container/SALOME_ContainerManager.cxx:
6918
6919         reserve on processor for salome on CCRT beside containers
6920
6921 2011-06-30 12:43  secher
6922
6923         * src/Container/SALOME_ContainerManager.cxx:
6924
6925         reserve on processor for salome on CCRT beside containers
6926
6927 2011-06-29 08:38  ribes
6928
6929         * src/: Container/SALOME_ContainerManager.cxx,
6930           Launcher/Launcher_Job_SALOME.cxx,
6931           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
6932           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
6933           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
6934           ResourcesManager/SALOME_ResourcesManager.cxx:
6935
6936         Adding new protocol: srun
6937
6938 2011-06-24 13:37  vsr
6939
6940         * src/KERNEL_PY/salome_ComponentGUI.py:
6941
6942         Extend ComponentGUI module with several functions (for tests)
6943
6944 2011-06-22 15:50  vsr
6945
6946         * bin/createAppli.sh:
6947
6948         Fix bug of createAppli.sh script: it should create USERS directory
6949
6950 2011-06-21 13:43  inv
6951
6952         * configure.ac:
6953
6954         Changing version to 6.3.1
6955
6956 2011-06-20 15:24  rnv
6957
6958         * src/Basics/Basics_Utils.hxx:
6959
6960         Porting SALOME6 on windows: add #ifdef WIN32 directive
6961
6962 2011-06-20 15:22  rnv
6963
6964         * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
6965           FindLIBXML2.cmake, am2cmake.py:
6966
6967         Porting SALOME6 on windows: update cmake file for the new products.
6968
6969 2011-06-15 10:26  barate
6970
6971         * src/KERNEL_PY/kernel/parametric/: compo_utils.py,
6972           pyscript_utils.py:
6973
6974         Copy deterministic dicts to avoid erasing values in parametric functions
6975
6976 2011-06-09 15:37  vsr
6977
6978         * idl/Makefile.am:
6979
6980         Fix problem of 'make uninstall' (and make distcheck) with automake 2.11 (Mandriva 2010)
6981
6982 2011-06-06 08:14  vsr
6983
6984         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
6985           build_cmake.bat, build_configure, clean_configure, configure.ac,
6986           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
6987           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
6988           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
6989           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
6990           bin/killSalome.py, bin/killSalomeWithPort.py,
6991           bin/launchConfigureParser.py, bin/launchSalome.py,
6992           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
6993           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
6994           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
6995           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
6996           bin/server.py, bin/setenv.py, bin/showNS.py,
6997           bin/shutdownSalome.py, bin/virtual_salome.py,
6998           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
6999           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
7000           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
7001           bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
7002           bin/appliskel/runConsole, bin/appliskel/runParam,
7003           bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
7004           bin/appliskel/runSession, bin/appliskel/runTests,
7005           bin/appliskel/searchFreePort.sh,
7006           bin/appliskel/update_catalogs.py, doc/Makefile.am,
7007           doc/README.cluster-CCRT,
7008           doc/configuration_examples/example_prerequis.sh,
7009           doc/docutils/Makefile.am, doc/docutils/docapi.rst,
7010           doc/docutils/kernel.rst, doc/docutils/parametric.rst,
7011           doc/docutils/archives/txt2html.sh, doc/salome/Makefile.am,
7012           doc/salome/gui/Makefile.am, doc/salome/gui/static/footer.html,
7013           doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
7014           doc/salome/tui/static/footer.html, idl/Calcium_Ports.idl.in,
7015           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
7016           idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
7017           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
7018           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
7019           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
7020           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
7021           idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
7022           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
7023           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
7024           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
7025           idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
7026           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
7027           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
7028           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
7029           idl/SALOME_TestMPIComponent.idl,
7030           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
7031           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
7032           resources/CatalogResources.xml.in, resources/Makefile.am,
7033           salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
7034           salome_adm/cmake_files/FindCPPUNIT.cmake,
7035           salome_adm/cmake_files/FindDOXYGEN.cmake,
7036           salome_adm/cmake_files/FindHDF5.cmake,
7037           salome_adm/cmake_files/FindKERNEL.cmake,
7038           salome_adm/cmake_files/FindLIBBATCH.cmake,
7039           salome_adm/cmake_files/FindLIBXML2.cmake,
7040           salome_adm/cmake_files/FindMPI.cmake,
7041           salome_adm/cmake_files/FindOMNIORB.cmake,
7042           salome_adm/cmake_files/FindPLATFORM.cmake,
7043           salome_adm/cmake_files/FindPTHREADS.cmake,
7044           salome_adm/cmake_files/FindPYTHON.cmake,
7045           salome_adm/cmake_files/FindSWIG.cmake,
7046           salome_adm/cmake_files/Makefile.am,
7047           salome_adm/cmake_files/am2cmake.py,
7048           salome_adm/cmake_files/install_and_compile_python_file.cmake,
7049           salome_adm/cmake_files/install_python_from_idl.cmake,
7050           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
7051           salome_adm/unix/make_common_starter.am,
7052           salome_adm/unix/DEPRECATED/Doxyfile,
7053           salome_adm/unix/DEPRECATED/F77config.h.in,
7054           salome_adm/unix/DEPRECATED/config.h.in,
7055           salome_adm/unix/DEPRECATED/depend.in,
7056           salome_adm/unix/DEPRECATED/envScript.in,
7057           salome_adm/unix/DEPRECATED/make_commence.in,
7058           salome_adm/unix/DEPRECATED/make_conclude.in,
7059           salome_adm/unix/DEPRECATED/make_module.in,
7060           salome_adm/unix/DEPRECATED/make_omniorb.in,
7061           salome_adm/unix/config_files/Makefile.am,
7062           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
7063           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
7064           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
7065           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
7066           salome_adm/unix/config_files/ac_cxx_option.m4,
7067           salome_adm/unix/config_files/ac_cxx_template_options.m4,
7068           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
7069           salome_adm/unix/config_files/ac_cxx_warnings.m4,
7070           salome_adm/unix/config_files/ac_linker_options.m4,
7071           salome_adm/unix/config_files/acx_pthread.m4,
7072           salome_adm/unix/config_files/check_Kernel.m4,
7073           salome_adm/unix/config_files/check_boost.m4,
7074           salome_adm/unix/config_files/check_calcium.m4,
7075           salome_adm/unix/config_files/check_cas.m4,
7076           salome_adm/unix/config_files/check_corba.m4,
7077           salome_adm/unix/config_files/check_cppunit.m4,
7078           salome_adm/unix/config_files/check_f77.m4,
7079           salome_adm/unix/config_files/check_hdf5.m4,
7080           salome_adm/unix/config_files/check_htmlgen.m4,
7081           salome_adm/unix/config_files/check_lam.m4,
7082           salome_adm/unix/config_files/check_libbatch.m4,
7083           salome_adm/unix/config_files/check_libxml.m4,
7084           salome_adm/unix/config_files/check_mpi.m4,
7085           salome_adm/unix/config_files/check_mpich.m4,
7086           salome_adm/unix/config_files/check_omniorb.m4,
7087           salome_adm/unix/config_files/check_openmpi.m4,
7088           salome_adm/unix/config_files/check_paco++.m4,
7089           salome_adm/unix/config_files/check_sockets.m4,
7090           salome_adm/unix/config_files/check_sphinx.m4,
7091           salome_adm/unix/config_files/check_swig.m4,
7092           salome_adm/unix/config_files/check_vtk.m4,
7093           salome_adm/unix/config_files/check_withihm.m4,
7094           salome_adm/unix/config_files/hack_libtool.m4,
7095           salome_adm/unix/config_files/local_install.m4,
7096           salome_adm/unix/config_files/production.m4,
7097           salome_adm/unix/config_files/pyembed.m4,
7098           salome_adm/unix/config_files/python.m4,
7099           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
7100           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
7101           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
7102           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
7103           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
7104           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
7105           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
7106           salome_adm/unix/config_files/DEPRECATED/install-sh,
7107           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
7108           src/Basics/BasicsGenericDestructor.hxx,
7109           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
7110           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
7111           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
7112           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
7113           src/Communication/Makefile.am,
7114           src/Communication/MatrixClient.cxx,
7115           src/Communication/MatrixClient.hxx,
7116           src/Communication/MultiCommException.cxx,
7117           src/Communication/MultiCommException.hxx,
7118           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
7119           src/Communication/ReceiverFactory.cxx,
7120           src/Communication/ReceiverFactory.hxx,
7121           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
7122           src/Communication/SALOMEMultiComm.cxx,
7123           src/Communication/SALOMEMultiComm.hxx,
7124           src/Communication/SALOME_Comm_i.cxx,
7125           src/Communication/SALOME_Comm_i.hxx,
7126           src/Communication/SALOME_Communication.hxx,
7127           src/Communication/SALOME_Matrix_i.cxx,
7128           src/Communication/SALOME_Matrix_i.hxx,
7129           src/Communication/SenderFactory.cxx,
7130           src/Communication/SenderFactory.hxx,
7131           src/Communication_SWIG/Makefile.am,
7132           src/Communication_SWIG/libSALOME_Comm.i,
7133           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
7134           src/Container/Container_init_python.cxx,
7135           src/Container/Container_init_python.hxx,
7136           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
7137           src/Container/SALOME_Component_i.hxx,
7138           src/Container/SALOME_Container.cxx,
7139           src/Container/SALOME_Container.hxx,
7140           src/Container/SALOME_Container.py,
7141           src/Container/SALOME_ContainerManager.cxx,
7142           src/Container/SALOME_ContainerManager.hxx,
7143           src/Container/SALOME_ContainerPy.py,
7144           src/Container/SALOME_Container_SignalsHandler.cxx,
7145           src/Container/SALOME_Container_i.hxx,
7146           src/Container/SALOME_FileRef_i.cxx,
7147           src/Container/SALOME_FileRef_i.hxx,
7148           src/Container/SALOME_FileTransfer_i.cxx,
7149           src/Container/SALOME_FileTransfer_i.hxx,
7150           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
7151           src/Container/Salome_file_i.hxx,
7152           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
7153           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
7154           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
7155           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
7156           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
7157           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
7158           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
7159           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
7160           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
7161           src/DSC/DSC_Basic/DSC_Basic.hxx,
7162           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
7163           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
7164           src/DSC/DSC_Basic/DSC_interface.hxx,
7165           src/DSC/DSC_Basic/Makefile.am,
7166           src/DSC/DSC_Basic/PortProperties_i.cxx,
7167           src/DSC/DSC_Basic/PortProperties_i.hxx,
7168           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
7169           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
7170           src/DSC/DSC_Python/dsccalcium.py,
7171           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
7172           src/DSC/DSC_User/Superv_Component_i.cxx,
7173           src/DSC/DSC_User/Superv_Component_i.hxx,
7174           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
7175           src/DSC/DSC_User/port_factory.hxx,
7176           src/DSC/DSC_User/provides_port.cxx,
7177           src/DSC/DSC_User/provides_port.hxx,
7178           src/DSC/DSC_User/test_DSC_Exception.cxx,
7179           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
7180           src/DSC/DSC_User/Basic/Makefile.am,
7181           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
7182           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
7183           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
7184           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
7185           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
7186           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
7187           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
7188           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
7189           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
7190           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
7191           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
7192           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
7193           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
7194           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
7195           src/DSC/DSC_User/Datastream/GenericPort.hxx,
7196           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
7197           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
7198           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
7199           src/DSC/DSC_User/Datastream/Makefile.am,
7200           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
7201           src/DSC/DSC_User/Datastream/fake.cc,
7202           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
7203           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
7204           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
7205           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
7206           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
7207           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
7208           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
7209           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
7210           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
7211           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
7212           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
7213           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
7214           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
7215           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
7216           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
7217           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
7218           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
7219           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
7220           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
7221           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
7222           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
7223           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
7224           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
7225           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
7226           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
7227           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
7228           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
7229           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
7230           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
7231           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
7232           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
7233           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
7234           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
7235           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
7236           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
7237           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
7238           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
7239           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
7240           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
7241           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
7242           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
7243           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
7244           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
7245           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
7246           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
7247           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
7248           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
7249           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
7250           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
7251           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
7252           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
7253           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
7254           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
7255           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
7256           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
7257           src/DSC/DSC_User/Datastream/Calcium/version.h,
7258           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
7259           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
7260           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
7261           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
7262           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
7263           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
7264           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
7265           src/DSC/ParallelDSC/Makefile.am,
7266           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
7267           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
7268           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
7269           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
7270           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
7271           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
7272           src/GenericObj/Makefile.am,
7273           src/GenericObj/SALOME_GenericObj_i.cc,
7274           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
7275           src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
7276           src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
7277           src/HDFPersist/HDFarrayGetDim.c,
7278           src/HDFPersist/HDFarrayGetType.c,
7279           src/HDFPersist/HDFarrayGetTypeId.c,
7280           src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
7281           src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
7282           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
7283           src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
7284           src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
7285           src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
7286           src/HDFPersist/HDFcontainerObject.cc,
7287           src/HDFPersist/HDFcontainerObject.hxx,
7288           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
7289           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
7290           src/HDFPersist/HDFdatasetClose.c,
7291           src/HDFPersist/HDFdatasetCreate.c,
7292           src/HDFPersist/HDFdatasetGetDim.c,
7293           src/HDFPersist/HDFdatasetGetOrder.c,
7294           src/HDFPersist/HDFdatasetGetSize.c,
7295           src/HDFPersist/HDFdatasetGetType.c,
7296           src/HDFPersist/HDFdatasetGetnDim.c,
7297           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
7298           src/HDFPersist/HDFdatasetWrite.c,
7299           src/HDFPersist/HDFerrorModeLock.c,
7300           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
7301           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
7302           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
7303           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
7304           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
7305           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
7306           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
7307           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
7308           src/HDFPersist/HDFinternalObject.cc,
7309           src/HDFPersist/HDFinternalObject.hxx,
7310           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
7311           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
7312           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
7313           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
7314           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
7315           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
7316           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
7317           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
7318           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
7319           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
7320           src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
7321           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
7322           src/KERNEL_PY/kernel_shared_modules.py,
7323           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
7324           src/KERNEL_PY/salome_ComponentGUI.py,
7325           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
7326           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
7327           src/KERNEL_PY/salome_pynode.py,
7328           src/KERNEL_PY/salome_shared_modules.py,
7329           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
7330           src/KERNEL_PY/salome_version.py,
7331           src/KERNEL_PY/kernel/Makefile.am,
7332           src/KERNEL_PY/kernel/__init__.py,
7333           src/KERNEL_PY/kernel/deprecation.py,
7334           src/KERNEL_PY/kernel/logconfig.py.in,
7335           src/KERNEL_PY/kernel/logger.py,
7336           src/KERNEL_PY/kernel/studyedit.py,
7337           src/KERNEL_PY/kernel/termcolor.py,
7338           src/KERNEL_PY/kernel/varlist.py,
7339           src/KERNEL_PY/kernel/parametric/Makefile.am,
7340           src/KERNEL_PY/kernel/parametric/__init__.py,
7341           src/KERNEL_PY/kernel/parametric/compo_utils.py,
7342           src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
7343           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
7344           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
7345           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
7346           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
7347           src/Launcher/Launcher_Job_Command.cxx,
7348           src/Launcher/Launcher_Job_Command.hxx,
7349           src/Launcher/Launcher_Job_PythonSALOME.cxx,
7350           src/Launcher/Launcher_Job_PythonSALOME.hxx,
7351           src/Launcher/Launcher_Job_SALOME.cxx,
7352           src/Launcher/Launcher_Job_SALOME.hxx,
7353           src/Launcher/Launcher_Job_YACSFile.cxx,
7354           src/Launcher/Launcher_Job_YACSFile.hxx,
7355           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
7356           src/Launcher/SALOME_Launcher.cxx,
7357           src/Launcher/SALOME_Launcher.hxx,
7358           src/Launcher/SALOME_LauncherServer.cxx,
7359           src/Launcher/SALOME_Launcher_Handler.cxx,
7360           src/Launcher/SALOME_Launcher_Handler.hxx,
7361           src/Launcher/SALOME_Launcher_Parser.cxx,
7362           src/Launcher/SALOME_Launcher_Parser.hxx,
7363           src/Launcher/SALOME_Launcher_defs.hxx,
7364           src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
7365           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
7366           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
7367           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
7368           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
7369           src/LifeCycleCORBA/TestContainerManager.cxx,
7370           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
7371           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
7372           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
7373           src/LifeCycleCORBA/Test/Makefile.am,
7374           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
7375           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
7376           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
7377           src/LifeCycleCORBA_SWIG/Makefile.am,
7378           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
7379           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
7380           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
7381           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
7382           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
7383           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
7384           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
7385           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
7386           src/Logger/SALOME_Logger_Server.hxx,
7387           src/Logger/SALOME_Logger_Server_main.cxx,
7388           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
7389           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
7390           src/Logger/Test/TestKiller.py,
7391           src/MPIContainer/MPIContainer_i.cxx,
7392           src/MPIContainer/MPIContainer_i.hxx,
7393           src/MPIContainer/MPIObject_i.cxx,
7394           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
7395           src/MPIContainer/SALOME_MPIContainer.cxx,
7396           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
7397           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
7398           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
7399           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
7400           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
7401           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
7402           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
7403           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
7404           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
7405           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
7406           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
7407           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
7408           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
7409           src/ModuleCatalog/TestModuleCatalog.py,
7410           src/ModuleGenerator/IDLparser.py,
7411           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
7412           src/ModuleGenerator/testIDLparser.in,
7413           src/ModuleGenerator/tests/AddComponent.idl,
7414           src/ModuleGenerator/tests/SubComponent.idl,
7415           src/ModuleGenerator/tests/Truc2Component.idl,
7416           src/ModuleGenerator/tests/TrucComponent.idl,
7417           src/ModuleGenerator/tests/test1.sh,
7418           src/ModuleGenerator/tests/test1b.sh,
7419           src/ModuleGenerator/tests/test2.sh,
7420           src/ModuleGenerator/tests/test3.sh,
7421           src/ModuleGenerator/tests/test4.sh,
7422           src/ModuleGenerator/tests/test5.sh,
7423           src/NOTIFICATION_SWIG/Makefile.am,
7424           src/NOTIFICATION_SWIG/NOTIFICATION.i,
7425           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
7426           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
7427           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
7428           src/NamingService/Makefile.am,
7429           src/NamingService/NamingService_WaitForServerReadiness.cxx,
7430           src/NamingService/NamingService_WaitForServerReadiness.hxx,
7431           src/NamingService/SALOME_NamingService.cxx,
7432           src/NamingService/SALOME_NamingService.hxx,
7433           src/NamingService/SALOME_NamingService.i,
7434           src/NamingService/SALOME_NamingServicePy.py,
7435           src/NamingService/SALOME_NamingService_defs.hxx,
7436           src/NamingService/ServiceUnreachable.cxx,
7437           src/NamingService/ServiceUnreachable.hxx,
7438           src/NamingService/Test/Makefile.am,
7439           src/NamingService/Test/NamingServiceTest.cxx,
7440           src/NamingService/Test/NamingServiceTest.hxx,
7441           src/NamingService/Test/TestNamingService.cxx,
7442           src/NamingService/Test/TestNamingService.py,
7443           src/Notification/CosNotifyShorthands.h,
7444           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
7445           src/Notification/NOTIFICATION.hxx,
7446           src/Notification/NOTIFICATION_Consumer.cxx,
7447           src/Notification/NOTIFICATION_Consumer.hxx,
7448           src/Notification/NOTIFICATION_Supplier.cxx,
7449           src/Notification/NOTIFICATION_Supplier.hxx,
7450           src/Notification/SALOME_NOTIFICATION.hxx,
7451           src/ParallelContainer/Makefile.am,
7452           src/ParallelContainer/Parallel_Salome_file_i.cxx,
7453           src/ParallelContainer/Parallel_Salome_file_i.hxx,
7454           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
7455           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
7456           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
7457           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
7458           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
7459           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
7460           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
7461           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
7462           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
7463           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
7464           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
7465           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
7466           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
7467           src/Registry/RegistryConnexion.hxx,
7468           src/Registry/RegistryService.cxx,
7469           src/Registry/RegistryService.hxx,
7470           src/Registry/SALOME_Registry.hxx,
7471           src/Registry/SALOME_Registry_Server.cxx,
7472           src/ResourcesManager/Makefile.am,
7473           src/ResourcesManager/ResourcesManager.cxx,
7474           src/ResourcesManager/ResourcesManager.hxx,
7475           src/ResourcesManager/ResourcesManager_Defs.hxx,
7476           src/ResourcesManager/SALOME_LoadRateManager.cxx,
7477           src/ResourcesManager/SALOME_LoadRateManager.hxx,
7478           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
7479           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
7480           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
7481           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
7482           src/ResourcesManager/SALOME_ResourcesManager.cxx,
7483           src/ResourcesManager/SALOME_ResourcesManager.hxx,
7484           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
7485           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
7486           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
7487           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
7488           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
7489           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
7490           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
7491           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
7492           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
7493           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
7494           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
7495           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
7496           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
7497           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
7498           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
7499           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
7500           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
7501           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
7502           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
7503           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
7504           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
7505           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
7506           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
7507           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
7508           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
7509           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
7510           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
7511           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
7512           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
7513           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
7514           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
7515           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
7516           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
7517           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
7518           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
7519           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
7520           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
7521           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
7522           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
7523           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
7524           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
7525           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
7526           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
7527           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
7528           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
7529           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
7530           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
7531           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
7532           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
7533           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
7534           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
7535           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
7536           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
7537           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
7538           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
7539           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
7540           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
7541           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
7542           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
7543           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
7544           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
7545           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
7546           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
7547           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
7548           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
7549           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
7550           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
7551           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
7552           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
7553           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
7554           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
7555           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
7556           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
7557           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
7558           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
7559           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
7560           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
7561           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
7562           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
7563           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
7564           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
7565           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
7566           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
7567           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
7568           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
7569           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
7570           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
7571           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
7572           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
7573           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
7574           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
7575           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
7576           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
7577           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
7578           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
7579           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
7580           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
7581           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
7582           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
7583           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
7584           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
7585           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
7586           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
7587           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
7588           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
7589           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
7590           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
7591           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
7592           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
7593           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
7594           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
7595           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
7596           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
7597           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
7598           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
7599           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
7600           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
7601           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
7602           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
7603           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
7604           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
7605           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
7606           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
7607           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
7608           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
7609           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
7610           src/SALOMEDS/SALOMEDS_Attributes.hxx,
7611           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
7612           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
7613           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
7614           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
7615           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
7616           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
7617           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
7618           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
7619           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
7620           src/SALOMEDS/SALOMEDS_Client.cxx,
7621           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
7622           src/SALOMEDS/SALOMEDS_Defines.hxx,
7623           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
7624           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
7625           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
7626           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
7627           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
7628           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
7629           src/SALOMEDS/SALOMEDS_IParameters.cxx,
7630           src/SALOMEDS/SALOMEDS_IParameters.hxx,
7631           src/SALOMEDS/SALOMEDS_SComponent.cxx,
7632           src/SALOMEDS/SALOMEDS_SComponent.hxx,
7633           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
7634           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
7635           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
7636           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
7637           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
7638           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
7639           src/SALOMEDS/SALOMEDS_SObject.cxx,
7640           src/SALOMEDS/SALOMEDS_SObject.hxx,
7641           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
7642           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
7643           src/SALOMEDS/SALOMEDS_Server.cxx,
7644           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
7645           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
7646           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
7647           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
7648           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
7649           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
7650           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
7651           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
7652           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
7653           src/SALOMEDS/SALOMEDS_Study_i.cxx,
7654           src/SALOMEDS/SALOMEDS_Study_i.hxx,
7655           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
7656           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
7657           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
7658           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
7659           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
7660           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
7661           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
7662           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
7663           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
7664           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
7665           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
7666           src/SALOMEDS/Test/SALOMEDSTest.cxx,
7667           src/SALOMEDS/Test/SALOMEDSTest.hxx,
7668           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
7669           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
7670           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
7671           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
7672           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
7673           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
7674           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
7675           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
7676           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
7677           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
7678           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
7679           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
7680           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
7681           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
7682           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
7683           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
7684           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
7685           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
7686           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
7687           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
7688           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
7689           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
7690           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
7691           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
7692           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
7693           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
7694           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
7695           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
7696           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
7697           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
7698           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
7699           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
7700           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
7701           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
7702           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
7703           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
7704           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
7705           src/SALOMEDS/Test/TestSALOMEDS.cxx,
7706           src/SALOMEDS/Test/TestSALOMEDS.py,
7707           src/SALOMEDSClient/Makefile.am,
7708           src/SALOMEDSClient/SALOMEDSClient.hxx,
7709           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
7710           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
7711           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
7712           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
7713           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
7714           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
7715           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
7716           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
7717           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
7718           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
7719           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
7720           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
7721           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
7722           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
7723           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
7724           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
7725           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
7726           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
7727           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
7728           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
7729           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
7730           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
7731           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
7732           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
7733           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
7734           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
7735           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
7736           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
7737           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
7738           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
7739           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
7740           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
7741           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
7742           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
7743           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
7744           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
7745           src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
7746           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
7747           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
7748           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
7749           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
7750           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
7751           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
7752           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
7753           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
7754           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
7755           src/SALOMEDSImpl/Makefile.am,
7756           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
7757           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
7758           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
7759           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
7760           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
7761           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
7762           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
7763           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
7764           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
7765           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
7766           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
7767           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
7768           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
7769           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
7770           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
7771           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
7772           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
7773           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
7774           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
7775           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
7776           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
7777           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
7778           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
7779           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
7780           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
7781           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
7782           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
7783           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
7784           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
7785           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
7786           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
7787           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
7788           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
7789           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
7790           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
7791           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
7792           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
7793           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
7794           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
7795           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
7796           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
7797           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
7798           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
7799           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
7800           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
7801           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
7802           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
7803           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
7804           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
7805           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
7806           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
7807           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
7808           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
7809           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
7810           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
7811           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
7812           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
7813           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
7814           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
7815           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
7816           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
7817           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
7818           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
7819           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
7820           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
7821           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
7822           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
7823           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
7824           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
7825           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
7826           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
7827           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
7828           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
7829           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
7830           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
7831           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
7832           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
7833           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
7834           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
7835           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
7836           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
7837           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
7838           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
7839           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
7840           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
7841           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
7842           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
7843           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
7844           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
7845           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
7846           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
7847           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
7848           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
7849           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
7850           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
7851           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
7852           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
7853           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
7854           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
7855           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
7856           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
7857           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
7858           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
7859           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
7860           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
7861           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
7862           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
7863           src/SALOMELocalTrace/BaseTraceCollector.cxx,
7864           src/SALOMELocalTrace/BaseTraceCollector.hxx,
7865           src/SALOMELocalTrace/FileTraceCollector.cxx,
7866           src/SALOMELocalTrace/FileTraceCollector.hxx,
7867           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
7868           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
7869           src/SALOMELocalTrace/LocalTraceCollector.cxx,
7870           src/SALOMELocalTrace/LocalTraceCollector.hxx,
7871           src/SALOMELocalTrace/Makefile.am,
7872           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
7873           src/SALOMELocalTrace/utilities.h,
7874           src/SALOMELocalTrace/Test/Makefile.am,
7875           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
7876           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
7877           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
7878           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
7879           src/SALOMETraceCollector/Makefile.am,
7880           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
7881           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
7882           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
7883           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
7884           src/SALOMETraceCollector/Test/Makefile.am,
7885           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
7886           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
7887           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
7888           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
7889           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
7890           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
7891           src/TestContainer/SALOME_TestComponent.hxx,
7892           src/TestContainer/SALOME_TestComponentPy.py,
7893           src/TestContainer/SALOME_TestComponent_i.cxx,
7894           src/TestContainer/SALOME_TestComponent_i.hxx,
7895           src/TestContainer/TestComponentPy.py,
7896           src/TestContainer/TestContainer.cxx,
7897           src/TestContainer/TestLogger.cxx,
7898           src/TestContainer/TestLogger.py,
7899           src/TestMPIContainer/Makefile.am,
7900           src/TestMPIContainer/TestMPIComponentEngine.cxx,
7901           src/TestMPIContainer/TestMPIComponentEngine.hxx,
7902           src/TestMPIContainer/TestMPIContainer.cxx,
7903           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
7904           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
7905           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
7906           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
7907           src/Utils/Utils_CommException.cxx,
7908           src/Utils/Utils_CommException.hxx,
7909           src/Utils/Utils_CorbaException.hxx,
7910           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
7911           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
7912           src/Utils/Utils_ExceptHandlers.cxx,
7913           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
7914           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
7915           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
7916           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
7917           src/Utils/Utils_SALOME_Exception.cxx,
7918           src/Utils/Utils_SALOME_Exception.hxx,
7919           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
7920           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
7921           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
7922           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
7923           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
7924           src/win32pm/win32pm.c:
7925
7926         Merge from V6_3_BR 06/06/2011
7927
7928 2011-06-01 15:51  vsr
7929
7930         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
7931           build_cmake.bat, build_configure, clean_configure, configure.ac,
7932           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
7933           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
7934           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
7935           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
7936           bin/killSalome.py, bin/killSalomeWithPort.py,
7937           bin/launchConfigureParser.py, bin/launchSalome.py,
7938           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
7939           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
7940           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
7941           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
7942           bin/server.py, bin/setenv.py, bin/showNS.py,
7943           bin/shutdownSalome.py, bin/virtual_salome.py,
7944           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
7945           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
7946           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
7947           bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
7948           bin/appliskel/runConsole, bin/appliskel/runParam,
7949           bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
7950           bin/appliskel/runSession, bin/appliskel/runTests,
7951           bin/appliskel/searchFreePort.sh,
7952           bin/appliskel/update_catalogs.py, doc/Makefile.am,
7953           doc/README.cluster-CCRT,
7954           doc/configuration_examples/example_prerequis.sh,
7955           doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
7956           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
7957           doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
7958           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
7959           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
7960           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
7961           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
7962           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
7963           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
7964           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
7965           idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
7966           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
7967           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
7968           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
7969           idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
7970           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
7971           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
7972           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
7973           idl/SALOME_TestMPIComponent.idl,
7974           idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
7975           idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
7976           resources/Makefile.am, salome_adm/Makefile.am,
7977           salome_adm/cmake_files/FindBOOST.cmake,
7978           salome_adm/cmake_files/FindCPPUNIT.cmake,
7979           salome_adm/cmake_files/FindDOXYGEN.cmake,
7980           salome_adm/cmake_files/FindHDF5.cmake,
7981           salome_adm/cmake_files/FindKERNEL.cmake,
7982           salome_adm/cmake_files/FindLIBBATCH.cmake,
7983           salome_adm/cmake_files/FindLIBXML2.cmake,
7984           salome_adm/cmake_files/FindMPI.cmake,
7985           salome_adm/cmake_files/FindOMNIORB.cmake,
7986           salome_adm/cmake_files/FindPLATFORM.cmake,
7987           salome_adm/cmake_files/FindPTHREADS.cmake,
7988           salome_adm/cmake_files/FindPYTHON.cmake,
7989           salome_adm/cmake_files/FindSWIG.cmake,
7990           salome_adm/cmake_files/Makefile.am,
7991           salome_adm/cmake_files/am2cmake.py,
7992           salome_adm/cmake_files/install_and_compile_python_file.cmake,
7993           salome_adm/cmake_files/install_python_from_idl.cmake,
7994           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
7995           salome_adm/unix/make_common_starter.am,
7996           salome_adm/unix/DEPRECATED/Doxyfile,
7997           salome_adm/unix/DEPRECATED/F77config.h.in,
7998           salome_adm/unix/DEPRECATED/config.h.in,
7999           salome_adm/unix/DEPRECATED/depend.in,
8000           salome_adm/unix/DEPRECATED/envScript.in,
8001           salome_adm/unix/DEPRECATED/make_commence.in,
8002           salome_adm/unix/DEPRECATED/make_conclude.in,
8003           salome_adm/unix/DEPRECATED/make_module.in,
8004           salome_adm/unix/DEPRECATED/make_omniorb.in,
8005           salome_adm/unix/config_files/Makefile.am,
8006           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
8007           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
8008           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
8009           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
8010           salome_adm/unix/config_files/ac_cxx_option.m4,
8011           salome_adm/unix/config_files/ac_cxx_template_options.m4,
8012           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
8013           salome_adm/unix/config_files/ac_cxx_warnings.m4,
8014           salome_adm/unix/config_files/ac_linker_options.m4,
8015           salome_adm/unix/config_files/acx_pthread.m4,
8016           salome_adm/unix/config_files/check_Kernel.m4,
8017           salome_adm/unix/config_files/check_boost.m4,
8018           salome_adm/unix/config_files/check_calcium.m4,
8019           salome_adm/unix/config_files/check_cas.m4,
8020           salome_adm/unix/config_files/check_corba.m4,
8021           salome_adm/unix/config_files/check_cppunit.m4,
8022           salome_adm/unix/config_files/check_f77.m4,
8023           salome_adm/unix/config_files/check_hdf5.m4,
8024           salome_adm/unix/config_files/check_htmlgen.m4,
8025           salome_adm/unix/config_files/check_lam.m4,
8026           salome_adm/unix/config_files/check_libbatch.m4,
8027           salome_adm/unix/config_files/check_libxml.m4,
8028           salome_adm/unix/config_files/check_mpi.m4,
8029           salome_adm/unix/config_files/check_mpich.m4,
8030           salome_adm/unix/config_files/check_omniorb.m4,
8031           salome_adm/unix/config_files/check_openmpi.m4,
8032           salome_adm/unix/config_files/check_paco++.m4,
8033           salome_adm/unix/config_files/check_sockets.m4,
8034           salome_adm/unix/config_files/check_sphinx.m4,
8035           salome_adm/unix/config_files/check_swig.m4,
8036           salome_adm/unix/config_files/check_vtk.m4,
8037           salome_adm/unix/config_files/check_withihm.m4,
8038           salome_adm/unix/config_files/hack_libtool.m4,
8039           salome_adm/unix/config_files/local_install.m4,
8040           salome_adm/unix/config_files/production.m4,
8041           salome_adm/unix/config_files/pyembed.m4,
8042           salome_adm/unix/config_files/python.m4,
8043           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
8044           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
8045           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
8046           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
8047           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
8048           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
8049           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
8050           salome_adm/unix/config_files/DEPRECATED/install-sh,
8051           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
8052           src/Basics/BasicsGenericDestructor.hxx,
8053           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
8054           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
8055           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
8056           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
8057           src/Communication/Makefile.am,
8058           src/Communication/MatrixClient.cxx,
8059           src/Communication/MatrixClient.hxx,
8060           src/Communication/MultiCommException.cxx,
8061           src/Communication/MultiCommException.hxx,
8062           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
8063           src/Communication/ReceiverFactory.cxx,
8064           src/Communication/ReceiverFactory.hxx,
8065           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
8066           src/Communication/SALOMEMultiComm.cxx,
8067           src/Communication/SALOMEMultiComm.hxx,
8068           src/Communication/SALOME_Comm_i.cxx,
8069           src/Communication/SALOME_Comm_i.hxx,
8070           src/Communication/SALOME_Communication.hxx,
8071           src/Communication/SALOME_Matrix_i.cxx,
8072           src/Communication/SALOME_Matrix_i.hxx,
8073           src/Communication/SenderFactory.cxx,
8074           src/Communication/SenderFactory.hxx,
8075           src/Communication_SWIG/Makefile.am,
8076           src/Communication_SWIG/libSALOME_Comm.i,
8077           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
8078           src/Container/Container_init_python.cxx,
8079           src/Container/Container_init_python.hxx,
8080           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
8081           src/Container/SALOME_Component_i.hxx,
8082           src/Container/SALOME_Container.cxx,
8083           src/Container/SALOME_Container.hxx,
8084           src/Container/SALOME_Container.py,
8085           src/Container/SALOME_ContainerManager.cxx,
8086           src/Container/SALOME_ContainerManager.hxx,
8087           src/Container/SALOME_ContainerPy.py,
8088           src/Container/SALOME_Container_SignalsHandler.cxx,
8089           src/Container/SALOME_Container_i.hxx,
8090           src/Container/SALOME_FileRef_i.cxx,
8091           src/Container/SALOME_FileRef_i.hxx,
8092           src/Container/SALOME_FileTransfer_i.cxx,
8093           src/Container/SALOME_FileTransfer_i.hxx,
8094           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
8095           src/Container/Salome_file_i.hxx,
8096           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
8097           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
8098           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
8099           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
8100           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
8101           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
8102           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
8103           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
8104           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
8105           src/DSC/DSC_Basic/DSC_Basic.hxx,
8106           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
8107           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
8108           src/DSC/DSC_Basic/DSC_interface.hxx,
8109           src/DSC/DSC_Basic/Makefile.am,
8110           src/DSC/DSC_Basic/PortProperties_i.cxx,
8111           src/DSC/DSC_Basic/PortProperties_i.hxx,
8112           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
8113           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
8114           src/DSC/DSC_Python/dsccalcium.py,
8115           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
8116           src/DSC/DSC_User/Superv_Component_i.cxx,
8117           src/DSC/DSC_User/Superv_Component_i.hxx,
8118           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
8119           src/DSC/DSC_User/port_factory.hxx,
8120           src/DSC/DSC_User/provides_port.cxx,
8121           src/DSC/DSC_User/provides_port.hxx,
8122           src/DSC/DSC_User/test_DSC_Exception.cxx,
8123           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
8124           src/DSC/DSC_User/Basic/Makefile.am,
8125           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
8126           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
8127           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
8128           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
8129           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
8130           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
8131           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
8132           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
8133           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
8134           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
8135           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
8136           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
8137           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
8138           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
8139           src/DSC/DSC_User/Datastream/GenericPort.hxx,
8140           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
8141           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
8142           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
8143           src/DSC/DSC_User/Datastream/Makefile.am,
8144           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
8145           src/DSC/DSC_User/Datastream/fake.cc,
8146           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
8147           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
8148           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
8149           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
8150           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
8151           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
8152           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
8153           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
8154           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
8155           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
8156           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
8157           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
8158           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
8159           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
8160           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
8161           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
8162           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
8163           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
8164           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
8165           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
8166           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
8167           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
8168           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
8169           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
8170           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
8171           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
8172           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
8173           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
8174           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
8175           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
8176           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
8177           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
8178           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
8179           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
8180           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
8181           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
8182           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
8183           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
8184           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
8185           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
8186           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
8187           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
8188           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
8189           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
8190           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
8191           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
8192           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
8193           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
8194           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
8195           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
8196           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
8197           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
8198           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
8199           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
8200           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
8201           src/DSC/DSC_User/Datastream/Calcium/version.h,
8202           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
8203           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
8204           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
8205           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
8206           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
8207           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
8208           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
8209           src/DSC/ParallelDSC/Makefile.am,
8210           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
8211           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
8212           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
8213           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
8214           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
8215           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
8216           src/GenericObj/Makefile.am,
8217           src/GenericObj/SALOME_GenericObj_i.cc,
8218           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
8219           src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
8220           src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
8221           src/HDFPersist/HDFarrayGetDim.c,
8222           src/HDFPersist/HDFarrayGetType.c,
8223           src/HDFPersist/HDFarrayGetTypeId.c,
8224           src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
8225           src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
8226           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
8227           src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
8228           src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
8229           src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
8230           src/HDFPersist/HDFcontainerObject.cc,
8231           src/HDFPersist/HDFcontainerObject.hxx,
8232           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
8233           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
8234           src/HDFPersist/HDFdatasetClose.c,
8235           src/HDFPersist/HDFdatasetCreate.c,
8236           src/HDFPersist/HDFdatasetGetDim.c,
8237           src/HDFPersist/HDFdatasetGetOrder.c,
8238           src/HDFPersist/HDFdatasetGetSize.c,
8239           src/HDFPersist/HDFdatasetGetType.c,
8240           src/HDFPersist/HDFdatasetGetnDim.c,
8241           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
8242           src/HDFPersist/HDFdatasetWrite.c,
8243           src/HDFPersist/HDFerrorModeLock.c,
8244           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
8245           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
8246           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
8247           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
8248           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
8249           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
8250           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
8251           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
8252           src/HDFPersist/HDFinternalObject.cc,
8253           src/HDFPersist/HDFinternalObject.hxx,
8254           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
8255           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
8256           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
8257           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
8258           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
8259           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
8260           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
8261           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
8262           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
8263           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
8264           src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
8265           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
8266           src/KERNEL_PY/kernel_shared_modules.py,
8267           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
8268           src/KERNEL_PY/salome_ComponentGUI.py,
8269           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
8270           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
8271           src/KERNEL_PY/salome_pynode.py,
8272           src/KERNEL_PY/salome_shared_modules.py,
8273           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
8274           src/KERNEL_PY/salome_version.py,
8275           src/KERNEL_PY/kernel/Makefile.am,
8276           src/KERNEL_PY/kernel/__init__.py,
8277           src/KERNEL_PY/kernel/deprecation.py,
8278           src/KERNEL_PY/kernel/logconfig.py.in,
8279           src/KERNEL_PY/kernel/logger.py,
8280           src/KERNEL_PY/kernel/studyedit.py,
8281           src/KERNEL_PY/kernel/termcolor.py,
8282           src/KERNEL_PY/kernel/parametric/Makefile.am,
8283           src/KERNEL_PY/kernel/parametric/__init__.py,
8284           src/KERNEL_PY/kernel/parametric/compo_utils.py,
8285           src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
8286           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
8287           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
8288           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
8289           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
8290           src/Launcher/Launcher_Job_Command.cxx,
8291           src/Launcher/Launcher_Job_Command.hxx,
8292           src/Launcher/Launcher_Job_PythonSALOME.cxx,
8293           src/Launcher/Launcher_Job_PythonSALOME.hxx,
8294           src/Launcher/Launcher_Job_SALOME.cxx,
8295           src/Launcher/Launcher_Job_SALOME.hxx,
8296           src/Launcher/Launcher_Job_YACSFile.cxx,
8297           src/Launcher/Launcher_Job_YACSFile.hxx,
8298           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
8299           src/Launcher/SALOME_Launcher.cxx,
8300           src/Launcher/SALOME_Launcher.hxx,
8301           src/Launcher/SALOME_LauncherServer.cxx,
8302           src/Launcher/SALOME_Launcher_Handler.cxx,
8303           src/Launcher/SALOME_Launcher_Handler.hxx,
8304           src/Launcher/SALOME_Launcher_Parser.cxx,
8305           src/Launcher/SALOME_Launcher_Parser.hxx,
8306           src/Launcher/SALOME_Launcher_defs.hxx,
8307           src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
8308           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
8309           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
8310           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
8311           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
8312           src/LifeCycleCORBA/TestContainerManager.cxx,
8313           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
8314           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
8315           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
8316           src/LifeCycleCORBA/Test/Makefile.am,
8317           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
8318           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
8319           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
8320           src/LifeCycleCORBA_SWIG/Makefile.am,
8321           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
8322           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
8323           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
8324           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
8325           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
8326           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
8327           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
8328           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
8329           src/Logger/SALOME_Logger_Server.hxx,
8330           src/Logger/SALOME_Logger_Server_main.cxx,
8331           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
8332           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
8333           src/Logger/Test/TestKiller.py,
8334           src/MPIContainer/MPIContainer_i.cxx,
8335           src/MPIContainer/MPIContainer_i.hxx,
8336           src/MPIContainer/MPIObject_i.cxx,
8337           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
8338           src/MPIContainer/SALOME_MPIContainer.cxx,
8339           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
8340           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
8341           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
8342           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
8343           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
8344           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
8345           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
8346           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
8347           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
8348           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
8349           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
8350           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
8351           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
8352           src/ModuleCatalog/TestModuleCatalog.py,
8353           src/ModuleGenerator/IDLparser.py,
8354           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
8355           src/ModuleGenerator/testIDLparser.in,
8356           src/ModuleGenerator/tests/AddComponent.idl,
8357           src/ModuleGenerator/tests/SubComponent.idl,
8358           src/ModuleGenerator/tests/Truc2Component.idl,
8359           src/ModuleGenerator/tests/TrucComponent.idl,
8360           src/ModuleGenerator/tests/test1.sh,
8361           src/ModuleGenerator/tests/test1b.sh,
8362           src/ModuleGenerator/tests/test2.sh,
8363           src/ModuleGenerator/tests/test3.sh,
8364           src/ModuleGenerator/tests/test4.sh,
8365           src/ModuleGenerator/tests/test5.sh,
8366           src/NOTIFICATION_SWIG/Makefile.am,
8367           src/NOTIFICATION_SWIG/NOTIFICATION.i,
8368           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
8369           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
8370           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
8371           src/NamingService/Makefile.am,
8372           src/NamingService/NamingService_WaitForServerReadiness.cxx,
8373           src/NamingService/NamingService_WaitForServerReadiness.hxx,
8374           src/NamingService/SALOME_NamingService.cxx,
8375           src/NamingService/SALOME_NamingService.hxx,
8376           src/NamingService/SALOME_NamingService.i,
8377           src/NamingService/SALOME_NamingServicePy.py,
8378           src/NamingService/SALOME_NamingService_defs.hxx,
8379           src/NamingService/ServiceUnreachable.cxx,
8380           src/NamingService/ServiceUnreachable.hxx,
8381           src/NamingService/Test/Makefile.am,
8382           src/NamingService/Test/NamingServiceTest.cxx,
8383           src/NamingService/Test/NamingServiceTest.hxx,
8384           src/NamingService/Test/TestNamingService.cxx,
8385           src/NamingService/Test/TestNamingService.py,
8386           src/Notification/CosNotifyShorthands.h,
8387           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
8388           src/Notification/NOTIFICATION.hxx,
8389           src/Notification/NOTIFICATION_Consumer.cxx,
8390           src/Notification/NOTIFICATION_Consumer.hxx,
8391           src/Notification/NOTIFICATION_Supplier.cxx,
8392           src/Notification/NOTIFICATION_Supplier.hxx,
8393           src/Notification/SALOME_NOTIFICATION.hxx,
8394           src/ParallelContainer/Makefile.am,
8395           src/ParallelContainer/Parallel_Salome_file_i.cxx,
8396           src/ParallelContainer/Parallel_Salome_file_i.hxx,
8397           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
8398           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
8399           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
8400           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
8401           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
8402           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
8403           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
8404           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
8405           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
8406           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
8407           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
8408           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
8409           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
8410           src/Registry/RegistryConnexion.hxx,
8411           src/Registry/RegistryService.cxx,
8412           src/Registry/RegistryService.hxx,
8413           src/Registry/SALOME_Registry.hxx,
8414           src/Registry/SALOME_Registry_Server.cxx,
8415           src/ResourcesManager/Makefile.am,
8416           src/ResourcesManager/ResourcesManager.cxx,
8417           src/ResourcesManager/ResourcesManager.hxx,
8418           src/ResourcesManager/ResourcesManager_Defs.hxx,
8419           src/ResourcesManager/SALOME_LoadRateManager.cxx,
8420           src/ResourcesManager/SALOME_LoadRateManager.hxx,
8421           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
8422           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
8423           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
8424           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
8425           src/ResourcesManager/SALOME_ResourcesManager.cxx,
8426           src/ResourcesManager/SALOME_ResourcesManager.hxx,
8427           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
8428           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
8429           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
8430           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
8431           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
8432           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
8433           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
8434           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
8435           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
8436           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
8437           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
8438           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
8439           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
8440           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
8441           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
8442           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
8443           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
8444           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
8445           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
8446           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
8447           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
8448           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
8449           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
8450           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
8451           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
8452           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
8453           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
8454           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
8455           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
8456           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
8457           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
8458           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
8459           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
8460           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
8461           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
8462           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
8463           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
8464           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
8465           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
8466           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
8467           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
8468           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
8469           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
8470           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
8471           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
8472           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
8473           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
8474           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
8475           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
8476           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
8477           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
8478           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
8479           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
8480           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
8481           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
8482           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
8483           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
8484           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
8485           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
8486           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
8487           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
8488           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
8489           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
8490           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
8491           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
8492           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
8493           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
8494           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
8495           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
8496           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
8497           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
8498           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
8499           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
8500           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
8501           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
8502           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
8503           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
8504           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
8505           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
8506           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
8507           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
8508           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
8509           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
8510           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
8511           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
8512           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
8513           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
8514           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
8515           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
8516           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
8517           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
8518           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
8519           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
8520           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
8521           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
8522           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
8523           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
8524           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
8525           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
8526           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
8527           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
8528           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
8529           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
8530           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
8531           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
8532           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
8533           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
8534           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
8535           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
8536           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
8537           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
8538           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
8539           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
8540           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
8541           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
8542           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
8543           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
8544           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
8545           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
8546           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
8547           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
8548           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
8549           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
8550           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
8551           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
8552           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
8553           src/SALOMEDS/SALOMEDS_Attributes.hxx,
8554           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
8555           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
8556           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
8557           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
8558           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
8559           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
8560           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
8561           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
8562           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
8563           src/SALOMEDS/SALOMEDS_Client.cxx,
8564           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
8565           src/SALOMEDS/SALOMEDS_Defines.hxx,
8566           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
8567           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
8568           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
8569           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
8570           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
8571           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
8572           src/SALOMEDS/SALOMEDS_IParameters.cxx,
8573           src/SALOMEDS/SALOMEDS_IParameters.hxx,
8574           src/SALOMEDS/SALOMEDS_SComponent.cxx,
8575           src/SALOMEDS/SALOMEDS_SComponent.hxx,
8576           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
8577           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
8578           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
8579           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
8580           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
8581           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
8582           src/SALOMEDS/SALOMEDS_SObject.cxx,
8583           src/SALOMEDS/SALOMEDS_SObject.hxx,
8584           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
8585           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
8586           src/SALOMEDS/SALOMEDS_Server.cxx,
8587           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
8588           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
8589           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
8590           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
8591           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
8592           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
8593           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
8594           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
8595           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
8596           src/SALOMEDS/SALOMEDS_Study_i.cxx,
8597           src/SALOMEDS/SALOMEDS_Study_i.hxx,
8598           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
8599           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
8600           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
8601           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
8602           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
8603           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
8604           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
8605           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
8606           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
8607           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
8608           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
8609           src/SALOMEDS/Test/SALOMEDSTest.cxx,
8610           src/SALOMEDS/Test/SALOMEDSTest.hxx,
8611           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
8612           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
8613           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
8614           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
8615           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
8616           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
8617           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
8618           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
8619           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
8620           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
8621           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
8622           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
8623           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
8624           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
8625           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
8626           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
8627           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
8628           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
8629           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
8630           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
8631           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
8632           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
8633           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
8634           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
8635           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
8636           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
8637           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
8638           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
8639           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
8640           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
8641           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
8642           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
8643           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
8644           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
8645           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
8646           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
8647           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
8648           src/SALOMEDS/Test/TestSALOMEDS.cxx,
8649           src/SALOMEDS/Test/TestSALOMEDS.py,
8650           src/SALOMEDSClient/Makefile.am,
8651           src/SALOMEDSClient/SALOMEDSClient.hxx,
8652           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
8653           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
8654           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
8655           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
8656           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
8657           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
8658           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
8659           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
8660           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
8661           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
8662           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
8663           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
8664           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
8665           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
8666           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
8667           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
8668           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
8669           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
8670           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
8671           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
8672           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
8673           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
8674           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
8675           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
8676           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
8677           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
8678           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
8679           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
8680           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
8681           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
8682           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
8683           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
8684           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
8685           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
8686           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
8687           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
8688           src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
8689           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
8690           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
8691           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
8692           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
8693           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
8694           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
8695           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
8696           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
8697           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
8698           src/SALOMEDSImpl/Makefile.am,
8699           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
8700           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
8701           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
8702           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
8703           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
8704           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
8705           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
8706           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
8707           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
8708           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
8709           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
8710           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
8711           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
8712           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
8713           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
8714           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
8715           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
8716           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
8717           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
8718           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
8719           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
8720           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
8721           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
8722           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
8723           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
8724           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
8725           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
8726           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
8727           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
8728           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
8729           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
8730           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
8731           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
8732           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
8733           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
8734           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
8735           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
8736           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
8737           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
8738           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
8739           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
8740           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
8741           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
8742           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
8743           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
8744           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
8745           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
8746           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
8747           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
8748           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
8749           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
8750           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
8751           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
8752           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
8753           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
8754           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
8755           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
8756           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
8757           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
8758           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
8759           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
8760           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
8761           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
8762           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
8763           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
8764           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
8765           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
8766           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
8767           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
8768           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
8769           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
8770           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
8771           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
8772           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
8773           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
8774           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
8775           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
8776           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
8777           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
8778           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
8779           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
8780           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
8781           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
8782           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
8783           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
8784           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
8785           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
8786           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
8787           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
8788           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
8789           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
8790           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
8791           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
8792           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
8793           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
8794           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
8795           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
8796           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
8797           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
8798           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
8799           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
8800           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
8801           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
8802           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
8803           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
8804           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
8805           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
8806           src/SALOMELocalTrace/BaseTraceCollector.cxx,
8807           src/SALOMELocalTrace/BaseTraceCollector.hxx,
8808           src/SALOMELocalTrace/FileTraceCollector.cxx,
8809           src/SALOMELocalTrace/FileTraceCollector.hxx,
8810           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
8811           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
8812           src/SALOMELocalTrace/LocalTraceCollector.cxx,
8813           src/SALOMELocalTrace/LocalTraceCollector.hxx,
8814           src/SALOMELocalTrace/Makefile.am,
8815           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
8816           src/SALOMELocalTrace/utilities.h,
8817           src/SALOMELocalTrace/Test/Makefile.am,
8818           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
8819           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
8820           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
8821           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
8822           src/SALOMETraceCollector/Makefile.am,
8823           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
8824           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
8825           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
8826           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
8827           src/SALOMETraceCollector/Test/Makefile.am,
8828           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
8829           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
8830           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
8831           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
8832           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
8833           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
8834           src/TestContainer/SALOME_TestComponent.hxx,
8835           src/TestContainer/SALOME_TestComponentPy.py,
8836           src/TestContainer/SALOME_TestComponent_i.cxx,
8837           src/TestContainer/SALOME_TestComponent_i.hxx,
8838           src/TestContainer/TestComponentPy.py,
8839           src/TestContainer/TestContainer.cxx,
8840           src/TestContainer/TestLogger.cxx,
8841           src/TestContainer/TestLogger.py,
8842           src/TestMPIContainer/Makefile.am,
8843           src/TestMPIContainer/TestMPIComponentEngine.cxx,
8844           src/TestMPIContainer/TestMPIComponentEngine.hxx,
8845           src/TestMPIContainer/TestMPIContainer.cxx,
8846           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
8847           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
8848           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
8849           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
8850           src/Utils/Utils_CommException.cxx,
8851           src/Utils/Utils_CommException.hxx,
8852           src/Utils/Utils_CorbaException.hxx,
8853           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
8854           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
8855           src/Utils/Utils_ExceptHandlers.cxx,
8856           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
8857           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
8858           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
8859           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
8860           src/Utils/Utils_SALOME_Exception.cxx,
8861           src/Utils/Utils_SALOME_Exception.hxx,
8862           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
8863           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
8864           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
8865           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
8866           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
8867           src/win32pm/win32pm.c:
8868
8869         Update copyright
8870
8871 2011-05-19 13:44  vsr
8872
8873         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
8874
8875         IPAL22481 - TC6.3.0: SIGSEGV calling copy-paste of objects
8876         Fix bug with observers - paste operation was not handled
8877
8878 2011-05-18 10:32  ribes
8879
8880         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
8881
8882         Bug for ccc batch manager
8883
8884 2011-05-17 11:48  adam
8885
8886         * bin/runSalome.py:
8887
8888         If AAA is in module list and AAA_ROOT_DIR is not defined, trust the user
8889         and take account AAA module.
8890         If AAA_ROOT_DIR is defined but does not have a SalomeApp.xml in good places,
8891         the AAA module is removed from GUI list.
8892
8893 2011-05-12 17:42  ribes
8894
8895         * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
8896           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
8897           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
8898           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
8899           ResourcesManager/SALOME_ResourcesManager.cxx:
8900
8901         Adding SLURM batch
8902         Have to slurm to slurmmpi
8903
8904 2011-05-11 10:43  barate
8905
8906         * doc/docutils/Makefile.am:
8907
8908         Fixed bug in docutils: KERNEL installation failed when Sphinx was not found by configure
8909
8910 2011-05-10 15:33  adam
8911
8912         * bin/: launchConfigureParser.py, runSalome.py:
8913
8914         Implement the --foreground=0/1 to force old behavior
8915         with runSalome --foreground=0
8916
8917 2011-05-10 09:53  adam
8918
8919         * resources/CatalogResources.xml.in:
8920
8921         [no log message]
8922
8923 2011-05-06 14:16  secher
8924
8925         * src/Container/: SALOME_ContainerManager.cxx:
8926
8927         to correct problem of machine with long hostname like name.domaine
8928
8929 2011-05-05 18:29  ribes
8930
8931         * src/Launcher/: Launcher.cxx, Launcher_Job.cxx, Launcher_Job.hxx:
8932
8933         Remove job from batch manager only when call deleteJob
8934
8935 2011-05-05 16:03  gdd
8936
8937         * salome_adm/unix/config_files/: check_hdf5.m4, check_omniorb.m4:
8938
8939         Fix to get correct options for gcc-4.6
8940
8941 2011-05-05 11:00  adam
8942
8943         * bin/runSalome.py:
8944
8945         Remove a print when not verbose
8946
8947 2011-05-05 11:00  adam
8948
8949         * bin/server.py:
8950
8951         Remove error trace when notifd is not present.
8952
8953 2011-05-03 17:53  eap
8954
8955         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
8956
8957         0021256: EDF STUDY: Python dump in a single file (continued)
8958
8959         +  if ( !isMultiFile )
8960         +    sfp << "theStudy = salome.myStudy" <<std::endl << std::endl;
8961
8962 2011-05-03 16:14  eap
8963
8964         * src/SALOMETraceCollector/SALOMETraceCollector.cxx:
8965
8966         0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
8967
8968                    int bid = 0;
8969                    pthread_create(&traceThread, NULL,
8970         -                                   SALOMETraceCollector::run, (void *)bid);
8971         +                                   SALOMETraceCollector::run, &bid);
8972
8973 2011-05-03 15:20  eap
8974
8975         * src/: SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
8976           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx:
8977
8978         0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
8979
8980         -      rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t) ;
8981         +      rc = pthread_create(&threads[t], NULL, PrintHello, &t) ;
8982
8983 2011-05-03 15:18  eap
8984
8985         * src/SALOMELocalTrace/FileTraceCollector.cxx:
8986
8987         0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
8988
8989                    int bid = 0;
8990                    pthread_create(&traceThread, NULL,
8991         -                                   FileTraceCollector::run, (void *)bid);
8992         +                                   FileTraceCollector::run, &bid);
8993
8994 2011-05-02 17:32  adam
8995
8996         * salome_adm/cmake_files/am2cmake.py:
8997
8998         implement smesh cancel compute for hexotic
8999
9000 2011-04-29 16:09  ribes
9001
9002         * idl/Makefile.am, idl/SALOME_GenericObj.xml,
9003           salome_adm/unix/config_files/check_corba.m4,
9004           salome_adm/unix/config_files/check_omniorb.m4,
9005           src/DSC/ParallelDSC/Makefile.am,
9006           src/ParallelContainer/Makefile.am,
9007           src/ParallelContainer/Parallel_Salome_file_i.cxx,
9008           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
9009           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
9010
9011         PaCO++ update for V6.3
9012
9013 2011-04-29 16:09  vsr
9014
9015         * idl/SALOME_GenericObj.xml:
9016
9017         file SALOME_GenericObj.xml was added on branch V6_main on 2011-06-06 06:14:46 +0000
9018
9019 2011-04-29 14:17  rnv
9020
9021         * src/: SALOMEDS/SALOMEDS_IParameters.cxx,
9022           SALOMEDS/SALOMEDS_IParameters.hxx,
9023           SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
9024           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
9025           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
9026           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
9027
9028         Fix for the bug "IPAL22425 TC6.3.0: Wrong Dump of Study".
9029
9030 2011-04-28 16:22  ribes
9031
9032         * src/Launcher/Launcher_Job.cxx:
9033
9034         Remove debug print
9035
9036 2011-04-28 14:35  adam
9037
9038         * salome_adm/cmake_files/am2cmake.py:
9039
9040         Modify include of cmake files for netgen compilation
9041
9042 2011-04-28 14:33  adam
9043
9044         * salome_adm/cmake_files/FindPLATFORM.cmake:
9045
9046         If CMAKE_BUILD_TYPE is not set, set it to Release
9047
9048 2011-04-27 12:11  vsr
9049
9050         * doc/salome/: gui/static/footer.html, tui/static/footer.html:
9051
9052         Copyright info update
9053
9054 2011-04-27 10:39  barate
9055
9056         * doc/docutils/parametric.rst,
9057           src/KERNEL_PY/kernel/parametric/compo_utils.py,
9058           src/KERNEL_PY/kernel/parametric/pyscript_utils.py:
9059
9060         Complete doc for package salome.kernel.parametric
9061
9062 2011-04-26 14:46  barate
9063
9064         * src/KERNEL_PY/kernel/parametric/: Makefile.am, pyscript_utils.py:
9065
9066         Added utility Python module for parametric studies with PyScripts
9067
9068 2011-04-26 14:46  vsr
9069
9070         * src/KERNEL_PY/kernel/parametric/pyscript_utils.py:
9071
9072         file pyscript_utils.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
9073
9074 2011-04-22 16:01  vsr
9075
9076         * src/KERNEL_PY/kernel/parametric/Makefile.am:
9077
9078         file Makefile.am was added on branch V6_main on 2011-06-06 06:14:57 +0000
9079
9080 2011-04-22 16:01  vsr
9081
9082         * src/KERNEL_PY/kernel/parametric/__init__.py:
9083
9084         file __init__.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
9085
9086 2011-04-22 16:01  vsr
9087
9088         * src/KERNEL_PY/kernel/parametric/compo_utils.py:
9089
9090         file compo_utils.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
9091
9092 2011-04-22 16:01  vsr
9093
9094         * doc/docutils/kernel.rst:
9095
9096         file kernel.rst was added on branch V6_main on 2011-06-06 06:14:45 +0000
9097
9098 2011-04-22 16:01  vsr
9099
9100         * doc/docutils/parametric.rst:
9101
9102         file parametric.rst was added on branch V6_main on 2011-06-06 06:14:45 +0000
9103
9104 2011-04-22 16:01  vsr
9105
9106         * src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
9107
9108         file study_exchange_vars.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
9109
9110 2011-04-22 16:01  barate
9111
9112         * configure.ac, doc/docutils/Makefile.am, doc/docutils/docapi.rst,
9113           doc/docutils/kernel.rst, doc/docutils/parametric.rst,
9114           src/KERNEL_PY/kernel/Makefile.am,
9115           src/KERNEL_PY/kernel/varlist.py,
9116           src/KERNEL_PY/kernel/parametric/Makefile.am,
9117           src/KERNEL_PY/kernel/parametric/__init__.py,
9118           src/KERNEL_PY/kernel/parametric/compo_utils.py,
9119           src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
9120
9121         Reorganized Python modules for parametric studies (and corresponding doc)
9122
9123 2011-04-20 16:21  barate
9124
9125         * src/Launcher/Launcher_Job.cxx:
9126
9127         Fixed compilation problem with libbatch 1.3.0rc1
9128
9129 2011-04-20 12:25  vsr
9130
9131         * src/HDFPersist/HDFarray.cc:
9132
9133         file HDFarray.cc was added on branch V6_main on 2011-06-06 06:14:55 +0000
9134
9135 2011-04-20 12:25  vsr
9136
9137         * src/HDFPersist/HDFarray.hxx:
9138
9139         file HDFarray.hxx was added on branch V6_main on 2011-06-06 06:14:55 +0000
9140
9141 2011-04-20 12:25  vsr
9142
9143         * src/HDFPersist/HDFarrayClose.c:
9144
9145         file HDFarrayClose.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9146
9147 2011-04-20 12:25  vsr
9148
9149         * src/HDFPersist/HDFarrayCreate.c:
9150
9151         file HDFarrayCreate.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9152
9153 2011-04-20 12:25  vsr
9154
9155         * src/HDFPersist/HDFarrayGetDim.c:
9156
9157         file HDFarrayGetDim.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9158
9159 2011-04-20 12:25  vsr
9160
9161         * src/HDFPersist/HDFarrayGetType.c:
9162
9163         file HDFarrayGetType.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9164
9165 2011-04-20 12:25  vsr
9166
9167         * src/HDFPersist/HDFarrayGetTypeId.c:
9168
9169         file HDFarrayGetTypeId.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9170
9171 2011-04-20 12:25  vsr
9172
9173         * src/HDFPersist/HDFarrayGetnDim.c:
9174
9175         file HDFarrayGetnDim.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
9176
9177 2011-04-20 12:25  rnv
9178
9179         * src/HDFPersist/: hdfi.h, HDFOI.hxx, HDFarray.cc, HDFarray.hxx,
9180           HDFarrayClose.c, HDFarrayCreate.c, HDFarrayGetDim.c,
9181           HDFarrayGetType.c, HDFarrayGetTypeId.c, HDFarrayGetnDim.c,
9182           HDFascii.cc, HDFdataset.cc, HDFdataset.hxx, HDFdatasetCreate.c,
9183           HDFdatasetGetType.c, HDFtypes.h, Makefile.am:
9184
9185         RNV: Added support of the H5T_ARRAY.
9186
9187 2011-04-19 13:48  vsr
9188
9189         * src/Basics/Basics_DirUtils.cxx:
9190
9191         Fix logical error
9192
9193 2011-04-18 14:58  vsr
9194
9195         * salome_adm/unix/config_files/check_libbatch.m4,
9196           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
9197           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
9198
9199         Merge from V6_main branch 18/04/2011
9200
9201 2011-04-18 13:19  inv
9202
9203         * configure.ac:
9204
9205         Changing version to 6.3.0
9206
9207 2011-04-18 12:41  vsr
9208
9209         * salome_adm/unix/config_files/check_libbatch.m4,
9210           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
9211           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
9212
9213         Fix configuration / compilation problems in KERNEL with libBatch (caused by wrong #include syntax for local header files used in libBatch headers)
9214
9215 2011-04-14 16:19  ribes
9216
9217         * salome_adm/unix/config_files/check_libbatch.m4,
9218           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
9219           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
9220
9221         Adding a new specific parameter for LoadLeveler
9222
9223         name  = LoadLevelerJobType
9224         value = loadleveler job type (usualy is serial, mpi, bluegene, ...)
9225
9226 2011-04-14 10:00  ribes
9227
9228         * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
9229
9230         Add an helper class for ResourceDefinition
9231
9232 2011-04-13 19:24  ribes
9233
9234         * src/Launcher/: Launcher_Job.cxx, SALOME_Launcher.cxx:
9235
9236         Save and load Jobs with specific parameters
9237
9238 2011-04-13 18:42  ribes
9239
9240         * src/Launcher/SALOME_Launcher.cxx:
9241
9242         Add specific parameters support to getJobParameters
9243
9244 2011-04-13 18:41  vsr
9245
9246         * src/KERNEL_PY/salome_test.py:
9247
9248         Improve salome base test
9249
9250 2011-04-13 18:18  ribes
9251
9252         * src/Launcher/: Launcher_Job.cxx, Launcher_Job.hxx,
9253           Launcher_Job_YACSFile.cxx, Launcher_Job_YACSFile.hxx,
9254           SALOME_Launcher.cxx:
9255
9256         Refactoring code EnableDumpYACS
9257
9258         Add some tests if user does not enter a correct value.
9259
9260 2011-04-11 14:05  vsr
9261
9262         * src/KERNEL_PY/salome_test.py:
9263
9264         Modify basic salome test for series 6x
9265
9266 2011-04-08 16:26  secher
9267
9268         * src/Launcher/: Launcher_Job.hxx:
9269
9270         update for install with only launcher
9271
9272 2011-04-08 15:52  secher
9273
9274         * src/Launcher/Makefile.am:
9275
9276         update flags for TestLauncher
9277
9278 2011-04-08 15:26  adam
9279
9280         * src/Launcher/Makefile.am:
9281
9282         [no log message]
9283
9284 2011-04-08 15:00  secher
9285
9286         * src/Launcher/Makefile.am:
9287
9288         update flags for TestLauncher
9289
9290 2011-04-08 14:28  secher
9291
9292         * src/Launcher/Makefile.am:
9293
9294         update flags for TestLauncher
9295
9296 2011-04-08 14:05  fkl
9297
9298         * src/Launcher/Makefile.am:
9299
9300         Update FLAGS about TestLaucher
9301
9302 2011-04-08 11:24  secher
9303
9304         * src/Launcher/: Makefile.am, TestLauncher.cxx:
9305
9306         add a test for c++ Launcher
9307
9308 2011-04-07 17:48  barate
9309
9310         * idl/SALOME_Parametric.idl, resources/KERNELCatalog.xml.in:
9311
9312         Changed the parametric types to support types needed by ADAO
9313
9314 2011-04-07 15:10  adam
9315
9316         * bin/runSalome.py:
9317
9318         desactivate foreground() for
9319          o runSalome --pinter option
9320          o python -i runSalome.py use case
9321
9322 2011-04-07 14:58  rnv
9323
9324         * doc/salome/: gui/static/doxygen.css, gui/static/footer.html,
9325           gui/static/header.html.in, tui/static/doxygen.css,
9326           tui/static/footer.html, tui/static/header.html.in:
9327
9328         RNV: Porting documentation on the doxygen 1.7.3
9329
9330 2011-04-07 07:46  vsr
9331
9332         * src/KERNEL_PY/__init__.py:
9333
9334         Hide debug messages if verbose mode is not set
9335
9336 2011-04-07 07:44  vsr
9337
9338         * bin/: launchConfigureParser.py, salome_utils.py:
9339
9340         Move verbose() / setVerbose() functions to the salome_utils
9341
9342 2011-04-06 14:28  vsr
9343
9344         * bin/runSalome.py:
9345
9346         Add a workaround about the "foreground" improvement to allow running tests with python -i approach
9347
9348 2011-04-01 16:49  adam
9349
9350         * bin/runSalome.py:
9351
9352         Launch salome foreground when gui is activated.
9353         Ctrl-c, everything is cleaned
9354         IAPP crashes, everything is cleaned
9355         kill -9 runSalome*, everything is cleaned
9356         runSalome & ; kill %1, everything is cleaned
9357
9358 2011-04-01 16:30  adam
9359
9360         * bin/killSalomeWithPort.py:
9361
9362         add a "--spy" option
9363
9364 2011-03-31 12:50  rnv
9365
9366         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx:
9367
9368         Implementation of the "16219: EDF PAL 469: "RemoveFromStudy" Function" issue.
9369
9370 2011-03-31 11:57  barate
9371
9372         * src/KERNEL_PY/kernel/varlist.py, doc/docutils/docapi.rst:
9373
9374         Added doc for salome.kernel.varlist module
9375
9376 2011-03-29 09:34  ouv
9377
9378         * idl/SALOMEDS.idl, idl/SALOME_Component.idl,
9379           src/Container/Component_i.cxx,
9380           src/Container/SALOME_ComponentPy.py,
9381           src/Container/SALOME_Component_i.hxx,
9382           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
9383           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
9384           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
9385           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
9386           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
9387           src/SALOMEDS/SALOMEDS_Study_i.cxx,
9388           src/SALOMEDS/SALOMEDS_Study_i.hxx,
9389           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
9390           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
9391           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
9392           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
9393           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
9394
9395         Issue 0013373: EDF PAL 273 : Option Single/Multi file dump
9396
9397 2011-03-25 10:59  rnv
9398
9399         * src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx:
9400
9401         Implementation of the "16566: EDF PAL 514: Implement system of units (milimeters, meters, inch...)" issue.
9402
9403 2011-03-25 10:56  rnv
9404
9405         * idl/SALOMEDS_Attributes.idl,
9406           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
9407           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
9408           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
9409           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
9410           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
9411           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
9412           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx:
9413
9414         Implementation of the "16566: EDF PAL 514: Implement system of units (milimeters, meters, inch...)" issue.
9415
9416 2011-03-25 08:56  vsr
9417
9418         * src/Container/SALOME_PyNode.py:
9419
9420         Get back Destroy() function, add notification that this function is obsolete.
9421
9422 2011-03-25 08:47  vsr
9423
9424         * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
9425
9426         Get back Destroy() function, add notification that this function is obsolete.
9427
9428 2011-03-25 08:40  vsr
9429
9430         * idl/SALOME_GenericObj.idl:
9431
9432         Get back Destroy() function, add notification that this function is obsolete.
9433
9434 2011-03-24 18:57  adam
9435
9436         * bin/runSalome.py:
9437
9438         Replace exception by warning at wake up of an active session
9439
9440 2011-03-24 16:48  adam
9441
9442         * bin/: launchConfigureParser.py, orbmodule.py, runSalome.py:
9443
9444         First implementation of the --wake-up-session option
9445
9446 2011-03-24 16:14  barate
9447
9448         * doc/salome/: kernelpypkg.dox, main.dox:
9449
9450         Changed link to Python package doc (opens in new window)
9451
9452 2011-03-22 16:03  adam
9453
9454         * bin/runSalome.py:
9455
9456         Fix a bug in args list of startGUI
9457
9458 2011-03-22 12:06  adam
9459
9460         * bin/launchConfigureParser.py:
9461
9462         Use getPortNumber from salome_utils to
9463         search the port number ...
9464         The older method is buggy.
9465
9466 2011-03-21 09:34  vsr
9467
9468         * idl/SALOMEDS.idl:
9469
9470         Bug IPAL22334: SALOME hangs-up on any GEOM operation if SALOME data server is running in standalone mode.
9471
9472 2011-03-18 12:13  adam
9473
9474         * bin/runSalome.py:
9475
9476         Fix tabulation
9477
9478 2011-03-18 11:34  adam
9479
9480         * salome_adm/cmake_files/am2cmake.py:
9481
9482         Cancel computation for ghs3d
9483
9484 2011-03-17 17:29  vsr
9485
9486         * bin/launchConfigureParser.py:
9487
9488         Introduce import functionality in SALOME configuration files
9489
9490 2011-03-17 12:05  adam
9491
9492         * salome_adm/cmake_files/am2cmake.py:
9493
9494         Activate Cancel Compute for cmake
9495
9496 2011-03-16 18:47  caremoli
9497
9498         * src/DSC/DSC_User/Datastream/Calcium/: Calcium.hxx,
9499           CalciumCxxInterface.hxx, CalciumException.hxx,
9500           CalciumInterface.hxx:
9501
9502         CCAR: remove unneeded include in Calcium.hxx and check order of includes
9503
9504 2011-03-16 13:34  vsr
9505
9506         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
9507
9508         0021133: EDF 1605 ALL: Space in dump files instead of tabulations
9509
9510 2011-03-14 12:30  adam
9511
9512         * salome_adm/cmake_files/FindPLATFORM.cmake:
9513
9514         [no log message]
9515
9516 2011-03-08 10:01  adam
9517
9518         * salome_adm/cmake_files/FindPLATFORM.cmake:
9519
9520         [no log message]
9521
9522 2011-03-07 11:43  caremoli
9523
9524         * doc/salome/: kernel_services.dox, unittests.dox:
9525
9526         CCAR: remove references to Batch in doc
9527
9528 2011-03-04 17:08  barate
9529
9530         * src/Launcher/: Launcher_Job.cxx, Launcher_Job_Command.cxx,
9531           Launcher_Job_SALOME.cxx:
9532
9533         Fixed Launcher according to libbatch changes
9534
9535 2011-03-04 16:12  vsr
9536
9537         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
9538
9539         1. SALOME::GenericObj : Destroy() -> UnRegister()
9540         2. Introduce interfaces ExportableObject and ImportableComponent interfaces
9541         3. Inherit fileTransfer from SALOME::GenericObj
9542
9543 2011-03-04 15:58  vsr
9544
9545         * src/: TestMPIContainer/Makefile.am, TestContainer/Makefile.am,
9546           SALOMEDS/SALOMEDS_ChildIterator.cxx,
9547           SALOMEDS/SALOMEDS_Driver_i.cxx,
9548           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
9549           SALOMEDS/SALOMEDS_SComponentIterator.cxx,
9550           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_Study_i.cxx,
9551           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
9552           SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
9553
9554         1. SALOME::GenericObj : Destroy() -> UnRegister()
9555         2. Introduce interfaces ExportableObject and ImportableComponent interfaces
9556         3. Inherit fileTransfer from SALOME::GenericObj
9557
9558 2011-03-04 15:55  vsr
9559
9560         * src/: KERNEL_PY/salome_genericobj.py, LifeCycleCORBA/Makefile.am,
9561           MPIContainer/Makefile.am:
9562
9563         1. SALOME::GenericObj : Destroy() -> UnRegister()
9564         2. Introduce interfaces ExportableObject and ImportableComponent interfaces
9565         3. Inherit fileTransfer from SALOME::GenericObj
9566
9567 2011-03-04 15:52  vsr
9568
9569         * src/: Container/Makefile.am, Container/SALOME_FileTransfer_i.hxx,
9570           Container/SALOME_PyNode.py, DSC/DSC_Basic/Makefile.am,
9571           DSC/DSC_Python/Makefile.am, DSC/DSC_User/Makefile.am,
9572           DSC/DSC_User/Basic/Makefile.am,
9573           DSC/DSC_User/Datastream/Calcium/Makefile.am,
9574           DSC/DSC_User/Datastream/Palm/Makefile.am,
9575           GenericObj/SALOME_GenericObj_i.cc,
9576           GenericObj/SALOME_GenericObj_i.hh:
9577
9578         1. SALOME::GenericObj : Destroy() -> UnRegister()
9579         2. Introduce interfaces ExportableObject and ImportableComponent interfaces
9580         3. Inherit fileTransfer from SALOME::GenericObj
9581
9582 2011-03-04 15:49  vsr
9583
9584         * idl/: SALOME_Component.idl, SALOME_GenericObj.idl:
9585
9586         1. SALOME::GenericObj : Destroy() -> UnRegister()
9587         2. Introduce interfaces ExportableObject and ImportableComponent interfaces
9588
9589 2011-03-04 11:49  secher
9590
9591         * src/Container/: SALOME_ContainerManager.cxx,
9592           SALOME_ContainerManager.hxx:
9593
9594         allow two Salome sessions with mpi, to run in the same time
9595
9596 2011-03-04 11:09  adam
9597
9598         * salome_adm/cmake_files/FindPLATFORM.cmake:
9599
9600         Compile with Werror
9601
9602 2011-03-04 10:39  adam
9603
9604         * salome_adm/cmake_files/am2cmake.py:
9605
9606         Definiton of MODULE variable for cmake
9607
9608 2011-03-04 09:41  adam
9609
9610         * salome_adm/cmake_files/am2cmake.py:
9611
9612         Use the -DWITH_SALOMEDS_OBSERVER flag
9613
9614 2011-03-03 18:56  adam
9615
9616         * salome_adm/cmake_files/am2cmake.py:
9617
9618         [no log message]
9619
9620 2011-03-03 17:06  eap
9621
9622         * doc/: Makefile.am, docutils/Makefile.am, salome/gui/Makefile.am:
9623
9624         0021196: [CEA 456] Integration and merge modification for debian packages
9625
9626           roll back kernel-install-without-docs.patch
9627
9628 2011-03-03 17:01  eap
9629
9630         * doc/: Makefile.am, docutils/Makefile.am, salome/gui/Makefile.am:
9631
9632         0021196: [CEA 456] Integration and merge modification for debian packages
9633
9634           roll back kernel-install-without-docs.patch
9635
9636 2011-03-03 15:39  secher
9637
9638         * src/Container/SALOME_ContainerManager.cxx:
9639
9640         clean warning message
9641
9642 2011-03-03 14:00  secher
9643
9644         * src/Container/SALOME_ContainerManager.cxx:
9645
9646         clean warning message
9647
9648 2011-03-03 08:33  eap
9649
9650         * doc/docutils/Makefile.am:
9651
9652         0021196: [CEA 456] Integration and merge modification for debian packages
9653
9654         We think that building and installing the documentation should not
9655         be the default behavior but reserved to interested users
9656
9657 2011-03-02 14:04  secher
9658
9659         * src/MPIContainer/MPIContainer_i.cxx:
9660
9661         correct bad replace
9662
9663 2011-03-02 09:52  jfa
9664
9665         * src/ModuleGenerator/IDLparser.py:
9666
9667         Rename Engines::Component to Engines::EngineComponent
9668
9669 2011-03-01 13:59  eap
9670
9671         * doc/Makefile.am:
9672
9673         0021196: [CEA 456] Integration and merge modification for debian packages
9674
9675         make docs to work in docutils
9676
9677 2011-03-01 13:42  eap
9678
9679         * src/MPIContainer/MPIObject_i.hxx:
9680
9681         0021196: [CEA 456] Integration and merge modification for debian packages
9682
9683         Add missing #include
9684
9685         +#include <map>
9686
9687 2011-03-01 13:42  eap
9688
9689         * src/KERNEL_PY/: batchmode_salome.py, salome_study.py:
9690
9691         0021196: [CEA 456] Integration and merge modification for debian packages
9692
9693         Use random instead of deprecated whrandom (gone as of python 2.5).
9694
9695 2011-03-01 13:41  eap
9696
9697         * src/HDFPersist/: HDFOI.hxx, HDFattribute.cc, HDFattribute.hxx,
9698           HDFcontainerObject.cc, HDFcontainerObject.hxx, HDFconvert.hxx,
9699           HDFdataset.cc, HDFdataset.hxx, HDFfile.cc, HDFfile.hxx,
9700           HDFgroup.cc, HDFgroup.hxx, HDFinternalObject.cc,
9701           HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx, hdfi.h:
9702
9703         0021196: [CEA 456] Integration and merge modification for debian packages
9704
9705         Remove unnecessary extern "C" instances and add one necessary one.
9706         Background: One must not #include mpi.h from within an extern "C" block.
9707         Both mpi.h and hdf5.h are C++-safe, and should be included directly without
9708         extern "C".  For details, see:
9709         http://www.open-mpi.org/community/lists/users/2007/12/4763.php
9710
9711 2011-03-01 13:41  eap
9712
9713         * src/Communication_SWIG/libSALOME_Comm.i:
9714
9715         0021196: [CEA 456] Integration and merge modification for debian packages
9716
9717         -  #undef SEEK_SET
9718         -  #undef SEEK_CUR
9719         -  #undef SEEK_END
9720          No idea why these are undef'd, they break the build when using OpenMPI.
9721
9722 2011-03-01 13:40  eap
9723
9724         * salome_adm/unix/config_files/check_mpi.m4:
9725
9726         0021196: [CEA 456] Integration and merge modification for debian packages
9727
9728           Allow a separate MPI include directory
9729
9730 2011-03-01 13:39  eap
9731
9732         * salome_adm/unix/config_files/check_cas.m4:
9733
9734         0021196: [CEA 456] Integration and merge modification for debian packages
9735
9736         Option to use the Debian/Ubuntu OpenCASCADE installation location, but
9737         preferring the OCC standard install.
9738
9739 2011-03-01 13:38  eap
9740
9741         * doc/salome/gui/Makefile.am:
9742
9743         0021196: [CEA 456] Integration and merge modification for debian packages
9744
9745         We think that building and installing the documentation should not
9746         be the default behavior but reserved to interested users
9747
9748 2011-03-01 13:38  eap
9749
9750         * bin/waitNS.sh:
9751
9752         0021196: [CEA 456] Integration and merge modification for debian packages
9753
9754         Replace >& csh construct by 2>
9755
9756         The former is recognized by bash, but not all by POSIX
9757         shells, for instance dash throws this error:
9758           sh: Syntax error: Bad fd number
9759
9760 2011-03-01 13:38  eap
9761
9762         * configure.ac, salome_adm/unix/config_files/check_hdf5.m4:
9763
9764         0021196: [CEA 456] Integration and merge modification for debian packages
9765
9766           The HDF5 library requires MPI in order to work, so the MPI check needs to go
9767           first, and the MPI variables need to be in the HDF5 check.
9768
9769 2011-03-01 13:37  eap
9770
9771         * Makefile.am:
9772
9773         0021196: [CEA 456] Integration and merge modification for debian packages
9774
9775         This patch is for cleaning completely the build directory
9776
9777 2011-03-01 13:30  eap
9778
9779         * salome_adm/unix/config_files/check_hdf5.m4:
9780
9781         move CHECK_MPI out of body of 'if' since CHECK_MPI defines AM_CONDITIONAL
9782
9783 2011-03-01 13:22  eap
9784
9785         * doc/: docutils/Makefile.am, salome/gui/Makefile.am:
9786
9787         0021196: [CEA 456] Integration and merge modification for debian packages
9788
9789         We think that building and installing the documentation should not
9790         be the default behavior but reserved to interested users
9791
9792 2011-03-01 13:19  eap
9793
9794         * doc/docutils/: conf.py, conf.py.in:
9795
9796         merge from V6_main
9797
9798 2011-03-01 13:14  eap
9799
9800         * doc/Makefile.am:
9801
9802         0021196: [CEA 456] Integration and merge modification for debian packages
9803
9804         make docs to work in docutils
9805
9806 2011-03-01 13:13  eap
9807
9808         * salome_adm/unix/config_files/check_cas.m4:
9809
9810         0021196: [CEA 456] Integration and merge modification for debian packages
9811
9812         Option to use the Debian/Ubuntu OpenCASCADE installation location, but
9813         preferring the OCC standard install.
9814
9815 2011-03-01 13:11  eap
9816
9817         * src/KERNEL_PY/: batchmode_salome.py, salome_study.py:
9818
9819         0021196: [CEA 456] Integration and merge modification for debian packages
9820
9821         Use random instead of deprecated whrandom (gone as of python 2.5).
9822
9823 2011-03-01 13:10  eap
9824
9825         * bin/waitNS.sh:
9826
9827         0021196: [CEA 456] Integration and merge modification for debian packages
9828
9829         Replace >& csh construct by 2>
9830
9831         The former is recognized by bash, but not all by POSIX
9832         shells, for instance dash throws this error:
9833           sh: Syntax error: Bad fd number
9834
9835 2011-03-01 13:10  eap
9836
9837         * Makefile.am:
9838
9839         0021196: [CEA 456] Integration and merge modification for debian packages
9840
9841         This patch is for cleaning completely the build directory
9842
9843 2011-03-01 13:09  eap
9844
9845         * src/MPIContainer/MPIObject_i.hxx:
9846
9847         0021196: [CEA 456] Integration and merge modification for debian packages
9848
9849         Add missing #include
9850
9851         +#include <map>
9852
9853 2011-03-01 13:08  eap
9854
9855         * src/Communication_SWIG/libSALOME_Comm.i:
9856
9857         0021196: [CEA 456] Integration and merge modification for debian packages
9858
9859         -  #undef SEEK_SET
9860         -  #undef SEEK_CUR
9861         -  #undef SEEK_END
9862          No idea why these are undef'd, they break the build when using OpenMPI.
9863
9864 2011-03-01 13:07  eap
9865
9866         * src/HDFPersist/: HDFOI.hxx, HDFattribute.cc, HDFattribute.hxx,
9867           HDFcontainerObject.cc, HDFcontainerObject.hxx, HDFconvert.hxx,
9868           HDFdataset.cc, HDFdataset.hxx, HDFfile.cc, HDFfile.hxx,
9869           HDFgroup.cc, HDFgroup.hxx, HDFinternalObject.cc,
9870           HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx, hdfi.h:
9871
9872         0021196: [CEA 456] Integration and merge modification for debian packages
9873
9874         Remove unnecessary extern "C" instances and add one necessary one.
9875         Background: One must not #include mpi.h from within an extern "C" block.
9876         Both mpi.h and hdf5.h are C++-safe, and should be included directly without
9877         extern "C".  For details, see:
9878         http://www.open-mpi.org/community/lists/users/2007/12/4763.php
9879
9880 2011-03-01 13:05  eap
9881
9882         * salome_adm/unix/config_files/check_hdf5.m4, configure.ac:
9883
9884         0021196: [CEA 456] Integration and merge modification for debian packages
9885
9886           The HDF5 library requires MPI in order to work, so the MPI check needs to go
9887           first, and the MPI variables need to be in the HDF5 check.
9888
9889 2011-03-01 13:03  eap
9890
9891         * salome_adm/unix/config_files/check_mpi.m4:
9892
9893         0021196: [CEA 456] Integration and merge modification for debian packages
9894
9895           Allow a separate MPI include directory
9896
9897 2011-02-28 15:50  jfa
9898
9899         * doc/salome/kernel_services.dox, idl/DSC_Engines.idl,
9900           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
9901           idl/SALOME_PACOExtension.idl, idl/SALOME_Session.idl,
9902           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
9903           idl/SALOME_TestModuleCatalog.idl, src/Container/Container_i.cxx,
9904           src/Container/SALOME_ComponentPy.py,
9905           src/Container/SALOME_Component_i.hxx,
9906           src/Container/SALOME_Container_i.hxx,
9907           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
9908           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
9909           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
9910           src/LifeCycleCORBA/TestContainerManager.cxx,
9911           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
9912           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
9913           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
9914           src/MPIContainer/MPIContainer_i.cxx,
9915           src/MPIContainer/MPIContainer_i.hxx, src/ModuleGenerator/README,
9916           src/ModuleGenerator/tests/AddComponent.idl,
9917           src/ModuleGenerator/tests/SubComponent.idl,
9918           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
9919           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
9920           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
9921           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
9922           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
9923           src/SALOMEDS/SALOMEDS_Driver_i.cxx:
9924
9925         Rename Engines::Component to Engines::EngineComponent
9926
9927 2011-02-28 12:43  adam
9928
9929         * salome_adm/unix/config_files/: ac_cxx_warnings.m4, production.m4:
9930
9931         Remove missing-declarations warnings
9932
9933 2011-02-25 08:07  vsr
9934
9935         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx:
9936
9937         Fix regression caused by introducing of GUI observers - Show/Hide children operation in GEOM module has stopped working.
9938
9939 2011-02-22 11:37  secher
9940
9941         * src/Launcher/: Launcher_Job_YACSFile.cxx,
9942           Launcher_Job_YACSFile.hxx, SALOME_Launcher.cxx:
9943
9944         the dump state for batch of yacs file is optional
9945
9946 2011-02-21 14:29  adam
9947
9948         * src/: Basics/BasicsGenericDestructor.cxx,
9949           Communication/Receivers.cxx, Communication/SALOME_Comm_i.cxx,
9950           MPIContainer/MPIContainer_i.cxx,
9951           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
9952
9953         Remove warnings
9954
9955 2011-02-21 14:23  adam
9956
9957         * salome_adm/cmake_files/FindPYTHON.cmake:
9958
9959         Add the -DWITH_NUMPY when numpy is found
9960
9961 2011-02-21 13:01  adam
9962
9963         * src/HDFPersist/HDFattrWrite.c:
9964
9965         Remove warnings
9966
9967 2011-02-18 16:29  secher
9968
9969         * src/Launcher/Launcher_Job_YACSFile.cxx:
9970
9971         dump state of batch job yacs graph
9972
9973 2011-02-18 14:28  adam
9974
9975         * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
9976
9977         windows
9978
9979 2011-02-18 12:48  adam
9980
9981         * salome_adm/cmake_files/FindPLATFORM.cmake:
9982
9983         Remove the -Wall for the moment ...
9984         Easiest to compile in -Werror mode :)
9985
9986 2011-02-18 12:47  adam
9987
9988         * salome_adm/cmake_files/FindMPI.cmake:
9989
9990         Add the -DWITHOUT_MPI=1 possibility
9991
9992 2011-02-18 12:02  ageay
9993
9994         * idl/Makefile.am:
9995
9996         Compilation of MPIObject.idl even without MPI prereq.
9997         No dependancy of MPI prereq.
9998
9999 2011-02-18 11:29  ribes
10000
10001         * src/Launcher/Launcher_Job.cxx:
10002
10003         Add NAME parameter for LibBatch
10004
10005 2011-02-17 16:09  adam
10006
10007         * salome_adm/unix/config_files/check_vtk.m4:
10008
10009         Improve the way VTK in PARAVIEW is detected
10010
10011 2011-02-17 15:57  barate
10012
10013         * src/KERNEL_PY/kernel/varlist.py:
10014
10015         Structured the objects created in varlist module
10016
10017 2011-02-17 15:23  ribes
10018
10019         * src/Launcher/Launcher.cxx:
10020
10021         Adding a new batch system LoadLeveler (IBM tool) in Launcher
10022
10023 2011-02-17 15:20  ribes
10024
10025         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
10026           SALOME_ResourcesCatalog_Parser.cxx,
10027           SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx:
10028
10029         Adding a new batch type in resource manager: ll for LoadLeveler from IBM
10030
10031 2011-02-17 14:46  ribes
10032
10033         * src/: DSC/DSC_User/Makefile.am,
10034           DSC/DSC_User/Datastream/Calcium/Makefile.am,
10035           Launcher/Makefile.am:
10036
10037         Warning!!!!
10038         DSO linking policy is changing in new linux distribution (new Fedora, Debian Wheezy)
10039
10040         See infos in:
10041         http://wiki.debian.org/ToolChain/DSOLinking
10042         http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
10043
10044 2011-02-17 08:57  rnv
10045
10046         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
10047           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
10048           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
10049           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
10050           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
10051           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
10052           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
10053           SALOMEDS/SALOMEDS_Study_i.cxx:
10054
10055         Implementation of the "20830: EDF 1357 GUI : Hide/Show Icon"
10056         (at the moment implemeted only in GEOM and SMESH modules).
10057
10058 2011-02-16 18:03  vsr
10059
10060         * bin/runSalome.py:
10061
10062         Fix regression caused by previous integration:
10063         Issue 0021190: [CEA 452] SalomeApp.xml not found on 6 main OK with 6.2.0
10064
10065 2011-02-15 14:20  adam
10066
10067         * salome_adm/cmake_files/am2cmake.py:
10068
10069         5.1.5 --> 6.3.0
10070
10071 2011-02-15 12:52  adam
10072
10073         * salome_adm/cmake_files/am2cmake.py:
10074
10075         Fix compilation for JOBMANAGER
10076
10077 2011-02-11 14:24  barate
10078
10079         * src/KERNEL_PY/kernel/varlist.py:
10080
10081         Removed studyId in salome.kernel.varlist functions (now get it from SObject)
10082
10083 2011-02-09 18:07  caremoli
10084
10085         * src/KERNEL_PY/import_hook.py:
10086
10087         CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
10088         numpy.test() (1.5.1) fails in embedded console
10089         Now if the subelement does not exist, it is ignored
10090
10091 2011-02-08 08:44  ana
10092
10093         * src/: TOOLSDS/SALOMEDS_Tool.cxx,
10094           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
10095
10096         Fix for the bug IPAL22164: Fatal error during save/load a SMESH study
10097
10098 2011-02-07 17:25  barate
10099
10100         * src/KERNEL_PY/kernel/deprecation.py:
10101
10102         Removed deprecation warning in module deprecation (sic)
10103
10104 2011-02-03 18:17  caremoli
10105
10106         * bin/appli_gen.py:
10107
10108         CCAR: remove KERNEL and GUI from the list of modules in SalomeApp.xml file
10109
10110 2011-02-03 18:16  caremoli
10111
10112         * bin/runSalome.py:
10113
10114         CCAR: remove modules that have no SalomeApp.xml file from the list of modules
10115         passed to SessionServer to reduce the number of warnings
10116
10117 2011-02-03 18:14  caremoli
10118
10119         * src/Container/Container_init_python.cxx:
10120
10121         CCAR: fix the use of Py_GetProgramName(file) when initializing embedded Python.
10122         If SALOME_PYTHON environment variable (path to the installed python executable)
10123         is defined use it for the file argument.
10124         This variable can be used in place of the dangerous use of PYTHONHOME.
10125
10126 2011-02-03 18:11  caremoli
10127
10128         * src/Launcher/SALOME_LauncherServer.cxx:
10129
10130         CCAR: add definitions to remove warnings
10131
10132 2011-02-02 13:04  eap
10133
10134         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_SObject.cxx,
10135           src/SALOMEDS/SALOMEDS_SObject.hxx,
10136           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
10137           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
10138           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
10139
10140         0021165: [CEA] Unit test crashes salome session
10141
10142         interface SObject
10143         {
10144         +
10145         +/*! Returns true if the %SObject does not belong to any %Study
10146         +*/
10147         +    boolean IsNull();
10148
10149 2011-02-01 14:40  adam
10150
10151         * salome_adm/cmake_files/: FindLIBBATCH.cmake, Makefile.am,
10152           am2cmake.py:
10153
10154         [no log message]
10155
10156 2011-01-31 15:30  ribes
10157
10158         * src/KERNEL_PY/__init__.py:
10159
10160         See Mantis bug: 0021162
10161
10162 2011-01-31 14:16  barate
10163
10164         * src/KERNEL_PY/kernel/: Makefile.am, varlist.py:
10165
10166         Added module varlist used to store and load variables lists in an object browser item
10167
10168 2011-01-28 09:00  vsr
10169
10170         * src/Launcher/Launcher.cxx:
10171
10172         Fix problem of compilation in --without-libbatch mode
10173
10174 2011-01-27 11:45  secher
10175
10176         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
10177           src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
10178           src/Launcher/SALOME_Launcher.hxx:
10179
10180         add getJobDumpState function
10181
10182 2011-01-26 10:38  vsr
10183
10184         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
10185
10186         Fix observers bug: study tree stops updating after Dump Python operation
10187
10188 2011-01-25 18:51  caremoli
10189
10190         * idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
10191           src/Container/Container_i.cxx, src/Container/SALOME_Container.py,
10192           src/Container/SALOME_Container_i.hxx,
10193           src/Container/SALOME_PyNode.py, src/KERNEL_PY/salome_pynode.py:
10194
10195         CCAR: add a CORBA object PyScriptNode that can be created in a container
10196         and is able to execute python script code in the process of the container.
10197         Creation : operation createPyScriptNode of Container interface
10198         Execution : operation execute of PyScriptNode interface
10199
10200 2011-01-25 07:49  vsr
10201
10202         * bin/: killSalome.py, killSalomeWithPort.py:
10203
10204         Fix regression: killSalomeWithPort does not kill sessions of the old versions of SALOME (pidict file format has been changed)
10205         Additional change to revert back original behavior
10206
10207 2011-01-24 16:40  vsr
10208
10209         * bin/: killSalome.py, killSalomeWithPort.py:
10210
10211         Fix regression: killSalomeWithPort does not kill sessions of the old versions of SALOME (pidict file format has been changed)
10212
10213 2011-01-24 15:18  vsr
10214
10215         * bin/killSalomeWithPort.py:
10216
10217         Fix regression caused by previous integration: killSalomeWithPort does not work locally
10218
10219 2011-01-21 18:18  caremoli
10220
10221         * bin/: appli_clean.sh, appli_gen.py,
10222           appliskel/kill_remote_containers.py:
10223
10224         CCAR: add the kill_remote_containers.py procedure to the SALOME application
10225
10226 2011-01-21 18:15  caremoli
10227
10228         * src/Container/SALOME_ContainerManager.cxx:
10229
10230         CCAR: reset temporary file name attribute
10231
10232 2011-01-21 17:06  caremoli
10233
10234         * bin/killSalomeWithPort.py:
10235
10236         CCAR: change the hostname used for pidict file on remote machines (os.getenv["NSHOST"] instead of local hostname).
10237
10238 2011-01-19 17:41  caremoli
10239
10240         * src/: KERNEL_PY/salome_notebook.py, Logger/SALOME_Trace.py,
10241           ModuleGenerator/IDLparser.py:
10242
10243         CCAR: remove tabs in python files
10244
10245 2011-01-19 17:39  caremoli
10246
10247         * bin/: killSalomeWithPort.py, launchConfigureParser.py,
10248           salome_utils.py, setenv.py, virtual_salome.py:
10249
10250         CCAR: remove tabs in python files (do not mix tabs and whitespace in indentation : only whitespace)
10251
10252 2011-01-19 16:51  caremoli
10253
10254         * src/KERNEL_PY/: __init__.py, salome_study.py:
10255
10256         CCAR: add two function to salome package to change current study in external
10257         python interpreter (setCurrentStudyId(theId=0) and setCurrentStudy(theStudy))
10258
10259 2011-01-18 13:50  ribes
10260
10261         * src/ResourcesManager/ResourcesManager.cxx:
10262
10263         If a resource name is provided to GetFittingResources, others arguments are
10264         ignored
10265
10266 2011-01-17 10:40  caremoli
10267
10268         * bin/appliskel/.bashrc:
10269
10270         CCAR: remove source ~/.bashrc in $APPLI/.bashrc as it can reset the SALOME environment
10271         if the user has customized
10272
10273 2011-01-12 17:12  caremoli
10274
10275         * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
10276           Container/SALOME_Container.cxx,
10277           DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
10278           DSC/DSC_User/Datastream/Calcium/calciumf.c:
10279
10280         CCAR: protect Fortran Calcium calls against unneeded float arguments incorrectly initialized
10281
10282 2011-01-03 19:08  caremoli
10283
10284         * src/: DF/DF_Label.cxx, SALOMEDS/SALOMEDS_Attributes.hxx,
10285           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
10286
10287         CCAR: some optimisations for SALOMEDS
10288
10289 2011-01-03 17:03  caremoli
10290
10291         * src/SALOMEDSClient/SALOMEDSClient_Observer.hxx:
10292
10293         CCAR: forgotten
10294
10295 2011-01-03 15:00  caremoli
10296
10297         * idl/SALOMEDS.idl, src/Basics/Basics_Utils.hxx,
10298           src/SALOMEDS/SALOMEDS_SObject.cxx,
10299           src/SALOMEDS/SALOMEDS_SObject.hxx,
10300           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
10301           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
10302           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
10303           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
10304           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
10305
10306         CCAR: add a new operation (SetAttrString) to SObject CORBA interface to be able
10307         to set an attribute value (of type string) without creating the intermediate Attribute object (faster)
10308
10309 2011-01-03 11:29  caremoli
10310
10311         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
10312           src/SALOMEDS/SALOMEDS_Study.hxx,
10313           src/SALOMEDS/SALOMEDS_Study_i.cxx,
10314           src/SALOMEDS/SALOMEDS_Study_i.hxx,
10315           src/SALOMEDSClient/Makefile.am,
10316           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
10317           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
10318           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
10319           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
10320           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
10321           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
10322
10323         CCAR: add Observer CORBA object to SALOMEDS module to implement a notification
10324         mechanism for modifications in study manager (to be used mainly by GUI module)
10325
10326 2010-12-24 08:48  inv
10327
10328         * Makefile.am, configure.ac, doc/docutils/Makefile.am,
10329           doc/docutils/conf.py, doc/docutils/conf.py.in:
10330
10331         Merge from V6_2_BR 23/12/2010
10332
10333 2010-12-17 09:41  barate
10334
10335         * doc/docutils/Makefile.am:
10336
10337         Fixed doc generation for python package
10338
10339 2010-12-15 08:01  inv
10340
10341         * doc/docutils/Makefile.am:
10342
10343         fix make install error caused by previous integration (builddir variable is not always defined)
10344
10345 2010-12-13 15:35  eap
10346
10347         * doc/docutils/conf.py.in:
10348
10349         file conf.py.in was added on branch V5_1_main on 2011-03-01 12:20:07 +0000
10350
10351 2010-12-13 15:35  inv
10352
10353         * doc/docutils/conf.py.in:
10354
10355         file conf.py.in was added on branch V6_main on 2010-12-24 07:48:46 +0000
10356
10357 2010-12-13 15:35  vsr
10358
10359         * doc/docutils/conf.py.in:
10360
10361         file conf.py.in was added on branch V5_1_6_BR on 2011-07-27 10:22:21 +0000
10362
10363 2010-12-13 15:33  vsr
10364
10365         * configure.ac, doc/docutils/Makefile.am, doc/docutils/conf.py,
10366           doc/docutils/conf.py.in:
10367
10368         For docutils documentation: conf.py should be generated automatically (for version number)
10369
10370 2010-12-10 16:10  vsr
10371
10372         * configure.ac:
10373
10374         New attempt to hack libtool: overrride libs search path
10375
10376 2010-12-07 10:13  vsr
10377
10378         * Makefile.am:
10379
10380         Fix make distcheck problem
10381
10382 2010-12-06 13:49  vsr
10383
10384         * salome_adm/unix/config_files/hack_libtool.m4:
10385
10386         Fix n.3 of hack_libtool utility to workaround problems on some Linux configurations
10387
10388 2010-12-05 19:13  vsr
10389
10390         * salome_adm/unix/config_files/hack_libtool.m4, configure.ac:
10391
10392         New version of hack_libtool utility to workaround problems on some Linux configurations
10393
10394 2010-11-26 16:42  vsr
10395
10396         * bin/appli_clean.sh, doc/docutils/conf.py:
10397
10398         Merge from V5_1_main 26/11/2010
10399
10400 2010-11-26 12:45  vsr
10401
10402         * doc/docutils/conf.py:
10403
10404         Merge from V5_1_5_BR branch 26/11/2010
10405
10406 2010-11-25 14:30  gdd
10407
10408         * bin/appli_clean.sh:
10409
10410         appli_clean.sh now removes the following sym links too:
10411         runSalomeScript
10412         update_catalogs.py
10413
10414 2010-11-25 12:43  vsr
10415
10416         * Makefile.am, configure.ac, bin/appli_gen.py, bin/envSalome.py,
10417           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
10418           bin/runSalome.py, bin/server.py, bin/setenv.py,
10419           bin/virtual_salome.py, bin/appliskel/getAppliPath.py,
10420           bin/appliskel/runSalomeScript, bin/appliskel/runSession,
10421           bin/appliskel/update_catalogs.py, doc/INSTALL.txt,
10422           doc/KERNEL_Services.txt, doc/Makefile.am,
10423           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
10424           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
10425           doc/userguide.txt, doc/docutils/Makefile.am,
10426           doc/docutils/conf.py, doc/docutils/docapi.rst,
10427           doc/docutils/index.rst, doc/docutils/overview.rst,
10428           doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
10429           doc/docutils/archives/KERNEL_Services.txt,
10430           doc/docutils/archives/SALOME_Application.txt,
10431           doc/docutils/archives/UnitTests.txt,
10432           doc/docutils/archives/index.txt,
10433           doc/docutils/archives/kernel_resources.txt,
10434           doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
10435           doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
10436           doc/salome/main.dox, doc/salome/gui/doxyfile.in, idl/Makefile.am,
10437           idl/SALOMEDS_Attributes.idl, idl/SALOME_ContainerManager.idl,
10438           idl/SALOME_Parametric.idl, idl/SALOME_Types.idl,
10439           resources/KERNELCatalog.xml.in,
10440           salome_adm/cmake_files/FindKERNEL.cmake,
10441           salome_adm/cmake_files/FindMPI.cmake,
10442           salome_adm/cmake_files/FindPLATFORM.cmake,
10443           salome_adm/cmake_files/FindPYTHON.cmake,
10444           salome_adm/cmake_files/FindSWIG.cmake,
10445           salome_adm/cmake_files/Makefile.am,
10446           salome_adm/cmake_files/am2cmake.py,
10447           salome_adm/cmake_files/copytree1.py,
10448           salome_adm/unix/make_common_starter.am,
10449           salome_adm/unix/config_files/Makefile.am,
10450           salome_adm/unix/config_files/check_boost.m4,
10451           salome_adm/unix/config_files/check_mpi.m4,
10452           salome_adm/unix/config_files/check_omniorb.m4,
10453           salome_adm/unix/config_files/check_openmpi.m4,
10454           salome_adm/unix/config_files/check_sphinx.m4,
10455           salome_adm/unix/config_files/check_vtk.m4,
10456           salome_adm/unix/config_files/hack_libtool.m4,
10457           salome_adm/unix/config_files/python.m4,
10458           src/Container/SALOME_Container.py,
10459           src/Container/SALOME_ContainerManager.cxx,
10460           src/Container/SALOME_PyNode.py, src/HDFPersist/HDFascii.cc,
10461           src/HDFPersist/HDFdatasetRead.c, src/KERNEL_PY/Makefile.am,
10462           src/KERNEL_PY/__init__.py, src/KERNEL_PY/import_hook.py,
10463           src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
10464           src/KERNEL_PY/kernel/__init__.py,
10465           src/KERNEL_PY/kernel/deprecation.py,
10466           src/KERNEL_PY/kernel/logconfig.py.in,
10467           src/KERNEL_PY/kernel/logger.py,
10468           src/KERNEL_PY/kernel/studyedit.py,
10469           src/KERNEL_PY/kernel/termcolor.py,
10470           src/Launcher/Launcher_Job_SALOME.cxx,
10471           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
10472           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
10473           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
10474           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
10475           src/MPIContainer/MPIContainer_i.cxx,
10476           src/NamingService/SALOME_NamingService.cxx,
10477           src/ResourcesManager/ResourcesManager.cxx,
10478           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
10479           src/SALOMEDS/SALOMEDS_Study_i.cxx,
10480           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
10481           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
10482           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
10483           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
10484           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
10485           src/TOOLSDS/SALOMEDS_Tool.cxx, src/Utils/Utils_Identity.py:
10486
10487         Merge from V5_1_main branch 24/11/2010
10488
10489 2010-11-24 14:37  inv
10490
10491         * doc/docutils/conf.py:
10492
10493         Changing Salome version from 5.1.4 to 5.1.5
10494
10495 2010-11-24 13:32  gdd
10496
10497         * salome_adm/unix/config_files/: check_hdf5.m4, check_openmpi.m4:
10498
10499         Small fix for check_openmpi.m4
10500         Improve check_hdf5.m4 to detect hdf5 parallel. If detected, check_openmpi.m4 is called.
10501
10502 2010-11-23 17:08  vsr
10503
10504         * src/SALOMEDSImpl/: SALOMEDSImpl_ScalarVariable.cxx,
10505           SALOMEDSImpl_Tool.cxx:
10506
10507         Merge from V5_1_5_BR 23/11/2010
10508
10509 2010-11-19 14:26  vsr
10510
10511         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
10512
10513         0020463: EDF 1099 SMESH: performance regression from V4 to V5
10514         Patch from Erwan ADAM.
10515
10516 2010-11-19 13:05  vsr
10517
10518         * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
10519
10520         Fix from E.Adam to solve problem for studies with string notebook variables.
10521
10522 2010-11-13 10:51  vsr
10523
10524         * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
10525           src/HDFPersist/HDFascii.cc,
10526           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
10527           src/TOOLSDS/SALOMEDS_Tool.cxx:
10528
10529         Merge from BR_WIN_INDUS_514 13/11/2010
10530
10531 2010-11-12 11:22  vsr
10532
10533         * configure.ac, bin/setenv.py, doc/docutils/Makefile.am,
10534           idl/Makefile.am, idl/SALOMEDS_Attributes.idl,
10535           salome_adm/cmake_files/FindKERNEL.cmake,
10536           salome_adm/cmake_files/FindPYTHON.cmake,
10537           salome_adm/cmake_files/FindSWIG.cmake,
10538           salome_adm/cmake_files/Makefile.am,
10539           salome_adm/cmake_files/am2cmake.py,
10540           salome_adm/cmake_files/copytree1.py,
10541           salome_adm/unix/config_files/check_omniorb.m4,
10542           salome_adm/unix/config_files/check_vtk.m4,
10543           salome_adm/unix/config_files/hack_libtool.m4,
10544           salome_adm/unix/config_files/python.m4,
10545           src/Container/SALOME_Container.py,
10546           src/Container/SALOME_ContainerManager.cxx,
10547           src/Container/SALOME_PyNode.py, src/KERNEL_PY/import_hook.py,
10548           src/KERNEL_PY/kernel/studyedit.py,
10549           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
10550           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
10551           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
10552           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
10553           src/NamingService/SALOME_NamingService.cxx,
10554           src/SALOMEDS/SALOMEDS_Study_i.cxx:
10555
10556         Merge from V5_1_5_BR branch 12/11/2010
10557
10558 2010-11-10 16:53  vsr
10559
10560         * src/: Container/Makefile.am, DSC/DSC_Basic/Makefile.am,
10561           LifeCycleCORBA/Test/Makefile.am, Logger/Makefile.am,
10562           ModuleCatalog/Makefile.am, NamingService/Test/Makefile.am,
10563           Registry/Makefile.am, SALOMEDS/Makefile.am,
10564           SALOMEDS/Test/Makefile.am, SALOMEDSImpl/Makefile.am,
10565           TestContainer/Makefile.am, Utils/Test/Makefile.am:
10566
10567         0021063: [CEA 434] Compilation using gnu compiler v4.5
10568
10569 2010-11-10 16:19  ribes
10570
10571         * src/Container/: SALOME_Container.py, SALOME_PyNode.py:
10572
10573         Bug Fix: PyNodes need to get a reference to its container on remote mode
10574
10575 2010-11-08 18:24  vsr
10576
10577         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
10578
10579         0020883: [CEA 404] Pb with old hdf
10580
10581 2010-11-03 10:27  vsr
10582
10583         * configure.ac:
10584
10585         Another fix of hack_libtool() function for latest versions of autoconf (e.g. 2.67)
10586
10587 2010-11-03 08:18  vsr
10588
10589         * salome_adm/unix/config_files/hack_libtool.m4:
10590
10591         Fix hack_libtool() function for Debian 6.0 (/bin/dash requires script to be GNU compliant)
10592
10593 2010-11-02 15:41  vsr
10594
10595         * idl/SALOMEDS_Attributes.idl:
10596
10597         Additional documentation for AttributeComment.
10598
10599 2010-10-28 10:26  secher
10600
10601         * src/: Container/SALOME_ContainerManager.cxx,
10602           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
10603           NamingService/SALOME_NamingService.cxx:
10604
10605         update kernel to take account improvement in Container GUI of YACS
10606
10607 2010-10-27 08:40  dmv
10608
10609         * src/TOOLSDS/SALOMEDS_Tool.cxx:
10610
10611         Win32: VISU: Problem with loading ASCII study
10612
10613 2010-10-26 14:06  dmv
10614
10615         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
10616
10617         Win 5.1.4: Problems with ASCII studys
10618
10619 2010-10-25 16:17  barate
10620
10621         * src/KERNEL_PY/kernel/studyedit.py:
10622
10623         Fixed bug in findItem method of study editor
10624
10625 2010-10-22 15:27  dmv
10626
10627         * src/HDFPersist/HDFascii.cc:
10628
10629         Win 5.1.4: Impossible to load VISU study with med file, that was saved in ASCII mode
10630
10631 2010-10-22 14:17  rnv
10632
10633         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
10634
10635         Get fix of the bug from the V5_1_5_BR
10636
10637 2010-10-21 15:21  caremoli
10638
10639         * src/KERNEL_PY/import_hook.py:
10640
10641         CCAR: small fix for import of modules such as matplotlib
10642
10643 2010-10-21 14:52  caremoli
10644
10645         * src/LifeCycleCORBA_SWIG/: LifeCycleCORBA.py,
10646           Test/testcontainermanager.py, Test/testresourcemanager.py:
10647
10648         CCAR: update LifeCycleCORBA module and associated tests with new IDL interface
10649
10650 2010-10-21 08:21  ana
10651
10652         * salome_adm/cmake_files/am2cmake.py:
10653
10654         Update for Win32: documentation generation
10655
10656 2010-10-20 17:53  dmv
10657
10658         * src/HDFPersist/HDFascii.cc:
10659
10660         Win 5.1.4: problem with reading ASCII study, saved in linux
10661
10662 2010-10-20 10:45  vsr
10663
10664         * salome_adm/cmake_files/copytree1.py:
10665
10666         file copytree1.py was added on branch V5_1_main on 2010-11-12 10:22:21 +0000
10667
10668 2010-10-20 10:45  vsr
10669
10670         * salome_adm/cmake_files/copytree1.py:
10671
10672         file copytree1.py was added on branch V6_main on 2010-11-25 11:43:19 +0000
10673
10674 2010-10-20 10:45  ana
10675
10676         * salome_adm/cmake_files/: Makefile.am, am2cmake.py, copytree1.py:
10677
10678         Update for Win32: documentation generation
10679
10680 2010-10-19 13:12  dmv
10681
10682         * bin/runSalome.py:
10683
10684         Windows porting
10685
10686 2010-10-19 11:54  dmv
10687
10688         * bin/server.py:
10689
10690         Corrections for Windows KERNEL tests with --xterm or -x options
10691
10692 2010-10-19 11:50  dmv
10693
10694         * bin/runSalome.py:
10695
10696         Corrections for KERNEL tests with --interp or -i options
10697
10698 2010-10-18 14:15  adam
10699
10700         * salome_adm/cmake_files/: FindPYTHON.cmake, FindSWIG.cmake:
10701
10702         numpy support. Contribution of Anthony.
10703
10704 2010-10-15 18:04  adam
10705
10706         * salome_adm/cmake_files/: FindKERNEL.cmake, am2cmake.py:
10707
10708         [no log message]
10709
10710 2010-10-15 14:04  dmv
10711
10712         * bin/launchConfigureParser.py:
10713
10714         Win32: Correct python scripts parsing
10715
10716 2010-10-14 15:31  adam
10717
10718         * salome_adm/cmake_files/am2cmake.py:
10719
10720         [no log message]
10721
10722 2010-10-14 14:53  adam
10723
10724         * salome_adm/cmake_files/am2cmake.py:
10725
10726         [no log message]
10727
10728 2010-10-14 12:38  adam
10729
10730         * bin/setenv.py, doc/docutils/Makefile.am,
10731           salome_adm/unix/config_files/python.m4:
10732
10733         Fix some tiny bug with 64 bits and :
10734         python 2.6
10735         native products
10736
10737 2010-10-14 11:26  adam
10738
10739         * salome_adm/cmake_files/: am2cmake.py, FindPYTHON.cmake:
10740
10741         [no log message]
10742
10743 2010-10-14 09:11  ana
10744
10745         * salome_adm/cmake_files/am2cmake.py:
10746
10747         Update for Win 32: documentation generation
10748
10749 2010-10-12 15:24  ana
10750
10751         * doc/salome/gui/images/: head.png, icon_about.png:
10752
10753         Fix for IPAL20852 WinTC5.1.4: no "Module help" - regress
10754
10755 2010-10-12 14:09  ana
10756
10757         * salome_adm/cmake_files/am2cmake.py:
10758
10759         Fix for IPAL20852 WinTC5.1.4: no "Module help" - regress
10760
10761 2010-10-12 10:04  rnv
10762
10763         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
10764
10765         Fix of the bugs:
10766         1) IPAL22049 TC5.1.5: Application crash at close document operation
10767         2) Bug IPAL22067 TC5.1.5: SIGSEGV exception at close application after MESH-002 scenario execution
10768
10769         Avoid double deletion of the Salome Generic Objects:
10770         1. First decrement of the reference count in the SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR();
10771         2. Second decrement of the reference count in RemovePostponed(...) method;
10772
10773 2010-10-11 12:15  vsr
10774
10775         * salome_adm/unix/config_files/check_vtk.m4:
10776
10777         0021026: EDF 1635 GUI: VTK Warnings when compiling GUI
10778
10779 2010-10-11 09:08  caremoli
10780
10781         * salome_adm/unix/config_files/check_omniorb.m4:
10782
10783         CCAR: add -nf option to omniidl -bpython
10784
10785 2010-10-05 17:02  adam
10786
10787         * salome_adm/cmake_files/am2cmake.py:
10788
10789         Fix tiny windows bug
10790
10791 2010-10-05 16:42  adam
10792
10793         * salome_adm/cmake_files/am2cmake.py:
10794
10795         5.1.4 --> 5.1.5
10796
10797 2010-10-05 14:51  adam
10798
10799         * salome_adm/cmake_files/am2cmake.py:
10800
10801         use include_directories in cmake
10802
10803 2010-10-05 14:50  adam
10804
10805         * idl/Makefile.am:
10806
10807         cmake compilation
10808
10809 2010-10-05 14:19  inv
10810
10811         * configure.ac:
10812
10813         Changing version to 5.1.5 in configure.ac"
10814
10815 2010-10-04 14:04  vsr
10816
10817         * src/: Container/SALOME_ContainerManager.cxx,
10818           HDFPersist/HDFascii.cc, HDFPersist/HDFdatasetRead.c,
10819           Utils/Utils_Identity.py:
10820
10821         Merge from BR_WIN_INDUS_514 04/10/2010
10822
10823 2010-10-04 11:27  vsr
10824
10825         * configure.ac, doc/docutils/Makefile.am:
10826
10827         Fix configure problem (caused by previous integration).
10828         AC_PROG_MKDIR_P is not available for autoconf 2.59 (Debian Sarge, Mandriva 2006)
10829
10830 2010-10-02 17:48  caremoli
10831
10832         * bin/: envSalome.py, appliskel/runSession:
10833
10834         CCAR: add a way in envSalome.py (-exec tag) to use options only for execution (needed by runSession)
10835
10836 2010-10-01 16:34  ribes
10837
10838         * src/Launcher/Launcher_Job.cxx:
10839
10840         Patch for nex LIBBATCH
10841
10842 2010-10-01 16:17  ribes
10843
10844         * src/Launcher/Launcher.cxx:
10845
10846         Patch for new version of LIBBATCH
10847
10848 2010-10-01 10:38  vsr
10849
10850         * bin/appliskel/runSalomeScript:
10851
10852         file runSalomeScript was added on branch V6_main on 2010-11-25 11:43:15 +0000
10853
10854 2010-10-01 10:38  caremoli
10855
10856         * bin/: appli_gen.py, appliskel/runSalomeScript:
10857
10858         CCAR: add a new script (runSalomeScript) in SALOME application
10859         This script can be used to execute a SALOME script on a server
10860         when the client has no SALOME installation.
10861         It copies local files on the server and execute runSession python script on the server
10862
10863 2010-09-30 17:21  barate
10864
10865         * configure.ac:
10866
10867         Fixed the fix for make distcheck
10868
10869 2010-09-30 16:29  barate
10870
10871         * src/Launcher/Launcher.cxx:
10872
10873         Fixed Launcher according to recent changes in libBatch
10874
10875 2010-09-30 13:46  vsr
10876
10877         * doc/: Makefile.am, docutils/Makefile.am:
10878
10879         Fix make distcheck errors
10880
10881 2010-09-30 11:23  barate
10882
10883         * idl/SALOME_Parametric.idl, resources/KERNELCatalog.xml.in:
10884
10885         Moved parametric types to SALOME_TYPES module and added them to the KERNEL catalog.
10886
10887 2010-09-29 18:02  barate
10888
10889         * idl/: Makefile.am, SALOME_Parametric.idl:
10890
10891         Added new type definitions for parametric computations
10892
10893 2010-09-29 18:02  vsr
10894
10895         * idl/SALOME_Parametric.idl:
10896
10897         file SALOME_Parametric.idl was added on branch V6_main on 2010-11-25 11:43:18 +0000
10898
10899 2010-09-29 14:08  barate
10900
10901         * configure.ac, doc/docutils/docapi.rst, doc/docutils/overview.rst,
10902           src/KERNEL_PY/kernel/deprecation.py,
10903           src/KERNEL_PY/kernel/logger.py,
10904           src/KERNEL_PY/kernel/studyedit.py:
10905
10906         Small fixes and doc updates in Python package
10907
10908 2010-09-29 10:22  vsr
10909
10910         * bin/appliskel/update_catalogs.py:
10911
10912         file update_catalogs.py was added on branch V6_main on 2010-11-25 11:43:16 +0000
10913
10914 2010-09-29 10:22  caremoli
10915
10916         * bin/: appli_gen.py, appliskel/getAppliPath.py,
10917           appliskel/update_catalogs.py:
10918
10919         CCAR: add a procedure (update_catalogs.py) in SALOME application that is
10920         able to get remote module catalogs and update the resources catalog (CatalogResources.xml).
10921         The description of the distributed SALOME application is found in a file named
10922         CatalogResources.base.xml (same format as the standard resources catalog).
10923
10924 2010-09-28 17:43  barate
10925
10926         * Makefile.am, doc/docutils/Makefile.am:
10927
10928         Fixed doc generation for Python package
10929
10930 2010-09-28 17:19  caremoli
10931
10932         * salome_adm/unix/config_files/check_sphinx.m4:
10933
10934         CCAR:add check_sphinx
10935
10936 2010-09-28 17:12  caremoli
10937
10938         * Makefile.am, configure.ac, bin/killSalomeWithPort.py,
10939           bin/runSalome.py, bin/virtual_salome.py, doc/INSTALL.txt,
10940           doc/KERNEL_Services.txt, doc/Makefile.am,
10941           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
10942           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
10943           doc/userguide.txt, doc/docutils/Makefile.am,
10944           doc/docutils/conf.py, doc/docutils/docapi.rst,
10945           doc/docutils/index.rst, doc/docutils/overview.rst,
10946           doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
10947           doc/docutils/archives/KERNEL_Services.txt,
10948           doc/docutils/archives/SALOME_Application.txt,
10949           doc/docutils/archives/UnitTests.txt,
10950           doc/docutils/archives/index.txt,
10951           doc/docutils/archives/kernel_resources.txt,
10952           doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
10953           doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
10954           doc/salome/main.dox, idl/Makefile.am, idl/SALOMEDS.idl,
10955           idl/SALOME_ContainerManager.idl, idl/SALOME_Types.idl,
10956           salome_adm/cmake_files/FindMPI.cmake,
10957           salome_adm/cmake_files/FindPLATFORM.cmake,
10958           salome_adm/cmake_files/am2cmake.py,
10959           salome_adm/unix/make_common_starter.am,
10960           salome_adm/unix/config_files/Makefile.am,
10961           salome_adm/unix/config_files/check_mpi.m4,
10962           salome_adm/unix/config_files/check_openmpi.m4,
10963           salome_adm/unix/config_files/check_swig.m4,
10964           salome_adm/unix/config_files/hack_libtool.m4,
10965           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
10966           src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
10967           src/KERNEL_PY/kernel/__init__.py,
10968           src/KERNEL_PY/kernel/deprecation.py,
10969           src/KERNEL_PY/kernel/logconfig.py.in,
10970           src/KERNEL_PY/kernel/logger.py,
10971           src/KERNEL_PY/kernel/studyedit.py,
10972           src/KERNEL_PY/kernel/termcolor.py, src/Launcher/Launcher.cxx,
10973           src/ResourcesManager/ResourcesManager.cxx,
10974           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
10975
10976         CCAR: update with V5_1_main (28/09)
10977
10978 2010-09-28 17:09  caremoli
10979
10980         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTarget.cxx,
10981           SALOMEDSImpl_AttributeTarget.hxx:
10982
10983         CCAR: fix a performance problem when adding references in study (AttributeTarget)
10984         replace the vector<DF_Attribute*> by a map< std::string , DF_Attribute* >
10985         where the key is the label of the DF_Attribute* to improve access time to an attribute
10986         with given label (main performance bottleneck during explode)
10987
10988 2010-09-28 16:04  vsr
10989
10990         * salome_adm/unix/config_files/check_boost.m4:
10991
10992         Improvement of boost product check procedure to allow compilation with older versions of boost (< 1.34.0)
10993
10994 2010-09-28 15:39  barate
10995
10996         * src/KERNEL_PY/kernel/studyedit.py:
10997
10998         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.
10999
11000 2010-09-28 11:21  caremoli
11001
11002         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
11003
11004         CCAR: fix bug in resources manager when hostname==localhost
11005
11006 2010-09-27 17:44  gdd
11007
11008         * src/KERNEL_PY/: __init__.py, salome.py:
11009
11010         the salome.py is declared as deprecated and raises an exception in the case where it is imported.
11011
11012 2010-09-27 16:01  gdd
11013
11014         * configure.ac, bin/virtual_salome.py, doc/INSTALL.txt,
11015           doc/KERNEL_Services.txt, doc/Makefile.am,
11016           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
11017           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
11018           doc/userguide.txt, doc/docutils/Makefile.am,
11019           doc/docutils/conf.py, doc/docutils/docapi.rst,
11020           doc/docutils/index.rst, doc/docutils/overview.rst,
11021           doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
11022           doc/docutils/archives/KERNEL_Services.txt,
11023           doc/docutils/archives/SALOME_Application.txt,
11024           doc/docutils/archives/UnitTests.txt,
11025           doc/docutils/archives/index.txt,
11026           doc/docutils/archives/kernel_resources.txt,
11027           doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
11028           doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
11029           doc/salome/main.dox, salome_adm/unix/make_common_starter.am,
11030           salome_adm/unix/config_files/Makefile.am,
11031           salome_adm/unix/config_files/check_sphinx.m4,
11032           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
11033           src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
11034           src/KERNEL_PY/kernel/__init__.py,
11035           src/KERNEL_PY/kernel/deprecation.py,
11036           src/KERNEL_PY/kernel/logconfig.py.in,
11037           src/KERNEL_PY/kernel/logger.py,
11038           src/KERNEL_PY/kernel/studyedit.py,
11039           src/KERNEL_PY/kernel/termcolor.py:
11040
11041         merge with the branch BR_pypkg (python packaging)
11042
11043 2010-09-27 14:51  gdd
11044
11045         * Makefile.am:
11046
11047         test de commit
11048
11049 2010-09-22 15:25  vsr
11050
11051         * salome_adm/unix/config_files/Makefile.am,
11052           salome_adm/unix/config_files/hack_libtool.m4, configure.ac:
11053
11054         Hack libtool (!) to workaround problem with wrong linkage of native libraries
11055
11056 2010-09-22 15:25  vsr
11057
11058         * salome_adm/unix/config_files/hack_libtool.m4:
11059
11060         file hack_libtool.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
11061
11062 2010-09-22 15:25  caremoli
11063
11064         * salome_adm/unix/config_files/hack_libtool.m4:
11065
11066         file hack_libtool.m4 was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11067
11068 2010-09-22 12:59  rnv
11069
11070         * src/: Container/SALOME_ContainerManager.cxx,
11071           Utils/Utils_Identity.py:
11072
11073         Fix for the bug 21939: WinTC5.1.4: Crash of Yacs at preparing the scheme
11074
11075 2010-09-20 14:31  adam
11076
11077         * salome_adm/cmake_files/am2cmake.py:
11078
11079         [no log message]
11080
11081 2010-09-20 10:01  adam
11082
11083         * salome_adm/cmake_files/FindPLATFORM.cmake:
11084
11085         [no log message]
11086
11087 2010-09-17 10:35  dmv
11088
11089         * src/HDFPersist/HDFdatasetRead.c:
11090
11091         IPAL21988  WinTC5.1.4: Mesh data is not restored when study saved on linux station is opened on windows
11092
11093 2010-09-15 10:33  dmv
11094
11095         * src/HDFPersist/HDFascii.cc:
11096
11097         Correct previous fix
11098
11099 2010-09-15 08:05  dmv
11100
11101         * src/HDFPersist/HDFascii.cc:
11102
11103         IPAL21917  WinTC5.1.4: Mesh and Post-Pro objects couldn't be displayed in the opened study
11104
11105 2010-09-13 16:20  dmv
11106
11107         * src/HDFPersist/HDFascii.cc:
11108
11109         IPAL20857 WinTC5.1.4: Application crash after open existing study
11110
11111 2010-09-10 09:08  vsr
11112
11113         * salome_adm/cmake_files/Makefile.am:
11114
11115         WinTC
11116
11117 2010-09-09 16:30  dmv
11118
11119         * bin/killSalomeWithPort.py:
11120
11121         IPAL21912  WinTC5.1.4: kill_salome.bat doesn't kill Salome
11122
11123 2010-09-09 16:21  vsr
11124
11125         * salome_adm/cmake_files/FindMPI.cmake:
11126
11127         WinTC
11128
11129 2010-09-09 15:34  vsr
11130
11131         * bin/runSalome.py:
11132
11133         Issue 0020924: [CEA] 6.1.0rc1 - script fails
11134         Always use execfile() function instead of "import" command to execute Python scripts (passed via -u option of runSalome.py script)
11135
11136 2010-09-09 14:00  mnt
11137
11138         * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
11139
11140         WinTC
11141
11142 2010-09-08 17:20  dmv
11143
11144         * bin/killSalomeWithPort.py:
11145
11146         IPAL21912  WinTC5.1.4: kill_salome.bat doesn't kill Salome
11147
11148 2010-09-08 15:07  ribes
11149
11150         * src/Launcher/Launcher.cxx:
11151
11152         Catch a new exception from LIBBATCH
11153
11154 2010-09-07 15:12  caremoli
11155
11156         * bin/runSalome.py:
11157
11158         CCAR: add a way to initialize ModuleCatalog server with remote catalogs.
11159         the new environment variable (SALOME_CATALOGS_PATH) is used by runSalome.py (setpath method)
11160         to add more catalogs than those given by the module_root_dir list.
11161         SALOME_CATALOGS_PATH is a list of directories separated by : (unix) where other catalogs are found.
11162
11163 2010-09-07 15:07  caremoli
11164
11165         * idl/SALOME_ContainerManager.idl,
11166           src/ResourcesManager/ResourcesManager.cxx:
11167
11168         CCAR: fix a bug in KeepOnlyResourcesWithComponent (erase an item of a vector when looping on it)
11169         and allow GiveContainer to raise SALOME exceptions to catch them in YACS
11170
11171 2010-09-07 12:07  vsr
11172
11173         * doc/salome/gui/images/icon_about.png:
11174
11175         Merge from V6_1_BR 07/09/2010
11176
11177 2010-09-03 12:07  eap
11178
11179         * src/Launcher/SALOME_Launcher.cxx:
11180
11181         fix compilation w/o LIBBBATCH
11182
11183 2010-09-03 09:25  eap
11184
11185         * salome_adm/unix/config_files/check_swig.m4:
11186
11187         Make WITH_NUMPY defined when running swig
11188
11189         +   SWIG_FLAGS="$SWIG_FLAGS -DWITH_NUMPY=WITH_NUMPY "
11190
11191 2010-09-03 09:21  eap
11192
11193         * salome_adm/unix/config_files/check_swig.m4:
11194
11195         Make WITH_NUMPY defined when running swig
11196
11197         +   SWIG_FLAGS="$SWIG_FLAGS -DWITH_NUMPY=WITH_NUMPY "
11198
11199 2010-08-31 07:49  eap
11200
11201         * src/Launcher/: Launcher.cxx, Launcher_Job.cxx:
11202
11203         fix compilation w/o LIBBBATCH
11204
11205 2010-07-30 16:08  gdd
11206
11207         * src/Launcher/: Launcher.hxx, SALOME_Launcher.cxx:
11208
11209         AR with GD: Can now load SALOME jobs
11210
11211 2010-07-30 15:26  ribes
11212
11213         * idl/SALOME_ContainerManager.idl,
11214           src/Launcher/SALOME_Launcher.cxx,
11215           src/Launcher/SALOME_Launcher.hxx:
11216
11217         - can remove an observer
11218         - notify a new observer of jobs in launcher
11219
11220 2010-07-29 15:34  boulant
11221
11222         * doc/: docutils/Makefile.am, salome/kernelpypkg.dox:
11223
11224         Updating documentation to integrate the python package documentation
11225
11226 2010-07-29 15:11  vsr
11227
11228         * doc/docutils/archives/KERNEL_Services.txt:
11229
11230         file KERNEL_Services.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11231
11232 2010-07-29 15:11  vsr
11233
11234         * doc/docutils/archives/SALOME_Application.txt:
11235
11236         file SALOME_Application.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11237
11238 2010-07-29 15:11  vsr
11239
11240         * doc/docutils/archives/UnitTests.txt:
11241
11242         file UnitTests.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11243
11244 2010-07-29 15:11  vsr
11245
11246         * doc/docutils/archives/index.txt:
11247
11248         file index.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11249
11250 2010-07-29 15:11  vsr
11251
11252         * doc/docutils/archives/kernel_resources.txt:
11253
11254         file kernel_resources.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11255
11256 2010-07-29 15:11  vsr
11257
11258         * doc/docutils/archives/rst.css:
11259
11260         file rst.css was added on branch V6_main on 2010-11-25 11:43:17 +0000
11261
11262 2010-07-29 15:11  vsr
11263
11264         * doc/docutils/archives/txt2html.sh:
11265
11266         file txt2html.sh was added on branch V6_main on 2010-11-25 11:43:17 +0000
11267
11268 2010-07-29 15:11  vsr
11269
11270         * doc/docutils/archives/userguide.txt:
11271
11272         file userguide.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11273
11274 2010-07-29 15:11  gdd
11275
11276         * doc/docutils/archives/KERNEL_Services.txt:
11277
11278         file KERNEL_Services.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11279
11280 2010-07-29 15:11  gdd
11281
11282         * doc/docutils/archives/SALOME_Application.txt:
11283
11284         file SALOME_Application.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11285
11286 2010-07-29 15:11  gdd
11287
11288         * doc/docutils/archives/UnitTests.txt:
11289
11290         file UnitTests.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11291
11292 2010-07-29 15:11  gdd
11293
11294         * doc/docutils/archives/index.txt:
11295
11296         file index.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11297
11298 2010-07-29 15:11  gdd
11299
11300         * doc/docutils/archives/kernel_resources.txt:
11301
11302         file kernel_resources.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11303
11304 2010-07-29 15:11  gdd
11305
11306         * doc/docutils/archives/rst.css:
11307
11308         file rst.css was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11309
11310 2010-07-29 15:11  gdd
11311
11312         * doc/docutils/archives/txt2html.sh:
11313
11314         file txt2html.sh was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11315
11316 2010-07-29 15:11  gdd
11317
11318         * doc/docutils/archives/userguide.txt:
11319
11320         file userguide.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11321
11322 2010-07-29 15:11  caremoli
11323
11324         * doc/docutils/archives/KERNEL_Services.txt:
11325
11326         file KERNEL_Services.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11327
11328 2010-07-29 15:11  caremoli
11329
11330         * doc/docutils/archives/SALOME_Application.txt:
11331
11332         file SALOME_Application.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11333
11334 2010-07-29 15:11  caremoli
11335
11336         * doc/docutils/archives/UnitTests.txt:
11337
11338         file UnitTests.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11339
11340 2010-07-29 15:11  caremoli
11341
11342         * doc/docutils/archives/index.txt:
11343
11344         file index.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11345
11346 2010-07-29 15:11  caremoli
11347
11348         * doc/docutils/archives/kernel_resources.txt:
11349
11350         file kernel_resources.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11351
11352 2010-07-29 15:11  caremoli
11353
11354         * doc/docutils/archives/rst.css:
11355
11356         file rst.css was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11357
11358 2010-07-29 15:11  caremoli
11359
11360         * doc/docutils/archives/txt2html.sh:
11361
11362         file txt2html.sh was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11363
11364 2010-07-29 15:11  caremoli
11365
11366         * doc/docutils/archives/userguide.txt:
11367
11368         file userguide.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11369
11370 2010-07-29 15:11  boulant
11371
11372         * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
11373           UnitTests.txt, index.txt, kernel_resources.txt, rst.css,
11374           txt2html.sh, userguide.txt, docutils/salomepypkg.rst,
11375           docutils/archives/INSTALL.txt,
11376           docutils/archives/KERNEL_Services.txt,
11377           docutils/archives/SALOME_Application.txt,
11378           docutils/archives/UnitTests.txt, docutils/archives/index.txt,
11379           docutils/archives/kernel_resources.txt,
11380           docutils/archives/rst.css, docutils/archives/txt2html.sh,
11381           docutils/archives/userguide.txt:
11382
11383         Updating documentation to integrate the geom python package documentation
11384
11385 2010-07-29 15:11  vsr
11386
11387         * doc/docutils/archives/INSTALL.txt:
11388
11389         file INSTALL.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
11390
11391 2010-07-29 15:11  gdd
11392
11393         * doc/docutils/archives/INSTALL.txt:
11394
11395         file INSTALL.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11396
11397 2010-07-29 15:11  caremoli
11398
11399         * doc/docutils/archives/INSTALL.txt:
11400
11401         file INSTALL.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11402
11403 2010-07-29 15:03  boulant
11404
11405         * doc/salome/: kernelpypkg.dox, main.dox:
11406
11407         Updating documentation to integrate the geom python package documentation
11408
11409 2010-07-29 15:03  vsr
11410
11411         * doc/salome/kernelpypkg.dox:
11412
11413         file kernelpypkg.dox was added on branch V6_main on 2010-11-25 11:43:18 +0000
11414
11415 2010-07-29 15:03  gdd
11416
11417         * doc/salome/kernelpypkg.dox:
11418
11419         file kernelpypkg.dox was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11420
11421 2010-07-29 15:03  caremoli
11422
11423         * doc/salome/kernelpypkg.dox:
11424
11425         file kernelpypkg.dox was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11426
11427 2010-07-29 11:33  boulant
11428
11429         * doc/docutils/: Makefile.am, docapi.rst, index.rst, overview.rst,
11430           salomepypkg.rst:
11431
11432         documentation completude
11433
11434 2010-07-29 11:33  vsr
11435
11436         * doc/docutils/overview.rst:
11437
11438         file overview.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
11439
11440 2010-07-29 11:33  gdd
11441
11442         * doc/docutils/overview.rst:
11443
11444         file overview.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11445
11446 2010-07-29 11:33  caremoli
11447
11448         * doc/docutils/overview.rst:
11449
11450         file overview.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11451
11452 2010-07-29 11:32  boulant
11453
11454         * salome_adm/unix/config_files/Makefile.am:
11455
11456         Add check_sphinx.m4 file
11457
11458 2010-07-28 18:33  ribes
11459
11460         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
11461           src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
11462           src/Launcher/SALOME_Launcher.hxx,
11463           src/ResourcesManager/SALOME_ResourcesManager.cxx:
11464
11465         - Major update for launcher:
11466           - some bugs are fixed
11467           - save and load methods
11468           - can have observers
11469
11470 2010-07-28 16:05  ribes
11471
11472         * src/Launcher/Launcher.cxx:
11473
11474         - Adaptation of Launcher for new LIBBATCH
11475
11476 2010-07-28 15:07  vsr
11477
11478         * doc/docutils/Makefile.am:
11479
11480         file Makefile.am was added on branch V6_main on 2010-11-25 11:43:16 +0000
11481
11482 2010-07-28 15:07  vsr
11483
11484         * src/KERNEL_PY/kernel/Makefile.am:
11485
11486         file Makefile.am was added on branch V6_main on 2010-11-25 11:43:20 +0000
11487
11488 2010-07-28 15:07  vsr
11489
11490         * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
11491
11492         file __init__.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
11493
11494 2010-07-28 15:07  vsr
11495
11496         * salome_adm/unix/config_files/check_sphinx.m4:
11497
11498         file check_sphinx.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
11499
11500 2010-07-28 15:07  vsr
11501
11502         * doc/docutils/conf.py:
11503
11504         file conf.py was added on branch V6_main on 2010-11-25 11:43:16 +0000
11505
11506 2010-07-28 15:07  vsr
11507
11508         * src/KERNEL_PY/kernel/deprecation.py:
11509
11510         file deprecation.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
11511
11512 2010-07-28 15:07  vsr
11513
11514         * doc/docutils/docapi.rst:
11515
11516         file docapi.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
11517
11518 2010-07-28 15:07  vsr
11519
11520         * doc/docutils/index.rst:
11521
11522         file index.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
11523
11524 2010-07-28 15:07  vsr
11525
11526         * src/KERNEL_PY/kernel/logconfig.py.in:
11527
11528         file logconfig.py.in was added on branch V6_main on 2010-11-25 11:43:20 +0000
11529
11530 2010-07-28 15:07  vsr
11531
11532         * src/KERNEL_PY/kernel/logger.py:
11533
11534         file logger.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
11535
11536 2010-07-28 15:07  vsr
11537
11538         * doc/docutils/salomepypkg.rst:
11539
11540         file salomepypkg.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
11541
11542 2010-07-28 15:07  vsr
11543
11544         * src/KERNEL_PY/kernel/studyedit.py:
11545
11546         file studyedit.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
11547
11548 2010-07-28 15:07  vsr
11549
11550         * src/KERNEL_PY/kernel/termcolor.py:
11551
11552         file termcolor.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
11553
11554 2010-07-28 15:07  gdd
11555
11556         * doc/docutils/Makefile.am:
11557
11558         file Makefile.am was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11559
11560 2010-07-28 15:07  gdd
11561
11562         * src/KERNEL_PY/kernel/Makefile.am:
11563
11564         file Makefile.am was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11565
11566 2010-07-28 15:07  gdd
11567
11568         * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
11569
11570         file __init__.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11571
11572 2010-07-28 15:07  gdd
11573
11574         * salome_adm/unix/config_files/check_sphinx.m4:
11575
11576         file check_sphinx.m4 was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11577
11578 2010-07-28 15:07  gdd
11579
11580         * doc/docutils/conf.py:
11581
11582         file conf.py was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11583
11584 2010-07-28 15:07  gdd
11585
11586         * src/KERNEL_PY/kernel/deprecation.py:
11587
11588         file deprecation.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11589
11590 2010-07-28 15:07  gdd
11591
11592         * doc/docutils/docapi.rst:
11593
11594         file docapi.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11595
11596 2010-07-28 15:07  gdd
11597
11598         * doc/docutils/index.rst:
11599
11600         file index.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11601
11602 2010-07-28 15:07  gdd
11603
11604         * src/KERNEL_PY/kernel/logconfig.py.in:
11605
11606         file logconfig.py.in was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11607
11608 2010-07-28 15:07  gdd
11609
11610         * src/KERNEL_PY/kernel/logger.py:
11611
11612         file logger.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11613
11614 2010-07-28 15:07  gdd
11615
11616         * doc/docutils/salomepypkg.rst:
11617
11618         file salomepypkg.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
11619
11620 2010-07-28 15:07  gdd
11621
11622         * src/KERNEL_PY/kernel/studyedit.py:
11623
11624         file studyedit.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11625
11626 2010-07-28 15:07  gdd
11627
11628         * src/KERNEL_PY/kernel/termcolor.py:
11629
11630         file termcolor.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
11631
11632 2010-07-28 15:07  caremoli
11633
11634         * doc/docutils/Makefile.am:
11635
11636         file Makefile.am was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11637
11638 2010-07-28 15:07  caremoli
11639
11640         * src/KERNEL_PY/kernel/Makefile.am:
11641
11642         file Makefile.am was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11643
11644 2010-07-28 15:07  caremoli
11645
11646         * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
11647
11648         file __init__.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11649
11650 2010-07-28 15:07  caremoli
11651
11652         * salome_adm/unix/config_files/check_sphinx.m4:
11653
11654         file check_sphinx.m4 was added on branch BR_Observer on 2010-09-28 15:19:58 +0000
11655
11656 2010-07-28 15:07  caremoli
11657
11658         * doc/docutils/conf.py:
11659
11660         file conf.py was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11661
11662 2010-07-28 15:07  caremoli
11663
11664         * src/KERNEL_PY/kernel/deprecation.py:
11665
11666         file deprecation.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11667
11668 2010-07-28 15:07  caremoli
11669
11670         * doc/docutils/docapi.rst:
11671
11672         file docapi.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11673
11674 2010-07-28 15:07  caremoli
11675
11676         * doc/docutils/index.rst:
11677
11678         file index.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11679
11680 2010-07-28 15:07  caremoli
11681
11682         * src/KERNEL_PY/kernel/logconfig.py.in:
11683
11684         file logconfig.py.in was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11685
11686 2010-07-28 15:07  caremoli
11687
11688         * src/KERNEL_PY/kernel/logger.py:
11689
11690         file logger.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11691
11692 2010-07-28 15:07  caremoli
11693
11694         * doc/docutils/salomepypkg.rst:
11695
11696         file salomepypkg.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
11697
11698 2010-07-28 15:07  caremoli
11699
11700         * src/KERNEL_PY/kernel/studyedit.py:
11701
11702         file studyedit.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11703
11704 2010-07-28 15:07  caremoli
11705
11706         * src/KERNEL_PY/kernel/termcolor.py:
11707
11708         file termcolor.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11709
11710 2010-07-28 15:07  boulant
11711
11712         * configure.ac, bin/virtual_salome.py, doc/Makefile.am,
11713           doc/docutils/Makefile.am, doc/docutils/conf.py,
11714           doc/docutils/docapi.rst, doc/docutils/index.rst,
11715           doc/docutils/salomepypkg.rst,
11716           salome_adm/unix/make_common_starter.am,
11717           salome_adm/unix/config_files/check_sphinx.m4,
11718           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
11719           src/KERNEL_PY/kernel/Makefile.am,
11720           src/KERNEL_PY/kernel/__init__.py,
11721           src/KERNEL_PY/kernel/deprecation.py,
11722           src/KERNEL_PY/kernel/logconfig.py.in,
11723           src/KERNEL_PY/kernel/logger.py,
11724           src/KERNEL_PY/kernel/studyedit.py,
11725           src/KERNEL_PY/kernel/termcolor.py:
11726
11727         Integration of python packaging: initialization
11728
11729 2010-07-28 14:49  boulant
11730
11731         * src/KERNEL_PY/salome.py:
11732
11733         test commit
11734
11735 2010-07-23 13:35  ribes
11736
11737         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
11738           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
11739           src/Launcher/Launcher_Job.hxx,
11740           src/Launcher/Launcher_Job_Command.cxx,
11741           src/Launcher/Launcher_Job_PythonSALOME.cxx,
11742           src/Launcher/Launcher_Job_YACSFile.cxx,
11743           src/Launcher/SALOME_Launcher.cxx,
11744           src/Launcher/SALOME_Launcher.hxx,
11745           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
11746
11747         - Launcher can now load and save its jobs list
11748         - Added introspection methods for Launcher
11749
11750 2010-07-22 15:28  adam
11751
11752         * salome_adm/cmake_files/am2cmake.py:
11753
11754         [no log message]
11755
11756 2010-07-21 10:57  adam
11757
11758         * salome_adm/cmake_files/am2cmake.py:
11759
11760         [no log message]
11761
11762 2010-07-21 10:34  adam
11763
11764         * salome_adm/cmake_files/am2cmake.py:
11765
11766         add make test for UNIT_TEST_PROG
11767
11768 2010-07-19 14:58  vsr
11769
11770         * idl/SALOME_Types.idl:
11771
11772         file SALOME_Types.idl was added on branch V6_main on 2010-11-25 11:43:18 +0000
11773
11774 2010-07-19 14:58  caremoli
11775
11776         * idl/SALOME_Types.idl:
11777
11778         file SALOME_Types.idl was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
11779
11780 2010-07-19 14:58  ageay
11781
11782         * idl/: Makefile.am, SALOME_Types.idl:
11783
11784         Compatibility between MEDCouplingCorabaServant.idl and MED.idl.
11785
11786 2010-07-15 17:34  ageay
11787
11788         * salome_adm/unix/config_files/: check_mpi.m4, check_openmpi.m4:
11789
11790         Addition of MPI2 conditional compilation tag.
11791
11792 2010-07-15 17:02  ageay
11793
11794         * salome_adm/cmake_files/FindMPI.cmake:
11795
11796         Addition of MPI2 conditional compilation tag.
11797
11798 2010-07-13 15:46  adam
11799
11800         * salome_adm/cmake_files/FindMPI.cmake:
11801
11802         [no log message]
11803
11804 2010-07-07 16:34  caremoli
11805
11806         * bin/launchConfigureParser.py, bin/runSalome.py, idl/SALOMEDS.idl,
11807           salome_adm/cmake_files/am2cmake.py, src/KERNEL_PY/import_hook.py,
11808           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
11809           src/SALOMEDS/SALOMEDS_Study_i.cxx,
11810           src/SALOMEDS/SALOMEDS_Study_i.hxx,
11811           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
11812           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
11813           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
11814           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
11815
11816         CCAR: various optimisations and synchronize with V5_1_main branch
11817
11818 2010-07-06 12:32  adam
11819
11820         * bin/: launchConfigureParser.py, runSalome.py:
11821
11822         add --valgrind-session to runSalome
11823
11824 2010-07-06 12:22  adam
11825
11826         * salome_adm/cmake_files/am2cmake.py:
11827
11828         Remove some traces
11829
11830 2010-07-05 12:07  caremoli
11831
11832         * src/KERNEL_PY/import_hook.py:
11833
11834         CCAR: add keywords arguments to import_hook (python 2.6)
11835
11836 2010-07-02 11:07  dmv
11837
11838         * doc/salome/gui/images/icon_about.png:
11839
11840         Update 6x splash
11841
11842 2010-07-01 11:28  adam
11843
11844         * salome_adm/cmake_files/am2cmake.py:
11845
11846         Compatibility hxx2salome
11847
11848 2010-07-01 08:59  caremoli
11849
11850         * doc/salome/gui/doxyfile.in, salome_adm/cmake_files/am2cmake.py,
11851           src/Container/SALOME_ContainerManager.cxx,
11852           src/Launcher/Launcher_Job.cxx,
11853           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
11854
11855         CCAR: update from V5_1_main branch
11856
11857 2010-06-29 18:33  caremoli
11858
11859         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTarget.cxx,
11860           SALOMEDSImpl_AttributeTarget.hxx:
11861
11862         CCAR: optimisation of attributetarget for large number of refs
11863
11864 2010-06-29 18:32  caremoli
11865
11866         * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx:
11867
11868         CCAR:remove modify notification
11869
11870 2010-06-29 16:33  adam
11871
11872         * salome_adm/cmake_files/am2cmake.py:
11873
11874         add compatibility with :
11875          o netgen (full)
11876          o hxx2salome (partial)
11877
11878 2010-06-24 12:05  secher
11879
11880         * src/Container/SALOME_ContainerManager.cxx:
11881
11882         improvement about OMPI_URI_FILE
11883
11884 2010-06-23 15:25  vsr
11885
11886         * src/Launcher/Launcher_Job.cxx:
11887
11888         Merge from V5_1_4_BR 23/06/2010
11889
11890 2010-06-22 16:19  vsr
11891
11892         * doc/salome/gui/doxyfile.in:
11893
11894         Improve documentation generation mechanism
11895
11896 2010-06-18 15:00  caremoli
11897
11898         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
11899
11900         CCAR: notification already done in GenericAttribute
11901
11902 2010-06-18 14:42  caremoli
11903
11904         * src/SALOMEDSImpl/: SALOMEDSImpl_ScalarVariable.cxx,
11905           SALOMEDSImpl_StudyBuilder.cxx:
11906
11907         CCAR:synchronize with V5_1_main head
11908
11909 2010-06-18 14:14  caremoli
11910
11911         * salome_adm/unix/config_files/check_vtk.m4,
11912           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx:
11913
11914         CCAR:synchronize with V5_1_main head
11915
11916 2010-06-18 09:15  caremoli
11917
11918         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
11919           MPIContainer/MPIContainer_i.cxx,
11920           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
11921           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
11922           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
11923           ResourcesManager/SALOME_ResourcesManager.cxx:
11924
11925         CCAR:synchronize with V5_1_main head
11926
11927 2010-06-18 09:11  caremoli
11928
11929         * src/: Container/SALOME_ContainerManager.cxx,
11930           Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
11931           Launcher/Launcher_Job.cxx, Launcher/Launcher_Job_SALOME.cxx:
11932
11933         CCAR:synchronize with V5_1_main head
11934
11935 2010-06-18 09:05  caremoli
11936
11937         * salome_adm/: cmake_files/FindPLATFORM.cmake,
11938           cmake_files/am2cmake.py, unix/config_files/Makefile.am,
11939           unix/config_files/check_vtk.m4:
11940
11941         CCAR:synchronize with V5_1_main head
11942
11943 2010-06-17 19:22  caremoli
11944
11945         * src/: SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study_i.cxx,
11946           SALOMEDS/SALOMEDS_Study_i.hxx,
11947           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
11948           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
11949           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
11950           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
11951
11952         CCAR: add a notifier object in SALOMEDS so that CORBA is no more called in SALOMEDSImpl
11953
11954 2010-06-17 14:54  vsr
11955
11956         * salome_adm/unix/config_files/: Makefile.am, check_vtk.m4:
11957
11958         Fix compilation problem of the GEOM module in --without-gui mode
11959
11960 2010-06-17 14:34  secher
11961
11962         * src/MPIContainer/MPIContainer_i.cxx:
11963
11964         debug of shutdown mpi container
11965
11966 2010-06-15 09:45  secher
11967
11968         * src/: Container/SALOME_ContainerManager.cxx,
11969           Launcher/Launcher_Job_SALOME.cxx:
11970
11971         debug for mpi container
11972
11973 2010-06-14 10:30  barate
11974
11975         * src/Launcher/Launcher_Job.cxx:
11976
11977         Fixed time unit for parameter MAXWALLTIME (minutes instead of seconds)
11978
11979 2010-06-11 15:06  adam
11980
11981         * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
11982
11983         cmake on 64 bits
11984
11985 2010-06-11 11:18  barate
11986
11987         * src/Launcher/Launcher.cxx:
11988
11989         Fixed Launcher to allow compilation with libBatch 1.1.0
11990
11991 2010-06-11 10:23  barate
11992
11993         * src/Launcher/Launcher.cxx:
11994
11995         Fixed Launcher to allow compilation with libBatch 1.1.0
11996
11997 2010-06-10 09:47  vsr
11998
11999         * salome_adm/cmake_files/FindMPI.cmake,
12000           salome_adm/cmake_files/FindPLATFORM.cmake,
12001           salome_adm/cmake_files/Makefile.am,
12002           salome_adm/cmake_files/am2cmake.py,
12003           src/Container/SALOME_ContainerManager.cxx,
12004           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
12005           src/Launcher/Launcher_Job.cxx,
12006           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
12007           src/MPIContainer/MPIContainer_i.cxx,
12008           src/MPIContainer/MPIContainer_i.hxx,
12009           src/MPIContainer/MPIObject_i.cxx,
12010           src/MPIContainer/MPIObject_i.hxx,
12011           src/MPIContainer/SALOME_MPIContainer.cxx,
12012           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
12013           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
12014           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
12015           src/ResourcesManager/SALOME_ResourcesManager.cxx,
12016           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
12017           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
12018           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
12019           src/TestMPIContainer/TestMPIComponentEngine.cxx,
12020           src/TestMPIContainer/TestMPIComponentEngine.hxx:
12021
12022         Merge from V5_1_main 10/06/2010
12023
12024 2010-06-09 16:57  vsr
12025
12026         * src/: Container/SALOME_ContainerManager.cxx,
12027           Launcher/Launcher_Job.cxx,
12028           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
12029           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
12030           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
12031
12032         Merge from V5_1_4_BR (5_1_4rc2) 09/06/2010
12033
12034 2010-06-09 16:17  secher
12035
12036         * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
12037           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
12038           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
12039           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
12040           ResourcesManager/SALOME_ResourcesManager.cxx:
12041
12042         add ccc batch manager for CCRT machines
12043
12044 2010-06-07 08:27  vsr
12045
12046         * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
12047
12048         0020902: EDF 1416 GUI: Problems in the Notebook and with Setcolor when switching the locale
12049
12050 2010-06-03 19:45  nge
12051
12052         * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
12053           SALOMEDSImpl_StudyBuilder.cxx:
12054
12055         Draft : First bversion of Observer on kernel side.
12056
12057 2010-06-02 14:04  nge
12058
12059         * src/SALOMEDSImpl/: Makefile.am, SALOMEDSImpl_Study.cxx:
12060
12061         Remove useless SALOMEDS include
12062
12063 2010-06-01 20:03  nge
12064
12065         * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_Study.cxx,
12066           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDSClient/Makefile.am,
12067           SALOMEDSClient/SALOMEDSClient_Observer.hxx,
12068           SALOMEDSClient/SALOMEDSClient_Study.hxx,
12069           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
12070           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
12071
12072         Completing the study observer on the server side
12073
12074 2010-06-01 20:03  caremoli
12075
12076         * src/SALOMEDSClient/SALOMEDSClient_Observer.hxx:
12077
12078         file SALOMEDSClient_Observer.hxx was added on branch V6_main on 2011-01-03 16:03:43 +0000
12079
12080 2010-06-01 09:39  caremoli
12081
12082         * src/Container/SALOME_ContainerManager.cxx:
12083
12084         CCAR: add the Container Manager pid to the name of container log file to separate
12085         log files from different sessions with same user on same resource and same container name
12086
12087 2010-05-25 17:55  caremoli
12088
12089         * idl/Makefile.am, idl/SALOMEDS.idl, idl/SALOME_Observer.idl,
12090           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Study_i.cxx,
12091           src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDSImpl/Makefile.am,
12092           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
12093           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
12094
12095         CCAR: first version of Observer
12096
12097 2010-05-24 13:54  inv
12098
12099         * configure.ac:
12100
12101         Changing version to 6.1.0
12102
12103 2010-05-24 12:58  vsr
12104
12105         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
12106
12107         0020883: [CEA 404] Pb with old hdf
12108
12109 2010-05-21 10:40  barate
12110
12111         * src/Launcher/Launcher_Job.cxx:
12112
12113         Changed memory unit for batch jobs to megabytes
12114
12115 2010-05-19 16:42  caremoli
12116
12117         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
12118
12119         CCAR:bad error redirection
12120
12121 2010-05-18 16:36  secher
12122
12123         * src/: MPIContainer/MPIContainer_i.cxx,
12124           MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
12125           MPIContainer/MPIObject_i.hxx,
12126           MPIContainer/SALOME_MPIContainer.cxx,
12127           TestMPIContainer/TestMPIComponentEngine.cxx,
12128           TestMPIContainer/TestMPIComponentEngine.hxx:
12129
12130         only default constructor is needed for MPIObject
12131
12132 2010-05-17 14:08  adam
12133
12134         * salome_adm/cmake_files/: FindMPI.cmake, Makefile.am, am2cmake.py:
12135
12136         [no log message]
12137
12138 2010-05-17 14:08  vsr
12139
12140         * salome_adm/cmake_files/FindMPI.cmake:
12141
12142         file FindMPI.cmake was added on branch BR_WIN_INDUS_514 on 2010-09-09 14:21:52 +0000
12143
12144 2010-05-17 14:08  vsr
12145
12146         * salome_adm/cmake_files/FindMPI.cmake:
12147
12148         file FindMPI.cmake was added on branch V6_main on 2010-06-10 07:47:14 +0000
12149
12150 2010-05-17 11:51  adam
12151
12152         * salome_adm/cmake_files/am2cmake.py:
12153
12154         [no log message]
12155
12156 2010-05-17 11:44  adam
12157
12158         * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
12159
12160         [no log message]
12161
12162 2010-05-14 20:17  vsr
12163
12164         * doc/salome/: gui/static/header.html, tui/static/header.html:
12165
12166         Merge from V5_1_main branch 14/05/2010
12167
12168 2010-05-14 18:12  vsr
12169
12170         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
12171
12172         0020867: EDF 1407 KERNEL: Error while saving study from script
12173
12174 2010-05-14 15:12  vsr
12175
12176         * idl/SALOMEDS_Attributes.idl,
12177           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
12178           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
12179           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
12180           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
12181           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
12182           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
12183           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
12184           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
12185           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
12186           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
12187           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
12188           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
12189           src/SALOMEDSClient/Makefile.am,
12190           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
12191           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
12192           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
12193           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
12194           src/SALOMEDSImpl/Makefile.am,
12195           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
12196           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
12197           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
12198           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
12199           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
12200           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
12201           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx:
12202
12203         Merge results of improvement 0020465: CEA 335] sort tables in visualisation mode from V5_1_main branch
12204
12205 2010-05-14 14:57  vsr
12206
12207         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
12208           build_cmake.bat, build_configure, clean_configure, configure.ac,
12209           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
12210           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
12211           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
12212           bin/appli_install.sh, bin/config_appli.xml, bin/createAppli.sh,
12213           bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
12214           bin/launchConfigureParser.py, bin/launchSalome.py,
12215           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
12216           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
12217           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
12218           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
12219           bin/server.py, bin/setenv.py, bin/showNS.py,
12220           bin/shutdownSalome.py, bin/virtual_salome.py,
12221           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
12222           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
12223           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
12224           bin/appliskel/runAppli, bin/appliskel/runConsole,
12225           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
12226           bin/appliskel/runSession, bin/appliskel/runTests,
12227           bin/appliskel/searchFreePort.sh, doc/Makefile.am,
12228           doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
12229           doc/salome/Makefile.am, doc/salome/salome_application.dox,
12230           doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
12231           doc/salome/gui/images/head.png,
12232           doc/salome/gui/static/doxygen.css,
12233           doc/salome/gui/static/footer.html,
12234           doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
12235           doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
12236           doc/salome/tui/images/head.png, doc/salome/tui/input/index.dox,
12237           doc/salome/tui/static/doxygen.css,
12238           doc/salome/tui/static/footer.html,
12239           doc/salome/tui/static/header.html.in, idl/Calcium_Ports.idl.in,
12240           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
12241           idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
12242           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
12243           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
12244           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
12245           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
12246           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
12247           idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
12248           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
12249           idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
12250           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
12251           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
12252           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
12253           idl/SALOME_TestMPIComponent.idl,
12254           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
12255           idl/TypeData.idl, idl/nstest.idl, resources/KERNELCatalog.xml.in,
12256           resources/Makefile.am, salome_adm/Makefile.am,
12257           salome_adm/cmake_files/FindBOOST.cmake,
12258           salome_adm/cmake_files/FindCPPUNIT.cmake,
12259           salome_adm/cmake_files/FindDOXYGEN.cmake,
12260           salome_adm/cmake_files/FindHDF5.cmake,
12261           salome_adm/cmake_files/FindKERNEL.cmake,
12262           salome_adm/cmake_files/FindLIBXML2.cmake,
12263           salome_adm/cmake_files/FindOMNIORB.cmake,
12264           salome_adm/cmake_files/FindPLATFORM.cmake,
12265           salome_adm/cmake_files/FindPTHREADS.cmake,
12266           salome_adm/cmake_files/FindPYTHON.cmake,
12267           salome_adm/cmake_files/FindSWIG.cmake,
12268           salome_adm/cmake_files/Makefile.am,
12269           salome_adm/cmake_files/am2cmake.py,
12270           salome_adm/cmake_files/install_and_compile_python_file.cmake,
12271           salome_adm/cmake_files/install_python_from_idl.cmake,
12272           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
12273           salome_adm/unix/make_common_starter.am,
12274           salome_adm/unix/DEPRECATED/Doxyfile,
12275           salome_adm/unix/DEPRECATED/F77config.h.in,
12276           salome_adm/unix/DEPRECATED/config.h.in,
12277           salome_adm/unix/DEPRECATED/depend.in,
12278           salome_adm/unix/DEPRECATED/envScript.in,
12279           salome_adm/unix/DEPRECATED/make_commence.in,
12280           salome_adm/unix/DEPRECATED/make_conclude.in,
12281           salome_adm/unix/DEPRECATED/make_module.in,
12282           salome_adm/unix/DEPRECATED/make_omniorb.in,
12283           salome_adm/unix/config_files/Makefile.am,
12284           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
12285           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
12286           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
12287           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
12288           salome_adm/unix/config_files/ac_cxx_option.m4,
12289           salome_adm/unix/config_files/ac_cxx_template_options.m4,
12290           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
12291           salome_adm/unix/config_files/ac_cxx_warnings.m4,
12292           salome_adm/unix/config_files/ac_linker_options.m4,
12293           salome_adm/unix/config_files/acx_pthread.m4,
12294           salome_adm/unix/config_files/check_Kernel.m4,
12295           salome_adm/unix/config_files/check_boost.m4,
12296           salome_adm/unix/config_files/check_calcium.m4,
12297           salome_adm/unix/config_files/check_cas.m4,
12298           salome_adm/unix/config_files/check_corba.m4,
12299           salome_adm/unix/config_files/check_cppunit.m4,
12300           salome_adm/unix/config_files/check_f77.m4,
12301           salome_adm/unix/config_files/check_hdf5.m4,
12302           salome_adm/unix/config_files/check_htmlgen.m4,
12303           salome_adm/unix/config_files/check_lam.m4,
12304           salome_adm/unix/config_files/check_libbatch.m4,
12305           salome_adm/unix/config_files/check_libxml.m4,
12306           salome_adm/unix/config_files/check_mpi.m4,
12307           salome_adm/unix/config_files/check_mpich.m4,
12308           salome_adm/unix/config_files/check_omniorb.m4,
12309           salome_adm/unix/config_files/check_openmpi.m4,
12310           salome_adm/unix/config_files/check_paco++.m4,
12311           salome_adm/unix/config_files/check_sockets.m4,
12312           salome_adm/unix/config_files/check_swig.m4,
12313           salome_adm/unix/config_files/check_withihm.m4,
12314           salome_adm/unix/config_files/enable_pthreads.m4,
12315           salome_adm/unix/config_files/local_install.m4,
12316           salome_adm/unix/config_files/production.m4,
12317           salome_adm/unix/config_files/pyembed.m4,
12318           salome_adm/unix/config_files/python.m4,
12319           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
12320           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
12321           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
12322           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
12323           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
12324           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
12325           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
12326           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
12327           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
12328           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
12329           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
12330           src/Basics/BasicsGenericDestructor.hxx,
12331           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
12332           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
12333           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
12334           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
12335           src/Communication/Makefile.am,
12336           src/Communication/MatrixClient.cxx,
12337           src/Communication/MatrixClient.hxx,
12338           src/Communication/MultiCommException.cxx,
12339           src/Communication/MultiCommException.hxx,
12340           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
12341           src/Communication/ReceiverFactory.cxx,
12342           src/Communication/ReceiverFactory.hxx,
12343           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
12344           src/Communication/SALOMEMultiComm.cxx,
12345           src/Communication/SALOMEMultiComm.hxx,
12346           src/Communication/SALOME_Comm_i.cxx,
12347           src/Communication/SALOME_Comm_i.hxx,
12348           src/Communication/SALOME_Communication.hxx,
12349           src/Communication/SALOME_Matrix_i.cxx,
12350           src/Communication/SALOME_Matrix_i.hxx,
12351           src/Communication/SenderFactory.cxx,
12352           src/Communication/SenderFactory.hxx,
12353           src/Communication_SWIG/Makefile.am,
12354           src/Communication_SWIG/libSALOME_Comm.i,
12355           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
12356           src/Container/Container_init_python.cxx,
12357           src/Container/Container_init_python.hxx,
12358           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
12359           src/Container/SALOME_Component_i.hxx,
12360           src/Container/SALOME_Container.cxx,
12361           src/Container/SALOME_Container.hxx,
12362           src/Container/SALOME_Container.py,
12363           src/Container/SALOME_ContainerManager.cxx,
12364           src/Container/SALOME_ContainerManager.hxx,
12365           src/Container/SALOME_ContainerPy.py,
12366           src/Container/SALOME_Container_SignalsHandler.cxx,
12367           src/Container/SALOME_Container_i.hxx,
12368           src/Container/SALOME_FileRef_i.cxx,
12369           src/Container/SALOME_FileRef_i.hxx,
12370           src/Container/SALOME_FileTransfer_i.cxx,
12371           src/Container/SALOME_FileTransfer_i.hxx,
12372           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
12373           src/Container/Salome_file_i.hxx,
12374           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
12375           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
12376           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
12377           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
12378           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
12379           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
12380           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
12381           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
12382           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
12383           src/DSC/DSC_Basic/DSC_Basic.hxx,
12384           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
12385           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
12386           src/DSC/DSC_Basic/DSC_interface.hxx,
12387           src/DSC/DSC_Basic/Makefile.am,
12388           src/DSC/DSC_Basic/PortProperties_i.cxx,
12389           src/DSC/DSC_Basic/PortProperties_i.hxx,
12390           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
12391           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
12392           src/DSC/DSC_Python/dsccalcium.py,
12393           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
12394           src/DSC/DSC_User/Superv_Component_i.cxx,
12395           src/DSC/DSC_User/Superv_Component_i.hxx,
12396           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
12397           src/DSC/DSC_User/port_factory.hxx,
12398           src/DSC/DSC_User/provides_port.cxx,
12399           src/DSC/DSC_User/provides_port.hxx,
12400           src/DSC/DSC_User/test_DSC_Exception.cxx,
12401           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
12402           src/DSC/DSC_User/Basic/Makefile.am,
12403           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
12404           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
12405           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
12406           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
12407           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
12408           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
12409           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
12410           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
12411           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
12412           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
12413           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
12414           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
12415           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
12416           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
12417           src/DSC/DSC_User/Datastream/GenericPort.hxx,
12418           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
12419           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
12420           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
12421           src/DSC/DSC_User/Datastream/Makefile.am,
12422           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
12423           src/DSC/DSC_User/Datastream/fake.cc,
12424           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
12425           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
12426           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
12427           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
12428           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
12429           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
12430           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
12431           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
12432           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
12433           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
12434           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
12435           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
12436           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
12437           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
12438           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
12439           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
12440           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
12441           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
12442           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
12443           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
12444           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
12445           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
12446           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
12447           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
12448           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
12449           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
12450           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
12451           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
12452           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
12453           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
12454           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
12455           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
12456           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
12457           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
12458           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
12459           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
12460           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
12461           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
12462           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
12463           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
12464           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
12465           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
12466           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
12467           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
12468           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
12469           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
12470           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
12471           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
12472           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
12473           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
12474           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
12475           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
12476           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
12477           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
12478           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
12479           src/DSC/DSC_User/Datastream/Calcium/version.h,
12480           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
12481           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
12482           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
12483           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
12484           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
12485           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
12486           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
12487           src/DSC/ParallelDSC/Makefile.am,
12488           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
12489           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
12490           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
12491           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
12492           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
12493           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
12494           src/GenericObj/Makefile.am,
12495           src/GenericObj/SALOME_GenericObj_i.cc,
12496           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
12497           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
12498           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
12499           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
12500           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
12501           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
12502           src/HDFPersist/HDFattribute.hxx,
12503           src/HDFPersist/HDFcontainerObject.cc,
12504           src/HDFPersist/HDFcontainerObject.hxx,
12505           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
12506           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
12507           src/HDFPersist/HDFdatasetClose.c,
12508           src/HDFPersist/HDFdatasetCreate.c,
12509           src/HDFPersist/HDFdatasetGetDim.c,
12510           src/HDFPersist/HDFdatasetGetOrder.c,
12511           src/HDFPersist/HDFdatasetGetSize.c,
12512           src/HDFPersist/HDFdatasetGetType.c,
12513           src/HDFPersist/HDFdatasetGetnDim.c,
12514           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
12515           src/HDFPersist/HDFdatasetWrite.c,
12516           src/HDFPersist/HDFerrorModeLock.c,
12517           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
12518           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
12519           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
12520           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
12521           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
12522           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
12523           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
12524           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
12525           src/HDFPersist/HDFinternalObject.cc,
12526           src/HDFPersist/HDFinternalObject.hxx,
12527           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
12528           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
12529           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
12530           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
12531           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
12532           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
12533           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
12534           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
12535           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
12536           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
12537           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
12538           src/KERNEL_PY/iparameters.py,
12539           src/KERNEL_PY/kernel_shared_modules.py,
12540           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
12541           src/KERNEL_PY/salome_ComponentGUI.py,
12542           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
12543           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
12544           src/KERNEL_PY/salome_pynode.py,
12545           src/KERNEL_PY/salome_shared_modules.py,
12546           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
12547           src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
12548           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
12549           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
12550           src/Launcher/Launcher_Job.hxx,
12551           src/Launcher/Launcher_Job_Command.cxx,
12552           src/Launcher/Launcher_Job_Command.hxx,
12553           src/Launcher/Launcher_Job_PythonSALOME.cxx,
12554           src/Launcher/Launcher_Job_PythonSALOME.hxx,
12555           src/Launcher/Launcher_Job_SALOME.cxx,
12556           src/Launcher/Launcher_Job_SALOME.hxx,
12557           src/Launcher/Launcher_Job_YACSFile.cxx,
12558           src/Launcher/Launcher_Job_YACSFile.hxx,
12559           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
12560           src/Launcher/SALOME_Launcher.cxx,
12561           src/Launcher/SALOME_Launcher.hxx,
12562           src/Launcher/SALOME_LauncherServer.cxx,
12563           src/Launcher/SALOME_Launcher_Handler.cxx,
12564           src/Launcher/SALOME_Launcher_Handler.hxx,
12565           src/Launcher/SALOME_Launcher_Parser.cxx,
12566           src/Launcher/SALOME_Launcher_Parser.hxx,
12567           src/Launcher/SALOME_Launcher_defs.hxx,
12568           src/LifeCycleCORBA/Makefile.am,
12569           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
12570           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
12571           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
12572           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
12573           src/LifeCycleCORBA/TestContainerManager.cxx,
12574           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
12575           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
12576           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
12577           src/LifeCycleCORBA/Test/Makefile.am,
12578           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
12579           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
12580           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
12581           src/LifeCycleCORBA_SWIG/Makefile.am,
12582           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
12583           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
12584           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
12585           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
12586           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
12587           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
12588           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
12589           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
12590           src/Logger/SALOME_Logger_Server.hxx,
12591           src/Logger/SALOME_Logger_Server_main.cxx,
12592           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
12593           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
12594           src/Logger/Test/TestKiller.py,
12595           src/MPIContainer/MPIContainer_i.cxx,
12596           src/MPIContainer/MPIContainer_i.hxx,
12597           src/MPIContainer/MPIObject_i.cxx,
12598           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
12599           src/MPIContainer/SALOME_MPIContainer.cxx,
12600           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
12601           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
12602           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
12603           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
12604           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
12605           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
12606           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
12607           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
12608           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
12609           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
12610           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
12611           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
12612           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
12613           src/ModuleCatalog/TestModuleCatalog.py,
12614           src/ModuleGenerator/IDLparser.py,
12615           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
12616           src/ModuleGenerator/testIDLparser.in,
12617           src/ModuleGenerator/tests/AddComponent.idl,
12618           src/ModuleGenerator/tests/SubComponent.idl,
12619           src/ModuleGenerator/tests/Truc2Component.idl,
12620           src/ModuleGenerator/tests/TrucComponent.idl,
12621           src/ModuleGenerator/tests/test1.sh,
12622           src/ModuleGenerator/tests/test1b.sh,
12623           src/ModuleGenerator/tests/test2.sh,
12624           src/ModuleGenerator/tests/test3.sh,
12625           src/ModuleGenerator/tests/test4.sh,
12626           src/ModuleGenerator/tests/test5.sh,
12627           src/NOTIFICATION_SWIG/Makefile.am,
12628           src/NOTIFICATION_SWIG/NOTIFICATION.i,
12629           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
12630           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
12631           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
12632           src/NamingService/Makefile.am,
12633           src/NamingService/NamingService_WaitForServerReadiness.cxx,
12634           src/NamingService/NamingService_WaitForServerReadiness.hxx,
12635           src/NamingService/SALOME_NamingService.cxx,
12636           src/NamingService/SALOME_NamingService.hxx,
12637           src/NamingService/SALOME_NamingService.i,
12638           src/NamingService/SALOME_NamingServicePy.py,
12639           src/NamingService/SALOME_NamingService_defs.hxx,
12640           src/NamingService/ServiceUnreachable.cxx,
12641           src/NamingService/ServiceUnreachable.hxx,
12642           src/NamingService/Test/Makefile.am,
12643           src/NamingService/Test/NamingServiceTest.cxx,
12644           src/NamingService/Test/NamingServiceTest.hxx,
12645           src/NamingService/Test/TestNamingService.cxx,
12646           src/NamingService/Test/TestNamingService.py,
12647           src/Notification/CosNotifyShorthands.h,
12648           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
12649           src/Notification/NOTIFICATION.hxx,
12650           src/Notification/NOTIFICATION_Consumer.cxx,
12651           src/Notification/NOTIFICATION_Consumer.hxx,
12652           src/Notification/NOTIFICATION_Supplier.cxx,
12653           src/Notification/NOTIFICATION_Supplier.hxx,
12654           src/Notification/SALOME_NOTIFICATION.hxx,
12655           src/ParallelContainer/Makefile.am,
12656           src/ParallelContainer/Parallel_Salome_file_i.cxx,
12657           src/ParallelContainer/Parallel_Salome_file_i.hxx,
12658           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
12659           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
12660           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
12661           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
12662           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
12663           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
12664           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
12665           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
12666           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
12667           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
12668           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
12669           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
12670           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
12671           src/Registry/RegistryConnexion.hxx,
12672           src/Registry/RegistryService.cxx,
12673           src/Registry/RegistryService.hxx,
12674           src/Registry/SALOME_Registry.hxx,
12675           src/Registry/SALOME_Registry_Server.cxx,
12676           src/ResourcesManager/Makefile.am,
12677           src/ResourcesManager/ResourcesManager.cxx,
12678           src/ResourcesManager/ResourcesManager.hxx,
12679           src/ResourcesManager/ResourcesManager_Defs.hxx,
12680           src/ResourcesManager/SALOME_LoadRateManager.cxx,
12681           src/ResourcesManager/SALOME_LoadRateManager.hxx,
12682           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
12683           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
12684           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
12685           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
12686           src/ResourcesManager/SALOME_ResourcesManager.cxx,
12687           src/ResourcesManager/SALOME_ResourcesManager.hxx,
12688           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
12689           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
12690           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
12691           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
12692           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
12693           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
12694           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
12695           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
12696           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
12697           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
12698           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
12699           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
12700           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
12701           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
12702           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
12703           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
12704           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
12705           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
12706           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
12707           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
12708           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
12709           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
12710           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
12711           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
12712           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
12713           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
12714           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
12715           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
12716           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
12717           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
12718           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
12719           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
12720           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
12721           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
12722           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
12723           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
12724           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
12725           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
12726           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
12727           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
12728           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
12729           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
12730           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
12731           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
12732           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
12733           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
12734           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
12735           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
12736           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
12737           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
12738           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
12739           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
12740           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
12741           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
12742           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
12743           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
12744           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
12745           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
12746           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
12747           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
12748           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
12749           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
12750           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
12751           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
12752           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
12753           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
12754           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
12755           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
12756           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
12757           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
12758           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
12759           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
12760           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
12761           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
12762           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
12763           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
12764           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
12765           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
12766           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
12767           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
12768           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
12769           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
12770           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
12771           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
12772           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
12773           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
12774           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
12775           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
12776           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
12777           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
12778           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
12779           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
12780           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
12781           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
12782           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
12783           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
12784           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
12785           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
12786           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
12787           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
12788           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
12789           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
12790           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
12791           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
12792           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
12793           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
12794           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
12795           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
12796           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
12797           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
12798           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
12799           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
12800           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
12801           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
12802           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
12803           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
12804           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
12805           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
12806           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
12807           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
12808           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
12809           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
12810           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
12811           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
12812           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
12813           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
12814           src/SALOMEDS/SALOMEDS_Attributes.hxx,
12815           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
12816           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
12817           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
12818           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
12819           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
12820           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
12821           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
12822           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
12823           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
12824           src/SALOMEDS/SALOMEDS_Client.cxx,
12825           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
12826           src/SALOMEDS/SALOMEDS_Defines.hxx,
12827           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
12828           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
12829           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
12830           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
12831           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
12832           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
12833           src/SALOMEDS/SALOMEDS_IParameters.cxx,
12834           src/SALOMEDS/SALOMEDS_IParameters.hxx,
12835           src/SALOMEDS/SALOMEDS_SComponent.cxx,
12836           src/SALOMEDS/SALOMEDS_SComponent.hxx,
12837           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
12838           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
12839           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
12840           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
12841           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
12842           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
12843           src/SALOMEDS/SALOMEDS_SObject.cxx,
12844           src/SALOMEDS/SALOMEDS_SObject.hxx,
12845           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
12846           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
12847           src/SALOMEDS/SALOMEDS_Server.cxx,
12848           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
12849           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
12850           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
12851           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
12852           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
12853           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
12854           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
12855           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
12856           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
12857           src/SALOMEDS/SALOMEDS_Study_i.cxx,
12858           src/SALOMEDS/SALOMEDS_Study_i.hxx,
12859           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
12860           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
12861           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
12862           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
12863           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
12864           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
12865           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
12866           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
12867           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
12868           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
12869           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
12870           src/SALOMEDS/Test/SALOMEDSTest.cxx,
12871           src/SALOMEDS/Test/SALOMEDSTest.hxx,
12872           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
12873           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
12874           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
12875           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
12876           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
12877           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
12878           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
12879           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
12880           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
12881           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
12882           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
12883           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
12884           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
12885           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
12886           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
12887           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
12888           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
12889           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
12890           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
12891           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
12892           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
12893           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
12894           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
12895           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
12896           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
12897           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
12898           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
12899           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
12900           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
12901           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
12902           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
12903           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
12904           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
12905           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
12906           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
12907           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
12908           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
12909           src/SALOMEDS/Test/TestSALOMEDS.cxx,
12910           src/SALOMEDS/Test/TestSALOMEDS.py,
12911           src/SALOMEDSClient/Makefile.am,
12912           src/SALOMEDSClient/SALOMEDSClient.hxx,
12913           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
12914           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
12915           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
12916           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
12917           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
12918           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
12919           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
12920           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
12921           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
12922           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
12923           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
12924           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
12925           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
12926           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
12927           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
12928           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
12929           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
12930           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
12931           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
12932           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
12933           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
12934           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
12935           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
12936           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
12937           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
12938           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
12939           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
12940           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
12941           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
12942           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
12943           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
12944           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
12945           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
12946           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
12947           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
12948           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
12949           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
12950           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
12951           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
12952           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
12953           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
12954           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
12955           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
12956           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
12957           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
12958           src/SALOMEDSImpl/Makefile.am,
12959           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
12960           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
12961           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
12962           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
12963           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
12964           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
12965           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
12966           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
12967           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
12968           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
12969           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
12970           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
12971           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
12972           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
12973           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
12974           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
12975           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
12976           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
12977           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
12978           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
12979           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
12980           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
12981           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
12982           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
12983           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
12984           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
12985           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
12986           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
12987           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
12988           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
12989           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
12990           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
12991           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
12992           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
12993           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
12994           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
12995           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
12996           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
12997           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
12998           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
12999           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
13000           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
13001           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
13002           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
13003           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
13004           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
13005           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
13006           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
13007           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
13008           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
13009           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
13010           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
13011           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
13012           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
13013           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
13014           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
13015           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
13016           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
13017           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
13018           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
13019           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
13020           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
13021           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
13022           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
13023           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
13024           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
13025           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
13026           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
13027           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
13028           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
13029           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
13030           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
13031           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
13032           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
13033           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
13034           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
13035           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
13036           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
13037           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
13038           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
13039           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
13040           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
13041           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
13042           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
13043           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
13044           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
13045           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
13046           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
13047           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
13048           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
13049           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
13050           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
13051           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
13052           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
13053           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
13054           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
13055           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
13056           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
13057           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
13058           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
13059           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
13060           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
13061           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
13062           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
13063           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
13064           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
13065           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
13066           src/SALOMELocalTrace/BaseTraceCollector.cxx,
13067           src/SALOMELocalTrace/BaseTraceCollector.hxx,
13068           src/SALOMELocalTrace/FileTraceCollector.cxx,
13069           src/SALOMELocalTrace/FileTraceCollector.hxx,
13070           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
13071           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
13072           src/SALOMELocalTrace/LocalTraceCollector.cxx,
13073           src/SALOMELocalTrace/LocalTraceCollector.hxx,
13074           src/SALOMELocalTrace/Makefile.am,
13075           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
13076           src/SALOMELocalTrace/utilities.h,
13077           src/SALOMELocalTrace/Test/Makefile.am,
13078           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
13079           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
13080           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
13081           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
13082           src/SALOMETraceCollector/Makefile.am,
13083           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
13084           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
13085           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
13086           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
13087           src/SALOMETraceCollector/Test/Makefile.am,
13088           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
13089           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
13090           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
13091           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
13092           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
13093           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
13094           src/TestContainer/SALOME_TestComponent.hxx,
13095           src/TestContainer/SALOME_TestComponentPy.py,
13096           src/TestContainer/SALOME_TestComponent_i.cxx,
13097           src/TestContainer/SALOME_TestComponent_i.hxx,
13098           src/TestContainer/TestComponentPy.py,
13099           src/TestContainer/TestContainer.cxx,
13100           src/TestContainer/TestLogger.cxx,
13101           src/TestContainer/TestLogger.py,
13102           src/TestMPIContainer/Makefile.am,
13103           src/TestMPIContainer/TestMPIComponentEngine.cxx,
13104           src/TestMPIContainer/TestMPIComponentEngine.hxx,
13105           src/TestMPIContainer/TestMPIContainer.cxx,
13106           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
13107           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
13108           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
13109           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
13110           src/Utils/Utils_CommException.cxx,
13111           src/Utils/Utils_CommException.hxx,
13112           src/Utils/Utils_CorbaException.hxx,
13113           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
13114           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
13115           src/Utils/Utils_ExceptHandlers.cxx,
13116           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
13117           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
13118           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
13119           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
13120           src/Utils/Utils_SALOME_Exception.cxx,
13121           src/Utils/Utils_SALOME_Exception.hxx,
13122           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
13123           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
13124           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
13125           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
13126           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
13127           src/win32pm/win32pm.c:
13128
13129         Merge from V5_1_main 14/05/2010
13130
13131 2010-05-07 14:24  vsr
13132
13133         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
13134           build_cmake.bat, build_configure, clean_configure, configure.ac,
13135           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
13136           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
13137           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
13138           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
13139           bin/killSalome.py, bin/killSalomeWithPort.py,
13140           bin/launchConfigureParser.py, bin/launchSalome.py,
13141           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
13142           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
13143           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
13144           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
13145           bin/server.py, bin/setenv.py, bin/showNS.py,
13146           bin/shutdownSalome.py, bin/virtual_salome.py,
13147           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
13148           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
13149           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
13150           bin/appliskel/runAppli, bin/appliskel/runConsole,
13151           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
13152           bin/appliskel/runSession, bin/appliskel/runTests,
13153           bin/appliskel/searchFreePort.sh, doc/Makefile.am,
13154           doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
13155           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
13156           doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
13157           doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
13158           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
13159           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
13160           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
13161           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
13162           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
13163           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
13164           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
13165           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
13166           idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
13167           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
13168           idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
13169           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
13170           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
13171           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
13172           idl/SALOME_TestMPIComponent.idl,
13173           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
13174           idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
13175           salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
13176           salome_adm/cmake_files/FindCPPUNIT.cmake,
13177           salome_adm/cmake_files/FindDOXYGEN.cmake,
13178           salome_adm/cmake_files/FindHDF5.cmake,
13179           salome_adm/cmake_files/FindKERNEL.cmake,
13180           salome_adm/cmake_files/FindLIBXML2.cmake,
13181           salome_adm/cmake_files/FindOMNIORB.cmake,
13182           salome_adm/cmake_files/FindPLATFORM.cmake,
13183           salome_adm/cmake_files/FindPTHREADS.cmake,
13184           salome_adm/cmake_files/FindPYTHON.cmake,
13185           salome_adm/cmake_files/FindSWIG.cmake,
13186           salome_adm/cmake_files/Makefile.am,
13187           salome_adm/cmake_files/am2cmake.py,
13188           salome_adm/cmake_files/install_and_compile_python_file.cmake,
13189           salome_adm/cmake_files/install_python_from_idl.cmake,
13190           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
13191           salome_adm/unix/make_common_starter.am,
13192           salome_adm/unix/DEPRECATED/Doxyfile,
13193           salome_adm/unix/DEPRECATED/F77config.h.in,
13194           salome_adm/unix/DEPRECATED/config.h.in,
13195           salome_adm/unix/DEPRECATED/depend.in,
13196           salome_adm/unix/DEPRECATED/envScript.in,
13197           salome_adm/unix/DEPRECATED/make_commence.in,
13198           salome_adm/unix/DEPRECATED/make_conclude.in,
13199           salome_adm/unix/DEPRECATED/make_module.in,
13200           salome_adm/unix/DEPRECATED/make_omniorb.in,
13201           salome_adm/unix/config_files/Makefile.am,
13202           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
13203           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
13204           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
13205           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
13206           salome_adm/unix/config_files/ac_cxx_option.m4,
13207           salome_adm/unix/config_files/ac_cxx_template_options.m4,
13208           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
13209           salome_adm/unix/config_files/ac_cxx_warnings.m4,
13210           salome_adm/unix/config_files/ac_linker_options.m4,
13211           salome_adm/unix/config_files/acx_pthread.m4,
13212           salome_adm/unix/config_files/check_Kernel.m4,
13213           salome_adm/unix/config_files/check_boost.m4,
13214           salome_adm/unix/config_files/check_calcium.m4,
13215           salome_adm/unix/config_files/check_cas.m4,
13216           salome_adm/unix/config_files/check_corba.m4,
13217           salome_adm/unix/config_files/check_cppunit.m4,
13218           salome_adm/unix/config_files/check_f77.m4,
13219           salome_adm/unix/config_files/check_hdf5.m4,
13220           salome_adm/unix/config_files/check_htmlgen.m4,
13221           salome_adm/unix/config_files/check_lam.m4,
13222           salome_adm/unix/config_files/check_libbatch.m4,
13223           salome_adm/unix/config_files/check_libxml.m4,
13224           salome_adm/unix/config_files/check_mpi.m4,
13225           salome_adm/unix/config_files/check_mpich.m4,
13226           salome_adm/unix/config_files/check_omniorb.m4,
13227           salome_adm/unix/config_files/check_openmpi.m4,
13228           salome_adm/unix/config_files/check_paco++.m4,
13229           salome_adm/unix/config_files/check_sockets.m4,
13230           salome_adm/unix/config_files/check_swig.m4,
13231           salome_adm/unix/config_files/check_withihm.m4,
13232           salome_adm/unix/config_files/enable_pthreads.m4,
13233           salome_adm/unix/config_files/local_install.m4,
13234           salome_adm/unix/config_files/production.m4,
13235           salome_adm/unix/config_files/pyembed.m4,
13236           salome_adm/unix/config_files/python.m4,
13237           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
13238           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
13239           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
13240           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
13241           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
13242           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
13243           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
13244           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
13245           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
13246           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
13247           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
13248           src/Basics/BasicsGenericDestructor.hxx,
13249           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
13250           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
13251           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
13252           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
13253           src/Communication/Makefile.am,
13254           src/Communication/MatrixClient.cxx,
13255           src/Communication/MatrixClient.hxx,
13256           src/Communication/MultiCommException.cxx,
13257           src/Communication/MultiCommException.hxx,
13258           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
13259           src/Communication/ReceiverFactory.cxx,
13260           src/Communication/ReceiverFactory.hxx,
13261           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
13262           src/Communication/SALOMEMultiComm.cxx,
13263           src/Communication/SALOMEMultiComm.hxx,
13264           src/Communication/SALOME_Comm_i.cxx,
13265           src/Communication/SALOME_Comm_i.hxx,
13266           src/Communication/SALOME_Communication.hxx,
13267           src/Communication/SALOME_Matrix_i.cxx,
13268           src/Communication/SALOME_Matrix_i.hxx,
13269           src/Communication/SenderFactory.cxx,
13270           src/Communication/SenderFactory.hxx,
13271           src/Communication_SWIG/Makefile.am,
13272           src/Communication_SWIG/libSALOME_Comm.i,
13273           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
13274           src/Container/Container_init_python.cxx,
13275           src/Container/Container_init_python.hxx,
13276           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
13277           src/Container/SALOME_Component_i.hxx,
13278           src/Container/SALOME_Container.cxx,
13279           src/Container/SALOME_Container.hxx,
13280           src/Container/SALOME_Container.py,
13281           src/Container/SALOME_ContainerManager.cxx,
13282           src/Container/SALOME_ContainerManager.hxx,
13283           src/Container/SALOME_ContainerPy.py,
13284           src/Container/SALOME_Container_SignalsHandler.cxx,
13285           src/Container/SALOME_Container_i.hxx,
13286           src/Container/SALOME_FileRef_i.cxx,
13287           src/Container/SALOME_FileRef_i.hxx,
13288           src/Container/SALOME_FileTransfer_i.cxx,
13289           src/Container/SALOME_FileTransfer_i.hxx,
13290           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
13291           src/Container/Salome_file_i.hxx,
13292           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
13293           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
13294           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
13295           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
13296           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
13297           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
13298           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
13299           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
13300           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
13301           src/DSC/DSC_Basic/DSC_Basic.hxx,
13302           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
13303           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
13304           src/DSC/DSC_Basic/DSC_interface.hxx,
13305           src/DSC/DSC_Basic/Makefile.am,
13306           src/DSC/DSC_Basic/PortProperties_i.cxx,
13307           src/DSC/DSC_Basic/PortProperties_i.hxx,
13308           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
13309           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
13310           src/DSC/DSC_Python/dsccalcium.py,
13311           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
13312           src/DSC/DSC_User/Superv_Component_i.cxx,
13313           src/DSC/DSC_User/Superv_Component_i.hxx,
13314           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
13315           src/DSC/DSC_User/port_factory.hxx,
13316           src/DSC/DSC_User/provides_port.cxx,
13317           src/DSC/DSC_User/provides_port.hxx,
13318           src/DSC/DSC_User/test_DSC_Exception.cxx,
13319           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
13320           src/DSC/DSC_User/Basic/Makefile.am,
13321           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
13322           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
13323           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
13324           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
13325           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
13326           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
13327           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
13328           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
13329           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
13330           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
13331           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
13332           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
13333           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
13334           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
13335           src/DSC/DSC_User/Datastream/GenericPort.hxx,
13336           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
13337           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
13338           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
13339           src/DSC/DSC_User/Datastream/Makefile.am,
13340           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
13341           src/DSC/DSC_User/Datastream/fake.cc,
13342           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
13343           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
13344           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
13345           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
13346           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
13347           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
13348           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
13349           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
13350           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
13351           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
13352           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
13353           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
13354           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
13355           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
13356           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
13357           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
13358           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
13359           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
13360           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
13361           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
13362           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
13363           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
13364           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
13365           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
13366           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
13367           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
13368           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
13369           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
13370           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
13371           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
13372           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
13373           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
13374           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
13375           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
13376           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
13377           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
13378           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
13379           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
13380           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
13381           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
13382           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
13383           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
13384           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
13385           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
13386           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
13387           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
13388           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
13389           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
13390           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
13391           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
13392           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
13393           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
13394           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
13395           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
13396           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
13397           src/DSC/DSC_User/Datastream/Calcium/version.h,
13398           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
13399           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
13400           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
13401           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
13402           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
13403           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
13404           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
13405           src/DSC/ParallelDSC/Makefile.am,
13406           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
13407           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
13408           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
13409           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
13410           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
13411           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
13412           src/GenericObj/Makefile.am,
13413           src/GenericObj/SALOME_GenericObj_i.cc,
13414           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
13415           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
13416           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
13417           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
13418           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
13419           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
13420           src/HDFPersist/HDFattribute.hxx,
13421           src/HDFPersist/HDFcontainerObject.cc,
13422           src/HDFPersist/HDFcontainerObject.hxx,
13423           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
13424           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
13425           src/HDFPersist/HDFdatasetClose.c,
13426           src/HDFPersist/HDFdatasetCreate.c,
13427           src/HDFPersist/HDFdatasetGetDim.c,
13428           src/HDFPersist/HDFdatasetGetOrder.c,
13429           src/HDFPersist/HDFdatasetGetSize.c,
13430           src/HDFPersist/HDFdatasetGetType.c,
13431           src/HDFPersist/HDFdatasetGetnDim.c,
13432           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
13433           src/HDFPersist/HDFdatasetWrite.c,
13434           src/HDFPersist/HDFerrorModeLock.c,
13435           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
13436           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
13437           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
13438           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
13439           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
13440           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
13441           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
13442           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
13443           src/HDFPersist/HDFinternalObject.cc,
13444           src/HDFPersist/HDFinternalObject.hxx,
13445           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
13446           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
13447           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
13448           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
13449           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
13450           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
13451           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
13452           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
13453           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
13454           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
13455           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
13456           src/KERNEL_PY/iparameters.py,
13457           src/KERNEL_PY/kernel_shared_modules.py,
13458           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
13459           src/KERNEL_PY/salome_ComponentGUI.py,
13460           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
13461           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
13462           src/KERNEL_PY/salome_pynode.py,
13463           src/KERNEL_PY/salome_shared_modules.py,
13464           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
13465           src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
13466           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
13467           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
13468           src/Launcher/Launcher_Job.hxx,
13469           src/Launcher/Launcher_Job_Command.cxx,
13470           src/Launcher/Launcher_Job_Command.hxx,
13471           src/Launcher/Launcher_Job_PythonSALOME.cxx,
13472           src/Launcher/Launcher_Job_PythonSALOME.hxx,
13473           src/Launcher/Launcher_Job_SALOME.cxx,
13474           src/Launcher/Launcher_Job_SALOME.hxx,
13475           src/Launcher/Launcher_Job_YACSFile.cxx,
13476           src/Launcher/Launcher_Job_YACSFile.hxx,
13477           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
13478           src/Launcher/SALOME_Launcher.cxx,
13479           src/Launcher/SALOME_Launcher.hxx,
13480           src/Launcher/SALOME_LauncherServer.cxx,
13481           src/Launcher/SALOME_Launcher_Handler.cxx,
13482           src/Launcher/SALOME_Launcher_Handler.hxx,
13483           src/Launcher/SALOME_Launcher_Parser.cxx,
13484           src/Launcher/SALOME_Launcher_Parser.hxx,
13485           src/Launcher/SALOME_Launcher_defs.hxx,
13486           src/LifeCycleCORBA/Makefile.am,
13487           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
13488           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
13489           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
13490           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
13491           src/LifeCycleCORBA/TestContainerManager.cxx,
13492           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
13493           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
13494           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
13495           src/LifeCycleCORBA/Test/Makefile.am,
13496           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
13497           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
13498           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
13499           src/LifeCycleCORBA_SWIG/Makefile.am,
13500           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
13501           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
13502           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
13503           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
13504           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
13505           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
13506           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
13507           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
13508           src/Logger/SALOME_Logger_Server.hxx,
13509           src/Logger/SALOME_Logger_Server_main.cxx,
13510           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
13511           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
13512           src/Logger/Test/TestKiller.py,
13513           src/MPIContainer/MPIContainer_i.cxx,
13514           src/MPIContainer/MPIContainer_i.hxx,
13515           src/MPIContainer/MPIObject_i.cxx,
13516           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
13517           src/MPIContainer/SALOME_MPIContainer.cxx,
13518           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
13519           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
13520           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
13521           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
13522           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
13523           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
13524           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
13525           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
13526           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
13527           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
13528           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
13529           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
13530           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
13531           src/ModuleCatalog/TestModuleCatalog.py,
13532           src/ModuleGenerator/IDLparser.py,
13533           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
13534           src/ModuleGenerator/testIDLparser.in,
13535           src/ModuleGenerator/tests/AddComponent.idl,
13536           src/ModuleGenerator/tests/SubComponent.idl,
13537           src/ModuleGenerator/tests/Truc2Component.idl,
13538           src/ModuleGenerator/tests/TrucComponent.idl,
13539           src/ModuleGenerator/tests/test1.sh,
13540           src/ModuleGenerator/tests/test1b.sh,
13541           src/ModuleGenerator/tests/test2.sh,
13542           src/ModuleGenerator/tests/test3.sh,
13543           src/ModuleGenerator/tests/test4.sh,
13544           src/ModuleGenerator/tests/test5.sh,
13545           src/NOTIFICATION_SWIG/Makefile.am,
13546           src/NOTIFICATION_SWIG/NOTIFICATION.i,
13547           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
13548           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
13549           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
13550           src/NamingService/Makefile.am,
13551           src/NamingService/NamingService_WaitForServerReadiness.cxx,
13552           src/NamingService/NamingService_WaitForServerReadiness.hxx,
13553           src/NamingService/SALOME_NamingService.cxx,
13554           src/NamingService/SALOME_NamingService.hxx,
13555           src/NamingService/SALOME_NamingService.i,
13556           src/NamingService/SALOME_NamingServicePy.py,
13557           src/NamingService/SALOME_NamingService_defs.hxx,
13558           src/NamingService/ServiceUnreachable.cxx,
13559           src/NamingService/ServiceUnreachable.hxx,
13560           src/NamingService/Test/Makefile.am,
13561           src/NamingService/Test/NamingServiceTest.cxx,
13562           src/NamingService/Test/NamingServiceTest.hxx,
13563           src/NamingService/Test/TestNamingService.cxx,
13564           src/NamingService/Test/TestNamingService.py,
13565           src/Notification/CosNotifyShorthands.h,
13566           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
13567           src/Notification/NOTIFICATION.hxx,
13568           src/Notification/NOTIFICATION_Consumer.cxx,
13569           src/Notification/NOTIFICATION_Consumer.hxx,
13570           src/Notification/NOTIFICATION_Supplier.cxx,
13571           src/Notification/NOTIFICATION_Supplier.hxx,
13572           src/Notification/SALOME_NOTIFICATION.hxx,
13573           src/ParallelContainer/Makefile.am,
13574           src/ParallelContainer/Parallel_Salome_file_i.cxx,
13575           src/ParallelContainer/Parallel_Salome_file_i.hxx,
13576           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
13577           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
13578           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
13579           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
13580           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
13581           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
13582           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
13583           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
13584           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
13585           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
13586           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
13587           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
13588           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
13589           src/Registry/RegistryConnexion.hxx,
13590           src/Registry/RegistryService.cxx,
13591           src/Registry/RegistryService.hxx,
13592           src/Registry/SALOME_Registry.hxx,
13593           src/Registry/SALOME_Registry_Server.cxx,
13594           src/ResourcesManager/Makefile.am,
13595           src/ResourcesManager/ResourcesManager.cxx,
13596           src/ResourcesManager/ResourcesManager.hxx,
13597           src/ResourcesManager/ResourcesManager_Defs.hxx,
13598           src/ResourcesManager/SALOME_LoadRateManager.cxx,
13599           src/ResourcesManager/SALOME_LoadRateManager.hxx,
13600           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
13601           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
13602           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
13603           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
13604           src/ResourcesManager/SALOME_ResourcesManager.cxx,
13605           src/ResourcesManager/SALOME_ResourcesManager.hxx,
13606           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
13607           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
13608           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
13609           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
13610           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
13611           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
13612           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
13613           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
13614           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
13615           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
13616           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
13617           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
13618           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
13619           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
13620           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
13621           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
13622           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
13623           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
13624           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
13625           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
13626           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
13627           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
13628           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
13629           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
13630           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
13631           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
13632           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
13633           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
13634           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
13635           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
13636           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
13637           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
13638           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
13639           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
13640           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
13641           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
13642           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
13643           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
13644           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
13645           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
13646           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
13647           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
13648           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
13649           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
13650           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
13651           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
13652           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
13653           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
13654           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
13655           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
13656           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
13657           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
13658           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
13659           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
13660           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
13661           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
13662           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
13663           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
13664           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
13665           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
13666           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
13667           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
13668           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
13669           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
13670           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
13671           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
13672           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
13673           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
13674           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
13675           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
13676           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
13677           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
13678           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
13679           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
13680           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
13681           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
13682           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
13683           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
13684           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
13685           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
13686           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
13687           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
13688           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
13689           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
13690           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
13691           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
13692           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
13693           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
13694           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
13695           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
13696           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
13697           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
13698           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
13699           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
13700           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
13701           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
13702           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
13703           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
13704           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
13705           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
13706           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
13707           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
13708           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
13709           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
13710           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
13711           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
13712           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
13713           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
13714           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
13715           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
13716           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
13717           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
13718           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
13719           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
13720           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
13721           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
13722           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
13723           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
13724           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
13725           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
13726           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
13727           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
13728           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
13729           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
13730           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
13731           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
13732           src/SALOMEDS/SALOMEDS_Attributes.hxx,
13733           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
13734           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
13735           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
13736           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
13737           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
13738           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
13739           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
13740           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
13741           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
13742           src/SALOMEDS/SALOMEDS_Client.cxx,
13743           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
13744           src/SALOMEDS/SALOMEDS_Defines.hxx,
13745           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
13746           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
13747           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
13748           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
13749           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
13750           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
13751           src/SALOMEDS/SALOMEDS_IParameters.cxx,
13752           src/SALOMEDS/SALOMEDS_IParameters.hxx,
13753           src/SALOMEDS/SALOMEDS_SComponent.cxx,
13754           src/SALOMEDS/SALOMEDS_SComponent.hxx,
13755           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
13756           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
13757           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
13758           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
13759           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
13760           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
13761           src/SALOMEDS/SALOMEDS_SObject.cxx,
13762           src/SALOMEDS/SALOMEDS_SObject.hxx,
13763           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
13764           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
13765           src/SALOMEDS/SALOMEDS_Server.cxx,
13766           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
13767           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
13768           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
13769           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
13770           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
13771           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
13772           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
13773           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
13774           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
13775           src/SALOMEDS/SALOMEDS_Study_i.cxx,
13776           src/SALOMEDS/SALOMEDS_Study_i.hxx,
13777           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
13778           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
13779           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
13780           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
13781           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
13782           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
13783           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
13784           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
13785           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
13786           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
13787           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
13788           src/SALOMEDS/Test/SALOMEDSTest.cxx,
13789           src/SALOMEDS/Test/SALOMEDSTest.hxx,
13790           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
13791           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
13792           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
13793           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
13794           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
13795           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
13796           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
13797           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
13798           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
13799           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
13800           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
13801           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
13802           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
13803           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
13804           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
13805           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
13806           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
13807           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
13808           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
13809           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
13810           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
13811           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
13812           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
13813           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
13814           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
13815           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
13816           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
13817           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
13818           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
13819           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
13820           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
13821           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
13822           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
13823           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
13824           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
13825           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
13826           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
13827           src/SALOMEDS/Test/TestSALOMEDS.cxx,
13828           src/SALOMEDS/Test/TestSALOMEDS.py,
13829           src/SALOMEDSClient/Makefile.am,
13830           src/SALOMEDSClient/SALOMEDSClient.hxx,
13831           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
13832           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
13833           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
13834           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
13835           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
13836           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
13837           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
13838           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
13839           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
13840           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
13841           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
13842           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
13843           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
13844           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
13845           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
13846           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
13847           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
13848           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
13849           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
13850           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
13851           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
13852           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
13853           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
13854           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
13855           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
13856           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
13857           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
13858           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
13859           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
13860           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
13861           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
13862           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
13863           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
13864           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
13865           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
13866           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
13867           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
13868           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
13869           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
13870           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
13871           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
13872           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
13873           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
13874           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
13875           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
13876           src/SALOMEDSImpl/Makefile.am,
13877           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
13878           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
13879           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
13880           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
13881           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
13882           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
13883           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
13884           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
13885           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
13886           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
13887           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
13888           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
13889           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
13890           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
13891           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
13892           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
13893           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
13894           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
13895           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
13896           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
13897           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
13898           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
13899           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
13900           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
13901           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
13902           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
13903           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
13904           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
13905           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
13906           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
13907           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
13908           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
13909           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
13910           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
13911           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
13912           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
13913           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
13914           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
13915           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
13916           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
13917           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
13918           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
13919           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
13920           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
13921           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
13922           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
13923           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
13924           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
13925           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
13926           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
13927           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
13928           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
13929           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
13930           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
13931           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
13932           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
13933           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
13934           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
13935           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
13936           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
13937           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
13938           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
13939           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
13940           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
13941           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
13942           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
13943           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
13944           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
13945           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
13946           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
13947           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
13948           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
13949           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
13950           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
13951           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
13952           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
13953           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
13954           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
13955           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
13956           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
13957           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
13958           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
13959           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
13960           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
13961           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
13962           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
13963           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
13964           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
13965           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
13966           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
13967           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
13968           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
13969           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
13970           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
13971           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
13972           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
13973           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
13974           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
13975           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
13976           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
13977           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
13978           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
13979           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
13980           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
13981           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
13982           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
13983           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
13984           src/SALOMELocalTrace/BaseTraceCollector.cxx,
13985           src/SALOMELocalTrace/BaseTraceCollector.hxx,
13986           src/SALOMELocalTrace/FileTraceCollector.cxx,
13987           src/SALOMELocalTrace/FileTraceCollector.hxx,
13988           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
13989           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
13990           src/SALOMELocalTrace/LocalTraceCollector.cxx,
13991           src/SALOMELocalTrace/LocalTraceCollector.hxx,
13992           src/SALOMELocalTrace/Makefile.am,
13993           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
13994           src/SALOMELocalTrace/utilities.h,
13995           src/SALOMELocalTrace/Test/Makefile.am,
13996           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
13997           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
13998           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
13999           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
14000           src/SALOMETraceCollector/Makefile.am,
14001           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
14002           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
14003           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
14004           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
14005           src/SALOMETraceCollector/Test/Makefile.am,
14006           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
14007           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
14008           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
14009           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
14010           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
14011           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
14012           src/TestContainer/SALOME_TestComponent.hxx,
14013           src/TestContainer/SALOME_TestComponentPy.py,
14014           src/TestContainer/SALOME_TestComponent_i.cxx,
14015           src/TestContainer/SALOME_TestComponent_i.hxx,
14016           src/TestContainer/TestComponentPy.py,
14017           src/TestContainer/TestContainer.cxx,
14018           src/TestContainer/TestLogger.cxx,
14019           src/TestContainer/TestLogger.py,
14020           src/TestMPIContainer/Makefile.am,
14021           src/TestMPIContainer/TestMPIComponentEngine.cxx,
14022           src/TestMPIContainer/TestMPIComponentEngine.hxx,
14023           src/TestMPIContainer/TestMPIContainer.cxx,
14024           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
14025           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
14026           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
14027           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
14028           src/Utils/Utils_CommException.cxx,
14029           src/Utils/Utils_CommException.hxx,
14030           src/Utils/Utils_CorbaException.hxx,
14031           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
14032           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
14033           src/Utils/Utils_ExceptHandlers.cxx,
14034           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
14035           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
14036           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
14037           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
14038           src/Utils/Utils_SALOME_Exception.cxx,
14039           src/Utils/Utils_SALOME_Exception.hxx,
14040           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
14041           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
14042           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
14043           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
14044           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
14045           src/win32pm/win32pm.c:
14046
14047         Merge from V5_1_4_BR 07/05/2010
14048
14049 2010-05-06 11:08  inv
14050
14051         * src/MPIContainer/Makefile.am:
14052
14053         Fix linkage problem (on Debian 4, 3.1)
14054
14055 2010-05-06 09:21  vsr
14056
14057         * src/ParallelContainer/Makefile.am:
14058
14059         Fix compilation problem (remove non-required file).
14060
14061 2010-05-03 16:23  caremoli
14062
14063         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
14064
14065         CCAR: replace INFOS by MESSAGE in isKnownComponentClass because incomprehensible
14066         messages was appearing during dump study
14067
14068 2010-05-03 11:15  caremoli
14069
14070         * src/MPIContainer/: MPIContainer_i.cxx, MPIObject_i.cxx:
14071
14072         CCAR: add std:: to string in MPIContainer
14073
14074 2010-04-30 11:56  adam
14075
14076         * src/Container/SALOME_ContainerManager.cxx:
14077
14078         If you launch two salome sessions and try to execute a
14079         YACS graph in each one, you have to start a container, the
14080         traces are redirected in a log file with the same name ...
14081         The file is overwritten on linux whereas on windows it
14082         generates an error since the file is locked ...
14083         On windows, I complete the file with the pid ...
14084
14085 2010-04-23 17:57  adam
14086
14087         * src/Container/Container_i.cxx:
14088
14089         windows fix in load_component_CppImplementation
14090
14091 2010-04-22 12:15  ouv
14092
14093         * idl/SALOMEDS_Attributes.idl,
14094           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
14095           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
14096           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
14097           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
14098           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
14099           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
14100           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
14101           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
14102           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
14103           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
14104           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
14105           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
14106           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
14107           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
14108           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
14109           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
14110           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
14111           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
14112           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx:
14113
14114         Issue 0020465: [CEA 335] sort tables in visualisation mode
14115
14116 2010-04-21 16:01  secher
14117
14118         * src/MPIContainer/MPIObject_i.hxx:
14119
14120         [no log message]
14121
14122 2010-04-21 10:31  vsr
14123
14124         * salome_adm/unix/config_files/: enable_pthreads.m4,
14125           DEPRECATED/ac_cxx_bool.m4, DEPRECATED/ac_cxx_mutable.m4,
14126           DEPRECATED/ac_cxx_partial_specialization.m4,
14127           DEPRECATED/ac_cxx_typename.m4:
14128
14129         Update copyright notes (for 2010)
14130
14131 2010-04-21 10:26  vsr
14132
14133         * salome_adm/unix/config_files/DEPRECATED/: ac_cc_warnings.m4,
14134           ac_cxx_bool.m4, ac_cxx_mutable.m4,
14135           ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
14136           check_pthreads.m4, mkinstalldirs:
14137
14138         Update copyright notes (for 2010)
14139
14140 2010-04-21 08:04  vsr
14141
14142         * doc/salome/: gui/static/footer.html, tui/static/footer.html:
14143
14144         Update copyright notes
14145
14146 2010-04-20 10:21  adam
14147
14148         * salome_adm/cmake_files/am2cmake.py:
14149
14150         Increment version number
14151
14152 2010-04-19 17:09  adam
14153
14154         * salome_adm/cmake_files/: FindBOOST.cmake, FindPLATFORM.cmake,
14155           am2cmake.py:
14156
14157         [no log message]
14158
14159 2010-04-19 15:20  vsr
14160
14161         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
14162           build_cmake.bat, build_configure, clean_configure, configure.ac,
14163           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
14164           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
14165           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
14166           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
14167           bin/killSalome.py, bin/killSalomeWithPort.py,
14168           bin/launchConfigureParser.py, bin/launchSalome.py,
14169           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
14170           bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
14171           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
14172           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
14173           bin/server.py, bin/setenv.py, bin/showNS.py,
14174           bin/shutdownSalome.py, bin/virtual_salome.py,
14175           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
14176           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
14177           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
14178           bin/appliskel/runAppli, bin/appliskel/runConsole,
14179           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
14180           bin/appliskel/runSession, bin/appliskel/runTests,
14181           bin/appliskel/searchFreePort.sh, doc/Makefile.am,
14182           doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
14183           doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
14184           doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
14185           idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
14186           idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
14187           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
14188           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
14189           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
14190           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
14191           idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
14192           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
14193           idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
14194           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
14195           idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
14196           idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
14197           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
14198           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
14199           idl/SALOME_TestMPIComponent.idl,
14200           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
14201           idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
14202           salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
14203           salome_adm/cmake_files/FindCPPUNIT.cmake,
14204           salome_adm/cmake_files/FindDOXYGEN.cmake,
14205           salome_adm/cmake_files/FindHDF5.cmake,
14206           salome_adm/cmake_files/FindKERNEL.cmake,
14207           salome_adm/cmake_files/FindLIBXML2.cmake,
14208           salome_adm/cmake_files/FindOMNIORB.cmake,
14209           salome_adm/cmake_files/FindPLATFORM.cmake,
14210           salome_adm/cmake_files/FindPTHREADS.cmake,
14211           salome_adm/cmake_files/FindPYTHON.cmake,
14212           salome_adm/cmake_files/FindSWIG.cmake,
14213           salome_adm/cmake_files/Makefile.am,
14214           salome_adm/cmake_files/am2cmake.py,
14215           salome_adm/cmake_files/install_and_compile_python_file.cmake,
14216           salome_adm/cmake_files/install_python_from_idl.cmake,
14217           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
14218           salome_adm/unix/make_common_starter.am,
14219           salome_adm/unix/DEPRECATED/Doxyfile,
14220           salome_adm/unix/DEPRECATED/F77config.h.in,
14221           salome_adm/unix/DEPRECATED/config.h.in,
14222           salome_adm/unix/DEPRECATED/depend.in,
14223           salome_adm/unix/DEPRECATED/envScript.in,
14224           salome_adm/unix/DEPRECATED/make_commence.in,
14225           salome_adm/unix/DEPRECATED/make_conclude.in,
14226           salome_adm/unix/DEPRECATED/make_module.in,
14227           salome_adm/unix/DEPRECATED/make_omniorb.in,
14228           salome_adm/unix/config_files/Makefile.am,
14229           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
14230           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
14231           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
14232           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
14233           salome_adm/unix/config_files/ac_cxx_option.m4,
14234           salome_adm/unix/config_files/ac_cxx_template_options.m4,
14235           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
14236           salome_adm/unix/config_files/ac_cxx_warnings.m4,
14237           salome_adm/unix/config_files/ac_linker_options.m4,
14238           salome_adm/unix/config_files/acx_pthread.m4,
14239           salome_adm/unix/config_files/check_Kernel.m4,
14240           salome_adm/unix/config_files/check_boost.m4,
14241           salome_adm/unix/config_files/check_calcium.m4,
14242           salome_adm/unix/config_files/check_cas.m4,
14243           salome_adm/unix/config_files/check_corba.m4,
14244           salome_adm/unix/config_files/check_cppunit.m4,
14245           salome_adm/unix/config_files/check_f77.m4,
14246           salome_adm/unix/config_files/check_hdf5.m4,
14247           salome_adm/unix/config_files/check_htmlgen.m4,
14248           salome_adm/unix/config_files/check_lam.m4,
14249           salome_adm/unix/config_files/check_libbatch.m4,
14250           salome_adm/unix/config_files/check_libxml.m4,
14251           salome_adm/unix/config_files/check_mpi.m4,
14252           salome_adm/unix/config_files/check_mpich.m4,
14253           salome_adm/unix/config_files/check_omniorb.m4,
14254           salome_adm/unix/config_files/check_openmpi.m4,
14255           salome_adm/unix/config_files/check_paco++.m4,
14256           salome_adm/unix/config_files/check_sockets.m4,
14257           salome_adm/unix/config_files/check_swig.m4,
14258           salome_adm/unix/config_files/check_withihm.m4,
14259           salome_adm/unix/config_files/enable_pthreads.m4,
14260           salome_adm/unix/config_files/local_install.m4,
14261           salome_adm/unix/config_files/production.m4,
14262           salome_adm/unix/config_files/pyembed.m4,
14263           salome_adm/unix/config_files/python.m4,
14264           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
14265           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
14266           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
14267           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
14268           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
14269           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
14270           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
14271           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
14272           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
14273           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
14274           src/Basics/BasicsGenericDestructor.hxx,
14275           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
14276           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
14277           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
14278           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
14279           src/Communication/Makefile.am,
14280           src/Communication/MatrixClient.cxx,
14281           src/Communication/MatrixClient.hxx,
14282           src/Communication/MultiCommException.cxx,
14283           src/Communication/MultiCommException.hxx,
14284           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
14285           src/Communication/ReceiverFactory.cxx,
14286           src/Communication/ReceiverFactory.hxx,
14287           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
14288           src/Communication/SALOMEMultiComm.cxx,
14289           src/Communication/SALOMEMultiComm.hxx,
14290           src/Communication/SALOME_Comm_i.cxx,
14291           src/Communication/SALOME_Comm_i.hxx,
14292           src/Communication/SALOME_Communication.hxx,
14293           src/Communication/SALOME_Matrix_i.cxx,
14294           src/Communication/SALOME_Matrix_i.hxx,
14295           src/Communication/SenderFactory.cxx,
14296           src/Communication/SenderFactory.hxx,
14297           src/Communication_SWIG/Makefile.am,
14298           src/Communication_SWIG/libSALOME_Comm.i,
14299           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
14300           src/Container/Container_init_python.cxx,
14301           src/Container/Container_init_python.hxx,
14302           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
14303           src/Container/SALOME_Component_i.hxx,
14304           src/Container/SALOME_Container.cxx,
14305           src/Container/SALOME_Container.hxx,
14306           src/Container/SALOME_Container.py,
14307           src/Container/SALOME_ContainerManager.cxx,
14308           src/Container/SALOME_ContainerManager.hxx,
14309           src/Container/SALOME_ContainerPy.py,
14310           src/Container/SALOME_Container_SignalsHandler.cxx,
14311           src/Container/SALOME_Container_i.hxx,
14312           src/Container/SALOME_FileRef_i.cxx,
14313           src/Container/SALOME_FileRef_i.hxx,
14314           src/Container/SALOME_FileTransfer_i.cxx,
14315           src/Container/SALOME_FileTransfer_i.hxx,
14316           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
14317           src/Container/Salome_file_i.hxx,
14318           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
14319           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
14320           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
14321           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
14322           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
14323           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
14324           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
14325           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
14326           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
14327           src/DSC/DSC_Basic/DSC_Basic.hxx,
14328           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
14329           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
14330           src/DSC/DSC_Basic/DSC_interface.hxx,
14331           src/DSC/DSC_Basic/Makefile.am,
14332           src/DSC/DSC_Basic/PortProperties_i.cxx,
14333           src/DSC/DSC_Basic/PortProperties_i.hxx,
14334           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
14335           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
14336           src/DSC/DSC_Python/dsccalcium.py,
14337           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
14338           src/DSC/DSC_User/Superv_Component_i.cxx,
14339           src/DSC/DSC_User/Superv_Component_i.hxx,
14340           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
14341           src/DSC/DSC_User/port_factory.hxx,
14342           src/DSC/DSC_User/provides_port.cxx,
14343           src/DSC/DSC_User/provides_port.hxx,
14344           src/DSC/DSC_User/test_DSC_Exception.cxx,
14345           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
14346           src/DSC/DSC_User/Basic/Makefile.am,
14347           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
14348           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
14349           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
14350           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
14351           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
14352           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
14353           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
14354           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
14355           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
14356           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
14357           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
14358           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
14359           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
14360           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
14361           src/DSC/DSC_User/Datastream/GenericPort.hxx,
14362           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
14363           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
14364           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
14365           src/DSC/DSC_User/Datastream/Makefile.am,
14366           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
14367           src/DSC/DSC_User/Datastream/fake.cc,
14368           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
14369           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
14370           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
14371           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
14372           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
14373           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
14374           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
14375           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
14376           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
14377           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
14378           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
14379           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
14380           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
14381           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
14382           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
14383           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
14384           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
14385           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
14386           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
14387           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
14388           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
14389           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
14390           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
14391           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
14392           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
14393           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
14394           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
14395           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
14396           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
14397           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
14398           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
14399           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
14400           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
14401           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
14402           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
14403           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
14404           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
14405           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
14406           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
14407           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
14408           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
14409           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
14410           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
14411           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
14412           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
14413           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
14414           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
14415           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
14416           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
14417           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
14418           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
14419           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
14420           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
14421           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
14422           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
14423           src/DSC/DSC_User/Datastream/Calcium/version.h,
14424           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
14425           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
14426           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
14427           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
14428           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
14429           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
14430           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
14431           src/DSC/ParallelDSC/Makefile.am,
14432           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
14433           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
14434           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
14435           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
14436           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
14437           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
14438           src/GenericObj/Makefile.am,
14439           src/GenericObj/SALOME_GenericObj_i.cc,
14440           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
14441           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
14442           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
14443           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
14444           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
14445           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
14446           src/HDFPersist/HDFattribute.hxx,
14447           src/HDFPersist/HDFcontainerObject.cc,
14448           src/HDFPersist/HDFcontainerObject.hxx,
14449           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
14450           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
14451           src/HDFPersist/HDFdatasetClose.c,
14452           src/HDFPersist/HDFdatasetCreate.c,
14453           src/HDFPersist/HDFdatasetGetDim.c,
14454           src/HDFPersist/HDFdatasetGetOrder.c,
14455           src/HDFPersist/HDFdatasetGetSize.c,
14456           src/HDFPersist/HDFdatasetGetType.c,
14457           src/HDFPersist/HDFdatasetGetnDim.c,
14458           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
14459           src/HDFPersist/HDFdatasetWrite.c,
14460           src/HDFPersist/HDFerrorModeLock.c,
14461           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
14462           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
14463           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
14464           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
14465           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
14466           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
14467           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
14468           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
14469           src/HDFPersist/HDFinternalObject.cc,
14470           src/HDFPersist/HDFinternalObject.hxx,
14471           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
14472           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
14473           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
14474           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
14475           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
14476           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
14477           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
14478           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
14479           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
14480           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
14481           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
14482           src/KERNEL_PY/iparameters.py,
14483           src/KERNEL_PY/kernel_shared_modules.py,
14484           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
14485           src/KERNEL_PY/salome_ComponentGUI.py,
14486           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
14487           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
14488           src/KERNEL_PY/salome_pynode.py,
14489           src/KERNEL_PY/salome_shared_modules.py,
14490           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
14491           src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
14492           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
14493           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
14494           src/Launcher/Launcher_Job.hxx,
14495           src/Launcher/Launcher_Job_Command.cxx,
14496           src/Launcher/Launcher_Job_Command.hxx,
14497           src/Launcher/Launcher_Job_PythonSALOME.cxx,
14498           src/Launcher/Launcher_Job_PythonSALOME.hxx,
14499           src/Launcher/Launcher_Job_SALOME.cxx,
14500           src/Launcher/Launcher_Job_SALOME.hxx,
14501           src/Launcher/Launcher_Job_YACSFile.cxx,
14502           src/Launcher/Launcher_Job_YACSFile.hxx,
14503           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
14504           src/Launcher/SALOME_Launcher.cxx,
14505           src/Launcher/SALOME_Launcher.hxx,
14506           src/Launcher/SALOME_LauncherServer.cxx,
14507           src/Launcher/SALOME_Launcher_Handler.cxx,
14508           src/Launcher/SALOME_Launcher_Handler.hxx,
14509           src/Launcher/SALOME_Launcher_Parser.cxx,
14510           src/Launcher/SALOME_Launcher_Parser.hxx,
14511           src/Launcher/SALOME_Launcher_defs.hxx,
14512           src/LifeCycleCORBA/Makefile.am,
14513           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
14514           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
14515           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
14516           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
14517           src/LifeCycleCORBA/TestContainerManager.cxx,
14518           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
14519           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
14520           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
14521           src/LifeCycleCORBA/Test/Makefile.am,
14522           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
14523           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
14524           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
14525           src/LifeCycleCORBA_SWIG/Makefile.am,
14526           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
14527           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
14528           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
14529           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
14530           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
14531           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
14532           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
14533           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
14534           src/Logger/SALOME_Logger_Server.hxx,
14535           src/Logger/SALOME_Logger_Server_main.cxx,
14536           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
14537           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
14538           src/Logger/Test/TestKiller.py,
14539           src/MPIContainer/MPIContainer_i.cxx,
14540           src/MPIContainer/MPIContainer_i.hxx,
14541           src/MPIContainer/MPIObject_i.cxx,
14542           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
14543           src/MPIContainer/SALOME_MPIContainer.cxx,
14544           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
14545           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
14546           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
14547           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
14548           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
14549           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
14550           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
14551           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
14552           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
14553           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
14554           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
14555           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
14556           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
14557           src/ModuleCatalog/TestModuleCatalog.py,
14558           src/ModuleGenerator/IDLparser.py,
14559           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
14560           src/ModuleGenerator/testIDLparser.in,
14561           src/ModuleGenerator/tests/AddComponent.idl,
14562           src/ModuleGenerator/tests/SubComponent.idl,
14563           src/ModuleGenerator/tests/Truc2Component.idl,
14564           src/ModuleGenerator/tests/TrucComponent.idl,
14565           src/ModuleGenerator/tests/test1.sh,
14566           src/ModuleGenerator/tests/test1b.sh,
14567           src/ModuleGenerator/tests/test2.sh,
14568           src/ModuleGenerator/tests/test3.sh,
14569           src/ModuleGenerator/tests/test4.sh,
14570           src/ModuleGenerator/tests/test5.sh,
14571           src/NOTIFICATION_SWIG/Makefile.am,
14572           src/NOTIFICATION_SWIG/NOTIFICATION.i,
14573           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
14574           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
14575           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
14576           src/NamingService/Makefile.am,
14577           src/NamingService/NamingService_WaitForServerReadiness.cxx,
14578           src/NamingService/NamingService_WaitForServerReadiness.hxx,
14579           src/NamingService/SALOME_NamingService.cxx,
14580           src/NamingService/SALOME_NamingService.hxx,
14581           src/NamingService/SALOME_NamingService.i,
14582           src/NamingService/SALOME_NamingServicePy.py,
14583           src/NamingService/SALOME_NamingService_defs.hxx,
14584           src/NamingService/ServiceUnreachable.cxx,
14585           src/NamingService/ServiceUnreachable.hxx,
14586           src/NamingService/Test/Makefile.am,
14587           src/NamingService/Test/NamingServiceTest.cxx,
14588           src/NamingService/Test/NamingServiceTest.hxx,
14589           src/NamingService/Test/TestNamingService.cxx,
14590           src/NamingService/Test/TestNamingService.py,
14591           src/Notification/CosNotifyShorthands.h,
14592           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
14593           src/Notification/NOTIFICATION.hxx,
14594           src/Notification/NOTIFICATION_Consumer.cxx,
14595           src/Notification/NOTIFICATION_Consumer.hxx,
14596           src/Notification/NOTIFICATION_Supplier.cxx,
14597           src/Notification/NOTIFICATION_Supplier.hxx,
14598           src/Notification/SALOME_NOTIFICATION.hxx,
14599           src/ParallelContainer/Makefile.am,
14600           src/ParallelContainer/Parallel_Salome_file_i.cxx,
14601           src/ParallelContainer/Parallel_Salome_file_i.hxx,
14602           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
14603           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
14604           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
14605           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
14606           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
14607           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
14608           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
14609           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
14610           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
14611           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
14612           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
14613           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
14614           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
14615           src/Registry/RegistryConnexion.hxx,
14616           src/Registry/RegistryService.cxx,
14617           src/Registry/RegistryService.hxx,
14618           src/Registry/SALOME_Registry.hxx,
14619           src/Registry/SALOME_Registry_Server.cxx,
14620           src/ResourcesManager/Makefile.am,
14621           src/ResourcesManager/ResourcesManager.cxx,
14622           src/ResourcesManager/ResourcesManager.hxx,
14623           src/ResourcesManager/ResourcesManager_Defs.hxx,
14624           src/ResourcesManager/SALOME_LoadRateManager.cxx,
14625           src/ResourcesManager/SALOME_LoadRateManager.hxx,
14626           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
14627           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
14628           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
14629           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
14630           src/ResourcesManager/SALOME_ResourcesManager.cxx,
14631           src/ResourcesManager/SALOME_ResourcesManager.hxx,
14632           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
14633           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
14634           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
14635           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
14636           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
14637           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
14638           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
14639           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
14640           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
14641           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
14642           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
14643           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
14644           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
14645           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
14646           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
14647           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
14648           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
14649           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
14650           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
14651           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
14652           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
14653           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
14654           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
14655           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
14656           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
14657           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
14658           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
14659           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
14660           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
14661           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
14662           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
14663           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
14664           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
14665           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
14666           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
14667           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
14668           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
14669           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
14670           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
14671           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
14672           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
14673           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
14674           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
14675           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
14676           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
14677           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
14678           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
14679           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
14680           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
14681           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
14682           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
14683           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
14684           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
14685           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
14686           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
14687           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
14688           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
14689           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
14690           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
14691           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
14692           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
14693           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
14694           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
14695           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
14696           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
14697           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
14698           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
14699           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
14700           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
14701           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
14702           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
14703           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
14704           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
14705           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
14706           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
14707           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
14708           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
14709           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
14710           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
14711           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
14712           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
14713           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
14714           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
14715           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
14716           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
14717           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
14718           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
14719           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
14720           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
14721           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
14722           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
14723           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
14724           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
14725           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
14726           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
14727           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
14728           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
14729           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
14730           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
14731           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
14732           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
14733           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
14734           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
14735           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
14736           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
14737           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
14738           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
14739           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
14740           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
14741           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
14742           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
14743           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
14744           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
14745           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
14746           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
14747           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
14748           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
14749           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
14750           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
14751           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
14752           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
14753           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
14754           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
14755           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
14756           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
14757           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
14758           src/SALOMEDS/SALOMEDS_Attributes.hxx,
14759           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
14760           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
14761           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
14762           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
14763           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
14764           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
14765           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
14766           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
14767           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
14768           src/SALOMEDS/SALOMEDS_Client.cxx,
14769           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
14770           src/SALOMEDS/SALOMEDS_Defines.hxx,
14771           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
14772           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
14773           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
14774           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
14775           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
14776           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
14777           src/SALOMEDS/SALOMEDS_IParameters.cxx,
14778           src/SALOMEDS/SALOMEDS_IParameters.hxx,
14779           src/SALOMEDS/SALOMEDS_SComponent.cxx,
14780           src/SALOMEDS/SALOMEDS_SComponent.hxx,
14781           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
14782           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
14783           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
14784           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
14785           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
14786           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
14787           src/SALOMEDS/SALOMEDS_SObject.cxx,
14788           src/SALOMEDS/SALOMEDS_SObject.hxx,
14789           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
14790           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
14791           src/SALOMEDS/SALOMEDS_Server.cxx,
14792           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
14793           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
14794           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
14795           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
14796           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
14797           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
14798           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
14799           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
14800           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
14801           src/SALOMEDS/SALOMEDS_Study_i.cxx,
14802           src/SALOMEDS/SALOMEDS_Study_i.hxx,
14803           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
14804           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
14805           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
14806           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
14807           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
14808           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
14809           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
14810           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
14811           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
14812           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
14813           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
14814           src/SALOMEDS/Test/SALOMEDSTest.cxx,
14815           src/SALOMEDS/Test/SALOMEDSTest.hxx,
14816           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
14817           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
14818           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
14819           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
14820           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
14821           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
14822           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
14823           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
14824           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
14825           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
14826           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
14827           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
14828           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
14829           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
14830           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
14831           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
14832           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
14833           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
14834           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
14835           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
14836           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
14837           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
14838           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
14839           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
14840           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
14841           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
14842           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
14843           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
14844           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
14845           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
14846           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
14847           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
14848           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
14849           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
14850           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
14851           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
14852           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
14853           src/SALOMEDS/Test/TestSALOMEDS.cxx,
14854           src/SALOMEDS/Test/TestSALOMEDS.py,
14855           src/SALOMEDSClient/Makefile.am,
14856           src/SALOMEDSClient/SALOMEDSClient.hxx,
14857           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
14858           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
14859           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
14860           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
14861           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
14862           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
14863           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
14864           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
14865           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
14866           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
14867           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
14868           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
14869           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
14870           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
14871           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
14872           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
14873           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
14874           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
14875           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
14876           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
14877           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
14878           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
14879           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
14880           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
14881           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
14882           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
14883           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
14884           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
14885           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
14886           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
14887           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
14888           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
14889           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
14890           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
14891           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
14892           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
14893           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
14894           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
14895           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
14896           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
14897           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
14898           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
14899           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
14900           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
14901           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
14902           src/SALOMEDSImpl/Makefile.am,
14903           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
14904           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
14905           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
14906           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
14907           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
14908           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
14909           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
14910           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
14911           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
14912           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
14913           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
14914           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
14915           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
14916           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
14917           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
14918           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
14919           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
14920           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
14921           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
14922           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
14923           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
14924           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
14925           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
14926           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
14927           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
14928           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
14929           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
14930           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
14931           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
14932           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
14933           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
14934           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
14935           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
14936           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
14937           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
14938           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
14939           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
14940           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
14941           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
14942           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
14943           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
14944           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
14945           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
14946           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
14947           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
14948           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
14949           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
14950           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
14951           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
14952           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
14953           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
14954           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
14955           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
14956           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
14957           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
14958           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
14959           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
14960           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
14961           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
14962           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
14963           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
14964           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
14965           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
14966           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
14967           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
14968           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
14969           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
14970           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
14971           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
14972           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
14973           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
14974           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
14975           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
14976           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
14977           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
14978           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
14979           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
14980           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
14981           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
14982           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
14983           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
14984           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
14985           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
14986           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
14987           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
14988           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
14989           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
14990           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
14991           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
14992           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
14993           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
14994           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
14995           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
14996           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
14997           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
14998           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
14999           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
15000           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
15001           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
15002           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
15003           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
15004           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
15005           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
15006           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
15007           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
15008           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
15009           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
15010           src/SALOMELocalTrace/BaseTraceCollector.cxx,
15011           src/SALOMELocalTrace/BaseTraceCollector.hxx,
15012           src/SALOMELocalTrace/FileTraceCollector.cxx,
15013           src/SALOMELocalTrace/FileTraceCollector.hxx,
15014           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
15015           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
15016           src/SALOMELocalTrace/LocalTraceCollector.cxx,
15017           src/SALOMELocalTrace/LocalTraceCollector.hxx,
15018           src/SALOMELocalTrace/Makefile.am,
15019           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
15020           src/SALOMELocalTrace/utilities.h,
15021           src/SALOMELocalTrace/Test/Makefile.am,
15022           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
15023           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
15024           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
15025           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
15026           src/SALOMETraceCollector/Makefile.am,
15027           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
15028           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
15029           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
15030           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
15031           src/SALOMETraceCollector/Test/Makefile.am,
15032           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
15033           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
15034           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
15035           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
15036           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
15037           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
15038           src/TestContainer/SALOME_TestComponent.hxx,
15039           src/TestContainer/SALOME_TestComponentPy.py,
15040           src/TestContainer/SALOME_TestComponent_i.cxx,
15041           src/TestContainer/SALOME_TestComponent_i.hxx,
15042           src/TestContainer/TestComponentPy.py,
15043           src/TestContainer/TestContainer.cxx,
15044           src/TestContainer/TestLogger.cxx,
15045           src/TestContainer/TestLogger.py,
15046           src/TestMPIContainer/Makefile.am,
15047           src/TestMPIContainer/TestMPIComponentEngine.cxx,
15048           src/TestMPIContainer/TestMPIComponentEngine.hxx,
15049           src/TestMPIContainer/TestMPIContainer.cxx,
15050           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
15051           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
15052           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
15053           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
15054           src/Utils/Utils_CommException.cxx,
15055           src/Utils/Utils_CommException.hxx,
15056           src/Utils/Utils_CorbaException.hxx,
15057           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
15058           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
15059           src/Utils/Utils_ExceptHandlers.cxx,
15060           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
15061           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
15062           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
15063           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
15064           src/Utils/Utils_SALOME_Exception.cxx,
15065           src/Utils/Utils_SALOME_Exception.hxx,
15066           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
15067           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
15068           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
15069           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
15070           src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
15071           src/win32pm/win32pm.c:
15072
15073         Update copyright notices (for 2010)
15074
15075 2010-04-19 12:46  inv
15076
15077         * configure.ac:
15078
15079         Changing version to 5.1.4
15080
15081 2010-04-15 10:45  caremoli
15082
15083         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
15084           ResourcesManager/ResourcesManager.cxx,
15085           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
15086
15087         CCAR: add default resource in Resource Mananger (localhost)
15088         and catch salome_exception in LifeCycle
15089
15090 2010-04-14 07:25  vsr
15091
15092         * src/Launcher/Launcher.cxx:
15093
15094         Fix compilation error
15095
15096 2010-04-13 14:27  ana
15097
15098         * src/: LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
15099           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIObject_i.cxx,
15100           MPIContainer/SALOME_MPIContainer.cxx,
15101           NamingService/Test/NamingServiceTest.cxx,
15102           Logger/SALOME_Trace.cxx:
15103
15104         Use the prefix std:: instead of the directive using namespace std;
15105
15106 2010-04-13 14:24  ana
15107
15108         * src/: DSC/DSC_User/Basic/basic_port_factory.cxx,
15109           DSC/DSC_User/Basic/data_short_port_uses.cxx,
15110           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
15111           Launcher/Launcher.cxx, Launcher/SALOME_Launcher.cxx,
15112           Launcher/SALOME_LauncherServer.cxx,
15113           Launcher/SALOME_Launcher_Handler.cxx,
15114           Launcher/SALOME_Launcher_Parser.cxx,
15115           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
15116           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
15117           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
15118           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx:
15119
15120         Use the prefix std:: instead of the directive using namespace std;
15121
15122 2010-04-13 14:21  ana
15123
15124         * src/: SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
15125           SALOMELocalTrace/BaseTraceCollector.cxx,
15126           SALOMELocalTrace/FileTraceCollector.cxx,
15127           SALOMELocalTrace/LocalTraceBufferPool.cxx,
15128           SALOMELocalTrace/LocalTraceCollector.cxx,
15129           SALOMELocalTrace/utilities.h,
15130           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
15131           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
15132           SALOMEDS/Test/SALOMEDSTest.cxx,
15133           SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
15134           SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
15135           SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
15136           SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
15137           SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
15138           SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
15139           SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
15140           SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
15141           SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
15142           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
15143           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
15144           SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
15145           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
15146           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
15147           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
15148           SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
15149           SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
15150           SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
15151           SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
15152           SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
15153           SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
15154           SALOMEDS/Test/SALOMEDSTest_Study.cxx,
15155           SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
15156           SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
15157           SALOMEDS/Test/TestSALOMEDS.cxx,
15158           DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx:
15159
15160         Use the prefix std:: instead of the directive using namespace std;
15161
15162 2010-04-13 14:15  ana
15163
15164         * src/: ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
15165           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
15166           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
15167           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
15168           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
15169           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
15170           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
15171           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
15172           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
15173           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
15174           Utils/Test/UtilsTest.cxx,
15175           TestMPIContainer/TestMPIComponentEngine.cxx,
15176           TestMPIContainer/TestMPIContainer.cxx:
15177
15178         Use the prefix std:: instead of the directive using namespace std;
15179
15180 2010-04-13 14:11  ana
15181
15182         * src/: SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
15183           SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
15184           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
15185           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
15186           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
15187           SALOMEDS/SALOMEDS_AttReal_i.cxx,
15188           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
15189           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
15190           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
15191           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
15192           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
15193           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
15194           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
15195           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
15196           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
15197           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
15198           SALOMEDS/SALOMEDS_AttributeParameter.cxx,
15199           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
15200           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
15201           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
15202           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
15203           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
15204           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
15205           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
15206           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
15207           SALOMEDS/SALOMEDS_AttributeString_i.cxx,
15208           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
15209           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
15210           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
15211           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
15212           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
15213           SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
15214           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
15215           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
15216           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
15217           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
15218           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
15219           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
15220           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
15221           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
15222           SALOMEDS/SALOMEDS_ChildIterator.cxx,
15223           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
15224           SALOMEDS/SALOMEDS_Client.cxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
15225           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
15226           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
15227           SALOMEDS/SALOMEDS_IParameters.cxx,
15228           SALOMEDS/SALOMEDS_SComponent.cxx,
15229           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
15230           SALOMEDS/SALOMEDS_SComponent_i.cxx,
15231           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
15232           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
15233           SALOMEDS/SALOMEDS_StudyBuilder.cxx,
15234           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
15235           SALOMEDS/SALOMEDS_StudyManager.cxx,
15236           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
15237           SALOMEDS/SALOMEDS_Study_i.cxx,
15238           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
15239           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
15240           SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
15241           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
15242           ResourcesManager/ResourcesManager.cxx,
15243           ResourcesManager/SALOME_LoadRateManager.cxx,
15244           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
15245           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
15246           ResourcesManager/SALOME_ResourcesManager.cxx,
15247           Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
15248           Registry/SALOME_Registry_Server.cxx,
15249           ParallelContainer/SALOME_ParallelComponent_i.cxx,
15250           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
15251           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
15252           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
15253           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
15254           ParallelContainer/SALOME_ParallelContainer_i.cxx,
15255           Notification/NOTIFICATION.cxx,
15256           Notification/NOTIFICATION_Consumer.cxx,
15257           Notification/NOTIFICATION_Supplier.cxx,
15258           NamingService/NamingService_WaitForServerReadiness.cxx,
15259           NamingService/SALOME_NamingService.cxx,
15260           NamingService/ServiceUnreachable.cxx,
15261           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx:
15262
15263         Use the prefix std:: instead of the directive using namespace std;
15264
15265 2010-04-13 14:08  ana
15266
15267         * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFattribute.cc,
15268           HDFPersist/HDFcontainerObject.cc, HDFPersist/HDFconvert.cc,
15269           HDFPersist/HDFdataset.cc, HDFPersist/HDFexplorer.cc,
15270           HDFPersist/HDFfile.cc, HDFPersist/HDFgroup.cc,
15271           HDFPersist/HDFobject.cc, HDFPersist/test3.cxx,
15272           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
15273           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
15274           Utils/OpUtil.cxx, Utils/Utils_CommException.cxx,
15275           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
15276           Utils/Utils_ExceptHandlers.cxx, Utils/duplicate.cxx,
15277           TestContainer/SALOME_TestComponent_i.cxx,
15278           TOOLSDS/SALOMEDS_Tool.cxx,
15279           SALOMETraceCollector/SALOMETraceCollector.cxx,
15280           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
15281           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
15282           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
15283           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
15284           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
15285           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
15286           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
15287           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
15288           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
15289           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
15290           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
15291           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
15292           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
15293           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
15294           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
15295           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
15296           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
15297           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
15298           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
15299           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
15300           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
15301           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
15302           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
15303           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
15304           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
15305           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
15306           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
15307           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
15308           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
15309           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
15310           SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
15311           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
15312           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
15313           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
15314           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
15315           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
15316           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
15317           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
15318           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
15319           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
15320           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
15321           SALOMEDSImpl/testDS.cxx:
15322
15323         Use the prefix std:: instead of the directive using namespace std;
15324
15325 2010-04-13 14:04  ana
15326
15327         * src/: Basics/BasicsGenericDestructor.cxx,
15328           Basics/Basics_DirUtils.cxx, Basics/Basics_Utils.cxx,
15329           Communication/MultiCommException.cxx, Communication/Receiver.cxx,
15330           Communication/ReceiverFactory.cxx, Communication/Receivers.cxx,
15331           Communication/SALOME_Comm_i.cxx, Communication/SenderFactory.cxx,
15332           Container/Component_i.cxx, Container/Container_i.cxx,
15333           Container/Container_init_python.cxx,
15334           Container/SALOME_Container.cxx,
15335           Container/SALOME_ContainerManager.cxx,
15336           Container/SALOME_Container_SignalsHandler.cxx,
15337           Container/SALOME_FileRef_i.cxx, Container/TestSalome_file.cxx,
15338           DF/DF_Application.cxx, DF/DF_Attribute.cxx,
15339           DF/DF_ChildIterator.cxx, DF/DF_Container.cxx, DF/DF_Document.cxx,
15340           DF/DF_Label.cxx, DF/testDF.cxx,
15341           GenericObj/SALOME_GenericObj_i.cc:
15342
15343         Use the prefix std:: instead of the directive using namespace std;
15344
15345 2010-04-12 08:20  vsr
15346
15347         * src/: SALOMEDSImpl/Makefile.am,
15348           SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
15349           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
15350           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
15351           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
15352           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
15353           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
15354           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
15355           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
15356           SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
15357           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
15358           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
15359           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
15360           SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
15361           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
15362           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
15363           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
15364           SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
15365           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
15366           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx:
15367
15368         0020465: [CEA 335] sort tables in visualisation mode
15369         Implement Sort() and Swap() functions for table attributes
15370
15371 2010-04-12 08:20  vsr
15372
15373         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx:
15374
15375         file SALOMEDSImpl_AttributeTable.hxx was added on branch V5_1_3_BR on 2010-05-14 13:12:41 +0000
15376
15377 2010-04-12 08:20  vsr
15378
15379         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx:
15380
15381         file SALOMEDSImpl_AttributeTable.hxx was added on branch V6_main on 2010-05-14 12:57:26 +0000
15382
15383 2010-04-12 08:19  vsr
15384
15385         * src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx:
15386
15387         file SALOMEDSClient_AttributeTable.hxx was added on branch V5_1_3_BR on 2010-05-14 13:12:41 +0000
15388
15389 2010-04-12 08:19  vsr
15390
15391         * src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx:
15392
15393         file SALOMEDSClient_AttributeTable.hxx was added on branch V6_main on 2010-05-14 12:57:25 +0000
15394
15395 2010-04-12 08:17  vsr
15396
15397         * idl/SALOMEDS_Attributes.idl, src/SALOMEDSClient/Makefile.am,
15398           src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
15399           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
15400           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
15401           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
15402
15403         0020465: [CEA 335] sort tables in visualisation mode
15404         Implement Sort() and Swap() functions for table attributes
15405
15406 2010-04-09 18:27  caremoli
15407
15408         * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
15409           src/Container/SALOME_Container.cxx,
15410           src/Container/SALOME_Container.py,
15411           src/Container/SALOME_ContainerPy.py,
15412           src/Container/SALOME_Container_i.hxx,
15413           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
15414           src/MPIContainer/MPIContainer_i.cxx,
15415           src/MPIContainer/MPIContainer_i.hxx,
15416           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
15417           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
15418           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
15419           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
15420           src/TestContainer/TestContainer.cxx:
15421
15422         CCAR: improvement to the component loading mechanism of SALOME (issue 20675)
15423         Main modifications are:
15424         - add an out string argument to container methods (load_component_Library and create_component_instance_env)
15425         to report reason when load or create fails (INTERFACE CHANGE)
15426         - try to detect if the implementation is C++, python or executable based on intermediate errors (dlopen, dlsym,
15427         import, ...)
15428         - some refactoring to put specific parts in separate methods
15429         - minimal update of MPIContainer and ParallelContainer
15430         - keep LifeCycle unchanged
15431
15432 2010-04-08 18:30  vsr
15433
15434         * idl/SALOMEDS_Attributes.idl,
15435           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
15436           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
15437           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
15438           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
15439           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
15440           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
15441           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
15442           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
15443           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
15444           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
15445           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
15446           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
15447           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
15448           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
15449           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
15450           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
15451           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
15452           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
15453
15454         Improve SALOMEDS attributes interfaces:
15455         - Improve attributes documentation
15456         - Redesing table attributes hierarchy
15457         - Add missing interface functions (GetRowTitle(), GetColumnTitle(), GetRowUnit()) for table attributes
15458         - Improve AttributeParameter (add named CORBA exception InvalidIdentifier)
15459
15460 2010-04-08 12:31  dmv
15461
15462         * doc/salome/: gui/static/doxygen.css, tui/static/doxygen.css,
15463           tui/static/header.html.in:
15464
15465         Improve Documentation style.
15466
15467 2010-04-07 13:08  dmv
15468
15469         * doc/salome/gui/static/doxygen.css:
15470
15471         Improve documentation style
15472
15473 2010-04-07 12:57  vsr
15474
15475         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx:
15476
15477         Fix bugs of GetRowUnits() / GetRowTitles() functions
15478
15479 2010-04-07 09:20  vsr
15480
15481         * doc/salome/gui/static/doxygen.css:
15482
15483         file doxygen.css was added on branch V6_main on 2010-05-14 12:57:06 +0000
15484
15485 2010-04-07 09:20  vsr
15486
15487         * doc/salome/tui/static/doxygen.css:
15488
15489         file doxygen.css was added on branch V6_main on 2010-05-14 12:57:07 +0000
15490
15491 2010-04-07 09:20  vsr
15492
15493         * doc/salome/gui/images/head.png:
15494
15495         file head.png was added on branch V6_main on 2010-05-14 12:57:06 +0000
15496
15497 2010-04-07 09:20  vsr
15498
15499         * doc/salome/tui/images/head.png:
15500
15501         file head.png was added on branch V6_main on 2010-05-14 12:57:07 +0000
15502
15503 2010-04-07 09:20  vsr
15504
15505         * doc/salome/gui/static/header.html.in:
15506
15507         file header.html.in was added on branch V6_main on 2010-05-14 12:57:06 +0000
15508
15509 2010-04-07 09:20  vsr
15510
15511         * doc/salome/tui/static/header.html.in:
15512
15513         file header.html.in was added on branch V6_main on 2010-05-14 12:57:07 +0000
15514
15515 2010-04-07 09:20  vsr
15516
15517         * doc/salome/tui/input/index.dox:
15518
15519         file index.dox was added on branch V6_main on 2010-05-14 12:57:07 +0000
15520
15521 2010-04-07 09:20  dmv
15522
15523         * configure.ac, doc/salome/gui/Makefile.am,
15524           doc/salome/gui/doxyfile.in, doc/salome/gui/images/head.png,
15525           doc/salome/gui/static/doxygen.css,
15526           doc/salome/gui/static/footer.html,
15527           doc/salome/gui/static/header.html,
15528           doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
15529           doc/salome/tui/doxyfile.in, doc/salome/tui/images/head.png,
15530           doc/salome/tui/input/index.dox,
15531           doc/salome/tui/static/doxygen.css,
15532           doc/salome/tui/static/footer.html,
15533           doc/salome/tui/static/header.html,
15534           doc/salome/tui/static/header.html.in:
15535
15536         Improve documentation style
15537
15538 2010-04-06 18:14  caremoli
15539
15540         * src/Container/: Component_i.cxx, SALOME_Container.cxx,
15541           TestSalome_file.cxx:
15542
15543         CCAR: add some lacking declarations
15544
15545 2010-03-25 14:34  ouv
15546
15547         * src/HDFPersist/: HDFascii.cc, HDFascii.hxx:
15548
15549         Issue 0020613: EDF 1106 : Modify Node Marker in SMESH and VISU
15550
15551 2010-03-23 15:48  adam
15552
15553         * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
15554
15555         Remove warnings
15556
15557 2010-03-23 11:48  adam
15558
15559         * salome_adm/cmake_files/am2cmake.py:
15560
15561         compatibility hexotic
15562
15563 2010-03-23 11:26  tajchman
15564
15565         * salome_adm/unix/config_files/check_openmpi.m4:
15566
15567         set WITHMPI value when using OpenMPI
15568
15569 2010-03-23 10:32  adam
15570
15571         * salome_adm/cmake_files/am2cmake.py:
15572
15573         Compatibility GHS3DPRLPLUGIN
15574
15575 2010-03-22 10:23  caremoli
15576
15577         * bin/shutdownSalome.py, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
15578           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
15579           src/SALOMEDS/SALOMEDS_Server.cxx:
15580
15581         CCAR: improve the shutdown process
15582         1- use salome_kernel.py module instead of salome.py in shutdownSalome.py to avoid calling Study
15583         2- disconnect all connections in the connection manager
15584         3- change the order of servers shutdown :
15585             - connection manager
15586             - study
15587             - module catalog
15588             - registry
15589             - launcher
15590             - logger
15591         and add some waiting time between each shutdown because it is asynchronous.
15592
15593 2010-03-22 10:15  caremoli
15594
15595         * bin/appli_gen.py, bin/config_appli.xml,
15596           doc/salome/salome_application.dox:
15597
15598         CCAR: add a new parameter (resources) to configuration of SALOME Application
15599         It is a new entry in config_appli.xml file (tag resources) that gives the path of a user resources catalog
15600         It is added to the SALOME Application as the USER_CATALOG_RESOURCES_FILE environment variable in env.d/configSalome.sh
15601
15602 2010-03-22 09:31  caremoli
15603
15604         * src/DSC/: DSC_Python/calcium.i,
15605           DSC_User/Datastream/CouplingPolicy.hxx,
15606           DSC_User/Datastream/GenericPort.hxx,
15607           DSC_User/Datastream/Calcium/Calcium.c,
15608           DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
15609           DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
15610           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
15611           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
15612           DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
15613           DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
15614           DSC_User/Datastream/Calcium/calciumf.c:
15615
15616         CCAR: add requests cp_effi and cp_efft to calcium api
15617
15618 2010-03-19 18:53  adam
15619
15620         * src/: Basics/BasicsGenericDestructor.hxx,
15621           Basics/Basics_DirUtils.cxx, DF/DF_ChildIterator.cxx,
15622           DF/DF_Label.cxx, DF/testDF.cxx,
15623           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFascii.cc,
15624           HDFPersist/HDFconvert.cc, HDFPersist/HDFdataset.cc,
15625           HDFPersist/HDFdataset.hxx, HDFPersist/HDFfile.cc,
15626           HDFPersist/HDFobject.cc, Logger/SALOME_Logger_Server.hxx,
15627           Logger/SALOME_Logger_Server_main.cxx,
15628           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
15629           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
15630           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
15631           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
15632           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
15633           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
15634           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
15635           NamingService/SALOME_NamingService.cxx,
15636           NamingService/SALOME_NamingService.hxx,
15637           Notification/NOTIFICATION.cxx,
15638           Notification/NOTIFICATION_Consumer.cxx,
15639           Notification/NOTIFICATION_Supplier.cxx,
15640           Notification/NOTIFICATION_Supplier.hxx,
15641           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
15642           Registry/SALOME_Registry_Server.cxx,
15643           ResourcesManager/ResourcesManager.hxx,
15644           ResourcesManager/SALOME_LoadRateManager.cxx,
15645           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
15646           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
15647           ResourcesManager/SALOME_ResourcesManager.hxx,
15648           Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
15649           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx:
15650
15651         Remove some warnings in windows compilation ...
15652
15653 2010-03-19 18:28  caremoli
15654
15655         * src/DSC/: DSC_Python/calcium.i,
15656           DSC_User/Datastream/Calcium/Calcium.c,
15657           DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
15658           DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
15659           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
15660           DSC_User/Datastream/Calcium/calcium.h,
15661           DSC_User/Datastream/Calcium/calciumf.c:
15662
15663         CCAR: CPEFFI and CPEFFT functions renamed CPFINI and CPFINT as in original CALCIUM API
15664
15665 2010-03-19 17:57  caremoli
15666
15667         * src/DSC/: DSC_Python/calcium.i,
15668           DSC_User/Datastream/CouplingPolicy.hxx,
15669           DSC_User/Datastream/GenericPort.hxx,
15670           DSC_User/Datastream/Calcium/Calcium.c,
15671           DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
15672           DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
15673           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
15674           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
15675           DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
15676           DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
15677           DSC_User/Datastream/Calcium/calciumf.c:
15678
15679         CCAR: add two requests to CALCIUM API (CPEFFI and CPEFFT)
15680         These requests remove all dataid before a given time (cpefft) or iteration number (cpeffi)
15681         C, Fortran and Python API are implemented
15682
15683 2010-03-19 14:42  vsr
15684
15685         * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
15686
15687         Issue 0020794: A strange cast (const char*) --> bool in SALOME_ModuleCatalog_Handler.cxx
15688
15689 2010-03-19 10:38  ribes
15690
15691         * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
15692
15693         - Add new class to improve python scripts for Launcher
15694
15695 2010-03-17 18:31  caremoli
15696
15697         * src/Container/Container_i.cxx:
15698
15699         CCAR: duplicate env var (strdup) before calling putenv that does not copy the string
15700         memory leak but small
15701
15702 2010-03-16 18:15  caremoli
15703
15704         * idl/Makefile.am, idl/SALOME_Component.idl,
15705           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
15706           src/Container/SALOME_ContainerManager.cxx,
15707           src/Container/SALOME_ContainerManager.hxx,
15708           src/Container/SALOME_Container_i.hxx,
15709           src/MPIContainer/MPIContainer_i.cxx,
15710           src/MPIContainer/MPIContainer_i.hxx,
15711           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
15712           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
15713           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
15714           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
15715
15716         CCAR: add a method to Container idl (create_component_instance_env) to be able
15717         to create a standalone component (executable) with predefined environment variables.
15718         It's mainly the same method as create_component_instance with a third argument that is
15719         a dict(string,Any) to pass in the environment variables.
15720         create_component_instance has been reimplemented by calling create_component_instance_env with an empty dict (for compatibility with 5.1.3)
15721         MPIContainer and ParallelContainer have been updated
15722
15723 2010-03-12 10:26  caremoli
15724
15725         * src/DSC/DSC_Python/calcium.i:
15726
15727         CCAR: add lacking #ifdef WITH_NUMPY in calcium.i for freearg typemaps
15728
15729 2010-03-12 08:59  caremoli
15730
15731         * resources/KERNELCatalog.xml.in, src/DSC/DSC_Python/calcium.i,
15732           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
15733           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
15734           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
15735           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
15736           src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
15737
15738         CCAR: complete Calcium C API with cp_lln, cp_eln and remove some bugs in fortran and python interfaces
15739               add CALCIUM_long as SALOME type
15740
15741 2010-03-11 19:00  adam
15742
15743         * salome_adm/cmake_files/am2cmake.py:
15744
15745         Compile the noinst libraries as static and
15746         do not install them.
15747
15748 2010-03-11 18:59  adam
15749
15750         * salome_adm/cmake_files/FindPLATFORM.cmake:
15751
15752         Enable warnings into windows ...
15753
15754 2010-03-03 09:45  vsr
15755
15756         * salome_adm/cmake_files/FindLIBXML2.cmake:
15757
15758         Additional fix of libxml2 check procedures for PARAVIS compilation (Linux)
15759
15760 2010-03-03 09:43  vsr
15761
15762         * salome_adm/cmake_files/FindLIBXML2.cmake:
15763
15764         Revert previous change (wrong branch, it's for 6x)
15765
15766 2010-03-03 09:40  vsr
15767
15768         * salome_adm/cmake_files/FindLIBXML2.cmake:
15769
15770         Additional fix of libxml2 check procedures for PARAVIS compilation (Linux)
15771
15772 2010-03-02 16:44  adam
15773
15774         * salome_adm/cmake_files/am2cmake.py:
15775
15776         [no log message]
15777
15778 2010-03-02 13:45  vsr
15779
15780         * salome_adm/cmake_files/: FindBOOST.cmake, FindLIBXML2.cmake:
15781
15782         Fix boost and libxml2 check procedures for PARAVIS compilation
15783
15784 2010-03-02 10:47  adam
15785
15786         * salome_adm/cmake_files/am2cmake.py:
15787
15788         [no log message]
15789
15790 2010-03-02 10:44  vsr
15791
15792         * src/KERNEL_PY/salome_version.py:
15793
15794         Issue 0020739: EDF 1215 STUDY : Know the hexadecimal version of Salome
15795
15796 2010-03-01 15:34  secher
15797
15798         * src/MPIContainer/: MPIContainer_i.cxx, MPIObject_i.cxx,
15799           MPIObject_i.hxx:
15800
15801         replace POException by SALOME_Exception
15802
15803 2010-02-23 08:20  ageay
15804
15805         * src/Communication/SALOME_Comm_i.hxx:
15806
15807         Remove useless method.
15808
15809 2010-02-19 14:54  adam
15810
15811         * src/: Container/SALOME_ContainerManager.cxx,
15812           Launcher/Launcher_Job.cxx, Launcher/Launcher_Job.hxx,
15813           Launcher/Launcher_Job_Command.hxx,
15814           Launcher/Launcher_Job_PythonSALOME.hxx,
15815           Launcher/Launcher_Job_SALOME.hxx,
15816           Launcher/Launcher_Job_YACSFile.hxx, Launcher/SALOME_Launcher.cxx:
15817
15818         windows port
15819
15820 2010-02-19 11:30  secher
15821
15822         * src/Container/SALOME_ContainerManager.cxx:
15823
15824         allow launch MPI containers when MPI environment is not defined in default environment but in Salome environment
15825
15826 2010-02-17 10:46  adv
15827
15828         * idl/Makefile.am, salome_adm/unix/Makefile.am,
15829           salome_adm/unix/make_common_starter.am,
15830           salome_adm/unix/config_files/check_Kernel.m4,
15831           src/Launcher/Launcher.hxx,
15832           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
15833           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
15834           src/ParallelContainer/Parallel_Salome_file_i.hxx,
15835           src/SALOMEDS/SALOMEDS.hxx,
15836           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
15837           src/SALOMEDS/SALOMEDS_SObject.hxx:
15838
15839         Improve build system: install each module's header files to the sub-directory of ${prefix}/include/salome/${module_name}
15840
15841 2010-02-17 10:30  adv
15842
15843         * src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
15844
15845         Fix build procedure error: wrong make clean rule
15846
15847 2010-02-16 11:53  ribes
15848
15849         * src/ResourcesManager/ResourcesManager.cxx:
15850
15851         - English patch - Thanks to Gilles David
15852
15853 2010-02-12 09:27  vsr
15854
15855         * src/SALOMEDSImpl/: Makefile.am, SALOMEDSImpl_Study.cxx:
15856
15857         Issue 20509: EDF 1065 OTHER : Add the Salome version in the header of the dump
15858
15859 2010-02-11 16:20  ribes
15860
15861         * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
15862
15863         - Force Bash use -> problem with recent Debian Linux
15864
15865 2010-02-11 11:10  ouv
15866
15867         * salome_adm/unix/config_files/check_libxml.m4:
15868
15869         Issue 0020692: Duplicate check_*.m4 between modules.
15870
15871 2010-02-10 16:34  ribes
15872
15873         * clean_configure, idl/Makefile.am,
15874           src/Launcher/Launcher_Job_SALOME.cxx:
15875
15876         - Better clean_configure with libtool > 2
15877         - Parallel compilation with PaCO++
15878         - Better Catalog Resource generation
15879
15880 2010-02-10 10:47  caremoli
15881
15882         * bin/virtual_salome.py:
15883
15884         CCAR: improve SALOME application generation : links all subdirectories in share/salome
15885         not only resources
15886
15887 2010-02-09 11:21  caremoli
15888
15889         * bin/appliskel/getAppliPath.py:
15890
15891         CCAR: improve getAppliPath.py to handle HOME directories with symbolic links
15892
15893 2010-02-04 17:23  ribes
15894
15895         * idl/Makefile.am, src/Container/SALOME_ContainerManager.cxx,
15896           src/Container/SALOME_ContainerManager.hxx,
15897           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
15898           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
15899           src/ResourcesManager/SALOME_ResourcesManager.cxx,
15900           src/ResourcesManager/SALOME_ResourcesManager.hxx:
15901
15902         - New Version with PaCO++
15903
15904 2010-02-01 12:05  srn
15905
15906         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
15907
15908         Fixed method GetLoggedDeltas, now they are sorted by object's entries
15909
15910 2010-02-01 11:35  srn
15911
15912         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
15913
15914         Fixed method RemoveObjectWithChildren, the children are not put in the modification delta
15915
15916 2010-01-29 08:09  srn
15917
15918         * idl/SALOMEDS.idl, src/SALOMEDSImpl/Makefile.am,
15919           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
15920           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
15921           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
15922           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
15923           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
15924           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
15925           src/SALOMEDSImpl/Test/Makefile.am,
15926           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
15927           src/SALOMEDS/SALOMEDS_Study_i.cxx,
15928           src/SALOMEDS/SALOMEDS_Study_i.hxx,
15929           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
15930           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
15931
15932         Added storing of modification deltas to enable optimization of the Object Browser
15933
15934 2010-01-27 15:29  ribes
15935
15936         * src/Container/SALOME_ContainerManager.cxx:
15937
15938         Bug in FindContainer
15939
15940 2010-01-27 09:24  vsr
15941
15942         * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
15943           SALOMEDSImpl/Makefile.am,
15944           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
15945           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
15946           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
15947
15948         Improve AttributeUserID management: implement the GUIDs repository
15949
15950 2010-01-26 11:40  barate
15951
15952         * src/Launcher/: Launcher_Job.cxx, Launcher_Job_Command.cxx,
15953           Launcher_Job_SALOME.cxx:
15954
15955         Use constants in namespace Batch in libBatch. Warning: this change will break Kernel compilation with libBatch versions older than tag trunk_20100120.
15956
15957 2010-01-25 19:12  caremoli
15958
15959         * bin/appli_clean.sh:
15960
15961         CCAR: remove creation 0 file in appli_clean.sh script shell
15962
15963 2010-01-25 15:35  ribes
15964
15965         * src/Launcher/Launcher_Job.cxx:
15966
15967         - Bug in check time duration
15968
15969 2010-01-21 18:02  ribes
15970
15971         * idl/SALOME_ContainerManager.idl,
15972           src/ResourcesManager/ResourcesManager.cxx,
15973           src/ResourcesManager/SALOME_ResourcesManager.cxx,
15974           src/ResourcesManager/SALOME_ResourcesManager.hxx:
15975
15976         Adding RemoveResource
15977
15978 2010-01-21 17:30  ribes
15979
15980         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
15981
15982         - appli_path bug write fix
15983
15984 2010-01-21 12:05  ribes
15985
15986         * idl/SALOME_ContainerManager.idl,
15987           src/ResourcesManager/SALOME_ResourcesManager.cxx,
15988           src/ResourcesManager/SALOME_ResourcesManager.hxx:
15989
15990         Rename new ResourcesManager CORBA method
15991
15992 2010-01-21 09:09  vsr
15993
15994         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
15995
15996         Enable SALOME_GenericObj management by AttributeIOR back.
15997
15998 2010-01-20 17:05  ribes
15999
16000         * idl/SALOME_ContainerManager.idl,
16001           src/ResourcesManager/ResourcesManager.cxx,
16002           src/ResourcesManager/ResourcesManager.hxx,
16003           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16004           src/ResourcesManager/SALOME_ResourcesManager.cxx,
16005           src/ResourcesManager/SALOME_ResourcesManager.hxx:
16006
16007         - Adding a new method to SALOME_ResourceManager:
16008
16009           //! Add a new resource to the resource_manager
16010           /*!
16011               write -> true, resource manager will add it into a xml_file
16012               xml_file -> could be empty, in this case if write is true, resource manager will write
16013               the resource in its first ResourceCatalog file
16014             */
16015           void AddResourceDefinition(in ResourceDefinition new_resource, in boolean write, in string xml_file)
16016             raises (SALOME::SALOME_Exception);
16017
16018 2010-01-20 15:06  ribes
16019
16020         * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
16021
16022         - Adding PATH and PYTHONPATH of workdirectory in job environnement
16023
16024 2010-01-19 19:09  caremoli
16025
16026         * src/Container/Component_i.cxx:
16027
16028         CCAR: delete the notification supplier CORBA object with deactivate_object and _remove_ref
16029
16030 2010-01-19 17:49  caremoli
16031
16032         * src/Container/Component_i.cxx:
16033
16034         CCAR: revert the change because the problem is in NOTIFICATION (issue 20661)
16035
16036 2010-01-19 11:17  ribes
16037
16038         * src/Container/SALOME_ContainerManager.hxx:
16039
16040         - Merger bug
16041
16042 2010-01-19 11:06  ribes
16043
16044         * idl/SALOME_ContainerManager.idl,
16045           src/Container/SALOME_ContainerManager.cxx,
16046           src/Container/SALOME_ContainerManager.hxx,
16047           src/Launcher/Launcher.cxx, src/Launcher/Makefile.am,
16048           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16049           src/ResourcesManager/SALOME_ResourcesManager.cxx:
16050
16051         Merge from mergeto_V5_1_main_19Jan10
16052
16053 2010-01-19 10:57  ribes
16054
16055         * salome_adm/cmake_files/FindBOOST.cmake,
16056           salome_adm/cmake_files/FindHDF5.cmake,
16057           salome_adm/cmake_files/FindPLATFORM.cmake,
16058           salome_adm/cmake_files/am2cmake.py,
16059           src/Basics/BasicsGenericDestructor.cxx,
16060           src/Basics/BasicsGenericDestructor.hxx,
16061           src/Communication/Receivers.cxx,
16062           src/Communication/SALOME_Comm_i.cxx,
16063           src/Communication/SALOME_Comm_i.hxx,
16064           src/Communication/SALOME_Matrix_i.cxx,
16065           src/Communication/SenderFactory.cxx,
16066           src/Container/Component_i.cxx,
16067           src/Container/SALOME_ContainerManager.cxx,
16068           src/Container/SALOME_ContainerManager.hxx,
16069           src/DF/DF_ChildIterator.cxx, src/DF/DF_definitions.hxx,
16070           src/DF/testDF.cxx, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
16071           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
16072           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
16073           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
16074           src/DSC/DSC_Basic/DSC_interface.hxx,
16075           src/DSC/DSC_Basic/PortProperties_i.hxx,
16076           src/DSC/DSC_User/DSC_Exception.hxx,
16077           src/DSC/DSC_User/Superv_Component_i.cxx,
16078           src/DSC/DSC_User/Superv_Component_i.hxx,
16079           src/DSC/DSC_User/provides_port.hxx,
16080           src/DSC/DSC_User/uses_port.hxx,
16081           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
16082           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
16083           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
16084           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
16085           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
16086           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
16087           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
16088           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
16089           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
16090           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
16091           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
16092           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
16093           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
16094           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
16095           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
16096           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
16097           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
16098           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
16099           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
16100           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
16101           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
16102           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
16103           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
16104           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
16105           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
16106           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
16107           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
16108           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
16109           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
16110           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
16111           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
16112           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
16113           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
16114           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
16115           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
16116           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
16117           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
16118           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
16119           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
16120           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
16121           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
16122           src/DSC/DSC_User/Datastream/Calcium/version.h,
16123           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
16124           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
16125           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
16126           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
16127           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
16128           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
16129           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
16130           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
16131           src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrGetType.c,
16132           src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
16133           src/HDFPersist/HDFdatasetGetDim.c,
16134           src/HDFPersist/HDFdatasetGetType.c,
16135           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFfileCreate.c,
16136           src/HDFPersist/HDFobjectIdentify.c, src/HDFPersist/HDFtypes.h,
16137           src/HDFPersist/hdfi.h, src/HDFPersist/test3.cxx,
16138           src/HDFPersist/test4.cxx, src/HDFPersist/test6.cxx,
16139           src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_test.py,
16140           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
16141           src/Launcher/Launcher_Job.cxx, src/Launcher/SALOME_Launcher.cxx,
16142           src/Launcher/SALOME_Launcher_Handler.cxx,
16143           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16144           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
16145           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
16146           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
16147           src/LifeCycleCORBA/TestContainerManager.cxx,
16148           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
16149           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
16150           src/Logger/SALOME_Logger_Server.cxx,
16151           src/Logger/SALOME_Logger_Server.hxx,
16152           src/Logger/SALOME_Logger_Server_main.cxx,
16153           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
16154           src/MPIContainer/MPIContainer_i.cxx,
16155           src/MPIContainer/MPIContainer_i.hxx,
16156           src/MPIContainer/MPIObject_i.cxx,
16157           src/MPIContainer/SALOME_MPIContainer.cxx,
16158           src/ModuleCatalog/PathPrefix.hxx,
16159           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
16160           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
16161           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
16162           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
16163           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
16164           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
16165           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
16166           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
16167           src/NamingService/NamingService_WaitForServerReadiness.cxx,
16168           src/NamingService/NamingService_WaitForServerReadiness.hxx,
16169           src/NamingService/SALOME_NamingService.cxx,
16170           src/NamingService/SALOME_NamingService.hxx,
16171           src/NamingService/ServiceUnreachable.cxx,
16172           src/NamingService/ServiceUnreachable.hxx,
16173           src/NamingService/Test/NamingServiceTest.cxx,
16174           src/NamingService/Test/NamingServiceTest.hxx,
16175           src/Notification/CosNotifyShorthands.h,
16176           src/Notification/NOTIFICATION_Consumer.cxx,
16177           src/ParallelContainer/Parallel_Salome_file_i.cxx,
16178           src/ParallelContainer/Parallel_Salome_file_i.hxx,
16179           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
16180           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
16181           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
16182           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
16183           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
16184           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
16185           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
16186           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
16187           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
16188           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
16189           src/Registry/RegistryConnexion.hxx,
16190           src/Registry/RegistryService.hxx,
16191           src/Registry/SALOME_Registry_Server.cxx,
16192           src/ResourcesManager/ResourcesManager.cxx,
16193           src/ResourcesManager/ResourcesManager.hxx,
16194           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16195           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
16196           src/ResourcesManager/SALOME_ResourcesManager.cxx,
16197           src/ResourcesManager/SALOME_ResourcesManager.hxx,
16198           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
16199           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
16200           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
16201           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
16202           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
16203           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
16204           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
16205           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
16206           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
16207           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
16208           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
16209           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
16210           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
16211           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
16212           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
16213           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
16214           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
16215           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
16216           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
16217           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
16218           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
16219           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
16220           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
16221           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
16222           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
16223           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
16224           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
16225           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
16226           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
16227           src/SALOMEDS/SALOMEDS_Client.cxx,
16228           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
16229           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
16230           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
16231           src/SALOMEDS/SALOMEDS_SComponent.cxx,
16232           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
16233           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
16234           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
16235           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
16236           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
16237           src/SALOMEDS/SALOMEDS_Server.cxx,
16238           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
16239           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
16240           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
16241           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
16242           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
16243           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
16244           src/SALOMEDS/SALOMEDS_Study_i.cxx,
16245           src/SALOMEDS/SALOMEDS_Study_i.hxx,
16246           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
16247           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
16248           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
16249           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
16250           src/SALOMEDS/Test/TestSALOMEDS.cxx,
16251           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
16252           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
16253           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
16254           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
16255           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
16256           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
16257           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
16258           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
16259           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
16260           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
16261           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
16262           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
16263           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
16264           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
16265           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
16266           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
16267           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
16268           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
16269           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
16270           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
16271           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
16272           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
16273           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
16274           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
16275           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
16276           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
16277           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
16278           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
16279           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
16280           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
16281           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
16282           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
16283           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
16284           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
16285           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
16286           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
16287           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
16288           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
16289           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
16290           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
16291           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
16292           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
16293           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
16294           src/SALOMELocalTrace/FileTraceCollector.cxx,
16295           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
16296           src/SALOMELocalTrace/LocalTraceCollector.cxx,
16297           src/SALOMELocalTrace/utilities.h,
16298           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
16299           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
16300           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
16301           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
16302           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
16303           src/TestContainer/SALOME_TestComponent_i.cxx,
16304           src/TestContainer/SALOME_TestComponent_i.hxx,
16305           src/TestContainer/TestContainer.cxx,
16306           src/TestMPIContainer/TestMPIComponentEngine.cxx,
16307           src/TestMPIContainer/TestMPIComponentEngine.hxx,
16308           src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/OpUtil.cxx,
16309           src/Utils/Utils_CommException.hxx,
16310           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
16311           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
16312           src/Utils/Utils_ExceptHandlers.cxx, src/Utils/Utils_Identity.cxx,
16313           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
16314           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
16315           src/Utils/Utils_ORB_INIT.hxx,
16316           src/Utils/Utils_SALOME_Exception.cxx,
16317           src/Utils/Utils_SALOME_Exception.hxx,
16318           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
16319           src/Utils/duplicate.cxx:
16320
16321         Merge from mergeto_BR_V51_AR_19Jan10
16322
16323 2010-01-18 17:27  ribes
16324
16325         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
16326
16327         Bug when getting resource description
16328
16329 2010-01-18 15:07  barate
16330
16331         * src/Launcher/Launcher_Job.cxx:
16332
16333         Changed Launcher_Job to use new libBatch status codes.
16334
16335 2010-01-18 14:03  vsr
16336
16337         * src/Container/Component_i.cxx:
16338
16339         0020661: [CEA 387 ] bug on exit of Salome after a little yacs graph
16340
16341 2010-01-15 11:42  ribes
16342
16343         * idl/SALOME_ContainerManager.idl:
16344
16345         Change in the JobParameters.
16346         Add a new sequence for specific optional arguments
16347
16348 2010-01-14 16:32  vsr
16349
16350         * src/KERNEL_PY/salome_test.py:
16351
16352         Fix problem in salome_test.py caused by recent replacement of pointe.med file
16353
16354 2010-01-13 14:10  secher
16355
16356         * src/Launcher/: Launcher.cxx, Makefile.am:
16357
16358         debug batch job command from xml file
16359
16360 2010-01-12 17:36  ribes
16361
16362         * src/Launcher/Launcher.cxx:
16363
16364         - Problem with the use of the C++ map
16365
16366 2010-01-06 15:24  ribes
16367
16368         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
16369
16370         - Check if we add a resource already added
16371         - Write a warning and kepp last resource found
16372
16373 2010-01-04 16:22  secher
16374
16375         * src/Container/: SALOME_ContainerManager.cxx,
16376           SALOME_ContainerManager.hxx:
16377
16378         improvement on mutex
16379
16380 2010-01-04 12:39  adam
16381
16382         * salome_adm/cmake_files/am2cmake.py:
16383
16384         Portability pyhello
16385
16386 2010-01-04 12:35  adam
16387
16388         * salome_adm/cmake_files/am2cmake.py:
16389
16390         Fix multiple definitions in swig options
16391
16392 2010-01-04 11:50  adam
16393
16394         * salome_adm/cmake_files/am2cmake.py:
16395
16396         Portability superv
16397
16398 2010-01-04 11:48  adam
16399
16400         * salome_adm/cmake_files/FindBOOST.cmake:
16401
16402         Don't search the boost libs in system path if using WITH_BOOST
16403
16404 2010-01-04 11:47  adam
16405
16406         * salome_adm/cmake_files/FindHDF5.cmake:
16407
16408         Compatibility with new hdf versions
16409
16410 2010-01-04 11:47  adam
16411
16412         * salome_adm/cmake_files/FindPLATFORM.cmake:
16413
16414         Some piece of code in salome does not compile with -O2 !!!
16415
16416 2009-12-21 11:00  ouv
16417
16418         * idl/SALOME_Notebook.idl,
16419           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
16420
16421         Debug
16422
16423 2009-12-18 16:11  secher
16424
16425         * src/: Container/SALOME_ContainerManager.cxx,
16426           Container/SALOME_ContainerManager.hxx,
16427           Launcher/Launcher_Job_SALOME.cxx:
16428
16429         debug for CCRT
16430
16431 2009-12-18 15:20  secher
16432
16433         * src/: Container/SALOME_ContainerManager.cxx,
16434           Container/SALOME_ContainerManager.hxx,
16435           Launcher/Launcher_Job_SALOME.cxx:
16436
16437         debug for CCRT
16438
16439 2009-12-17 12:57  vsr
16440
16441         * src/KERNEL_PY/salome.py:
16442
16443         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.
16444
16445 2009-12-16 14:24  vsr
16446
16447         * src/KERNEL_PY/salome.py:
16448
16449         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).
16450
16451 2009-12-16 11:26  eap
16452
16453         * src/: Basics/BasicsGenericDestructor.cxx,
16454           Basics/BasicsGenericDestructor.hxx, Communication/Receivers.cxx,
16455           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
16456           Communication/SALOME_Matrix_i.cxx,
16457           Communication/SenderFactory.cxx,
16458           Container/SALOME_ContainerManager.cxx, DF/DF_ChildIterator.cxx,
16459           DF/DF_definitions.hxx, DF/testDF.cxx,
16460           DSC/DSC_Basic/ConnectionManager_i.cxx,
16461           DSC/DSC_Basic/ConnectionManager_i.hxx,
16462           DSC/DSC_Basic/DSC_Callbacks.hxx, DSC/DSC_Basic/DSC_i.cxx,
16463           DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_Basic/DSC_interface.cxx,
16464           DSC/DSC_Basic/DSC_interface.hxx,
16465           DSC/DSC_Basic/PortProperties_i.hxx,
16466           DSC/DSC_User/DSC_Exception.hxx,
16467           DSC/DSC_User/Superv_Component_i.cxx,
16468           DSC/DSC_User/Superv_Component_i.hxx,
16469           DSC/DSC_User/provides_port.hxx, DSC/DSC_User/uses_port.hxx,
16470           DSC/DSC_User/Basic/data_short_port_provides.cxx,
16471           DSC/DSC_User/Basic/data_short_port_uses.cxx,
16472           DSC/DSC_User/Basic/data_short_port_uses.hxx,
16473           DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
16474           DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
16475           DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
16476           DSC/DSC_User/Datastream/CouplingPolicy.hxx,
16477           DSC/DSC_User/Datastream/DataIdFilter.hxx,
16478           DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
16479           DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
16480           DSC/DSC_User/Datastream/GenericUsesPort.hxx,
16481           DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
16482           DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
16483           DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
16484           DSC/DSC_User/Datastream/Calcium/Calcium.c,
16485           DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
16486           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
16487           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
16488           DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
16489           DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
16490           DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
16491           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
16492           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
16493           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
16494           DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
16495           DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
16496           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
16497           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
16498           DSC/DSC_User/Datastream/Calcium/calcium.h,
16499           DSC/DSC_User/Datastream/Calcium/calciumE.h,
16500           DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
16501           DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
16502           DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
16503           DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
16504           DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
16505           DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
16506           DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
16507           DSC/DSC_User/Datastream/Calcium/calciumf.c,
16508           DSC/DSC_User/Datastream/Calcium/calciumf.h,
16509           DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
16510           DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
16511           DSC/DSC_User/Datastream/Calcium/version.h,
16512           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
16513           DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
16514           DSC/ParallelDSC/ParallelDSC_i.cxx,
16515           DSC/ParallelDSC/ParallelDSC_i.hxx,
16516           DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
16517           DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
16518           DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
16519           DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
16520           HDFPersist/HDFascii.hxx, HDFPersist/HDFattrGetType.c,
16521           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetCreate.c,
16522           HDFPersist/HDFdatasetGetDim.c, HDFPersist/HDFdatasetGetType.c,
16523           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFfileCreate.c,
16524           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFtypes.h,
16525           HDFPersist/hdfi.h, HDFPersist/test3.cxx, HDFPersist/test4.cxx,
16526           HDFPersist/test6.cxx, Launcher/BatchTest.cxx,
16527           Launcher/Launcher.cxx, Launcher/Launcher_Job.cxx,
16528           Launcher/Launcher_Job_SALOME.cxx, Launcher/SALOME_Launcher.cxx,
16529           Launcher/SALOME_Launcher_Handler.cxx,
16530           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16531           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
16532           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
16533           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
16534           LifeCycleCORBA/TestContainerManager.cxx,
16535           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
16536           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
16537           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
16538           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
16539           Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx,
16540           MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
16541           MPIContainer/SALOME_MPIContainer.cxx,
16542           ModuleCatalog/PathPrefix.hxx,
16543           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
16544           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
16545           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
16546           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
16547           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
16548           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
16549           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
16550           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
16551           NamingService/NamingService_WaitForServerReadiness.cxx,
16552           NamingService/NamingService_WaitForServerReadiness.hxx,
16553           NamingService/SALOME_NamingService.cxx,
16554           NamingService/SALOME_NamingService.hxx,
16555           NamingService/ServiceUnreachable.cxx,
16556           NamingService/ServiceUnreachable.hxx,
16557           NamingService/Test/NamingServiceTest.cxx,
16558           NamingService/Test/NamingServiceTest.hxx,
16559           Notification/CosNotifyShorthands.h,
16560           Notification/NOTIFICATION_Consumer.cxx,
16561           ParallelContainer/Parallel_Salome_file_i.cxx,
16562           ParallelContainer/Parallel_Salome_file_i.hxx,
16563           ParallelContainer/SALOME_ParallelComponent_i.cxx,
16564           ParallelContainer/SALOME_ParallelComponent_i.hxx,
16565           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
16566           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
16567           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
16568           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
16569           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
16570           ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
16571           ParallelContainer/SALOME_ParallelContainer_i.cxx,
16572           ParallelContainer/SALOME_ParallelContainer_i.hxx,
16573           Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
16574           Registry/SALOME_Registry_Server.cxx,
16575           ResourcesManager/ResourcesManager.cxx,
16576           ResourcesManager/ResourcesManager.hxx,
16577           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16578           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
16579           ResourcesManager/SALOME_ResourcesManager.cxx,
16580           ResourcesManager/SALOME_ResourcesManager.hxx,
16581           SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
16582           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
16583           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
16584           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
16585           SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
16586           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
16587           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
16588           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
16589           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
16590           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
16591           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
16592           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
16593           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
16594           SALOMEDS/SALOMEDS_AttributeString_i.hxx,
16595           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
16596           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
16597           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
16598           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
16599           SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
16600           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
16601           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
16602           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
16603           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
16604           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
16605           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
16606           SALOMEDS/SALOMEDS_Callback_i.hxx,
16607           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
16608           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
16609           SALOMEDS/SALOMEDS_Client.cxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
16610           SALOMEDS/SALOMEDS_Driver_i.hxx,
16611           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
16612           SALOMEDS/SALOMEDS_SComponent.cxx,
16613           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
16614           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
16615           SALOMEDS/SALOMEDS_SComponent_i.hxx,
16616           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
16617           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
16618           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
16619           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
16620           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
16621           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
16622           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
16623           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
16624           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
16625           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
16626           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
16627           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
16628           SALOMEDS/Test/TestSALOMEDS.cxx,
16629           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
16630           SALOMEDSClient/SALOMEDSClient_Study.hxx,
16631           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
16632           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
16633           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
16634           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
16635           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
16636           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
16637           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
16638           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
16639           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
16640           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
16641           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
16642           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
16643           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
16644           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
16645           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
16646           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
16647           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
16648           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
16649           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
16650           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
16651           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
16652           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
16653           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
16654           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
16655           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
16656           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
16657           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
16658           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
16659           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
16660           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
16661           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
16662           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
16663           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
16664           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
16665           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
16666           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
16667           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
16668           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
16669           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
16670           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
16671           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
16672           SALOMELocalTrace/FileTraceCollector.cxx,
16673           SALOMELocalTrace/LocalTraceBufferPool.cxx,
16674           SALOMELocalTrace/LocalTraceCollector.cxx,
16675           SALOMELocalTrace/utilities.h,
16676           SALOMETraceCollector/SALOMETraceCollector.cxx,
16677           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
16678           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
16679           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
16680           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
16681           TestContainer/SALOME_TestComponent_i.cxx,
16682           TestContainer/SALOME_TestComponent_i.hxx,
16683           TestContainer/TestContainer.cxx,
16684           TestMPIContainer/TestMPIComponentEngine.cxx,
16685           TestMPIContainer/TestMPIComponentEngine.hxx,
16686           TestMPIContainer/TestMPIContainer.cxx, Utils/OpUtil.cxx,
16687           Utils/Utils_CommException.hxx,
16688           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
16689           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
16690           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_Identity.cxx,
16691           Utils/Utils_Identity.hxx, Utils/Utils_Mutex.cxx,
16692           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
16693           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
16694           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
16695           Utils/Utils_Timer.cxx, Utils/duplicate.cxx:
16696
16697         untabify
16698
16699 2009-12-15 17:09  ouv
16700
16701         * idl/SALOME_Notebook.idl:
16702
16703         Added method SALOME_Notebook::GetAttributeParameters
16704
16705 2009-12-15 14:16  asl
16706
16707         * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
16708
16709         new method BeforeDeactivate() for custom actions before servant deactivation
16710
16711 2009-12-15 14:15  asl
16712
16713         * idl/SALOME_Notebook.idl:
16714
16715         new method RemoveObject()
16716
16717 2009-12-15 11:52  prascle
16718
16719         * bin/appli_gen.py, idl/SALOME_ContainerManager.idl,
16720           src/Container/SALOME_ContainerManager.cxx,
16721           src/Container/SALOME_ContainerManager.hxx,
16722           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
16723           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
16724           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
16725           src/Launcher/Launcher_Job_Command.cxx,
16726           src/Launcher/Launcher_Job_Command.hxx,
16727           src/Launcher/Launcher_Job_PythonSALOME.cxx,
16728           src/Launcher/Launcher_Job_PythonSALOME.hxx,
16729           src/Launcher/Launcher_Job_SALOME.cxx,
16730           src/Launcher/Launcher_Job_SALOME.hxx,
16731           src/Launcher/Launcher_Job_YACSFile.cxx,
16732           src/Launcher/Launcher_Job_YACSFile.hxx,
16733           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
16734           src/Launcher/SALOME_Launcher.cxx,
16735           src/Launcher/SALOME_Launcher.hxx,
16736           src/LifeCycleCORBA/LifeCycleCORBA.py,
16737           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16738           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
16739           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
16740           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
16741           src/LifeCycleCORBA/TestContainerManager.cxx,
16742           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
16743           src/NamingService/SALOME_NamingService.cxx,
16744           src/NamingService/SALOME_NamingService.hxx,
16745           src/ResourcesManager/ResourcesManager.cxx,
16746           src/ResourcesManager/ResourcesManager.hxx,
16747           src/ResourcesManager/ResourcesManager_Defs.hxx,
16748           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16749           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
16750           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
16751           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
16752           src/ResourcesManager/SALOME_ResourcesManager.cxx,
16753           src/ResourcesManager/SALOME_ResourcesManager.hxx:
16754
16755         merge from branch BR_V511_PR 15 12 2009
16756
16757 2009-12-15 11:26  ribes
16758
16759         * bin/appli_gen.py:
16760
16761         - Add name parameter to appli_gen
16762
16763 2009-12-15 09:36  prascle
16764
16765         * src/Launcher/: Launcher.cxx, Launcher.hxx,
16766           Launcher_Job_PythonSALOME.cxx:
16767
16768         PR: andre bugs :-) LIBBATCH is not mandatory...
16769
16770 2009-12-15 09:22  ribes
16771
16772         * idl/SALOME_ContainerManager.idl,
16773           src/Container/SALOME_ContainerManager.cxx,
16774           src/Container/SALOME_ContainerManager.hxx,
16775           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
16776           src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job.cxx,
16777           src/Launcher/Launcher_Job.hxx,
16778           src/Launcher/Launcher_Job_PythonSALOME.cxx,
16779           src/Launcher/Launcher_Job_SALOME.cxx,
16780           src/Launcher/Launcher_Job_SALOME.hxx,
16781           src/Launcher/Launcher_Job_YACSFile.cxx,
16782           src/Launcher/SALOME_Launcher.cxx,
16783           src/Launcher/SALOME_Launcher.hxx,
16784           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16785           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
16786           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
16787           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
16788           src/LifeCycleCORBA/TestContainerManager.cxx,
16789           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
16790           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
16791           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
16792           src/NamingService/SALOME_NamingService.cxx,
16793           src/NamingService/SALOME_NamingService.hxx,
16794           src/ResourcesManager/ResourcesManager.cxx,
16795           src/ResourcesManager/ResourcesManager.hxx,
16796           src/ResourcesManager/ResourcesManager_Defs.hxx,
16797           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16798           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
16799           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
16800           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
16801           src/ResourcesManager/SALOME_ResourcesManager.cxx,
16802           src/ResourcesManager/SALOME_ResourcesManager.hxx:
16803
16804         - Resource Management refactoring:
16805           - Remove "alias" to a resource
16806           - Add    "name"  to a resource
16807           - The resource manager now work with resource and not a machine
16808           - Add nbproc for resource selection
16809         - Container Manager refactoring:
16810           - Split MachineParameters in two parts: ContainerParameters and ResourceParameters
16811           - Remove FindOrStartContainer, StartContainer and FindOrStartParallelContainer
16812           - Remove SALOME_BATCH
16813           - Add two new modes for GiveContainer: "find" and "findorstart"
16814         - LifeCycleCORBA:
16815           - For Salome 5.1.4: Same interface (use of MachineParemeters)
16816           - For Salome 6.x.x: Use of ContainerParameters
16817
16818 2009-12-14 15:23  vsr
16819
16820         * src/KERNEL_PY/salome_notebook.py:
16821
16822         Introduce Parameter wrapper class in Python
16823
16824 2009-12-14 15:14  ribes
16825
16826         * idl/SALOME_Session.idl, src/Basics/Basics_DirUtils.cxx,
16827           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
16828           src/Container/Component_i.cxx,
16829           src/Container/SALOME_Component_i.hxx,
16830           src/KERNEL_PY/salome_test.py,
16831           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16832           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
16833           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
16834           src/NamingService/SALOME_NamingService.cxx,
16835           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16836           src/SALOMEDS/SALOME_DriverPy.py,
16837           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
16838           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
16839           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
16840           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
16841           src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
16842
16843         Merge from V5_1_main_20091214
16844
16845 2009-12-14 14:02  vsr
16846
16847         * src/KERNEL_PY/salome_notebook.py:
16848
16849         Introduce Parameter wrapper class in Python
16850
16851 2009-12-14 12:43  asl
16852
16853         * src/KERNEL_PY/salome_notebook.py:
16854
16855         instance of Parameter can be passed into Geom objects
16856
16857 2009-12-11 11:41  eap
16858
16859         * idl/SALOME_Session.idl:
16860
16861         0020605: EDF 1190 SMESH: Display performance. 80 seconds for 52000 cells.
16862         +//!  Returns host name
16863         +    string getHostname();
16864
16865 2009-12-10 16:21  secher
16866
16867         * src/Container/: SALOME_ContainerManager.cxx,
16868           SALOME_ContainerManager.hxx:
16869
16870         when launch local container, print command in log file
16871
16872 2009-12-10 15:11  secher
16873
16874         * src/Launcher/Launcher_Job_SALOME.cxx:
16875
16876         to assure that salome servers are well finished before quit batch script
16877
16878 2009-12-10 12:19  asl
16879
16880         * src/SALOMEDS/: SALOMEDS_StudyBuilder.cxx,
16881           SALOMEDS_StudyManager_i.cxx:
16882
16883         debug of load
16884
16885 2009-12-10 10:49  asl
16886
16887         * src/SALOMEDS/: SALOMEDS_StudyBuilder.cxx,
16888           SALOMEDS_StudyBuilder_i.cxx:
16889
16890         debug of loading of old studies
16891
16892 2009-12-09 13:59  caremoli
16893
16894         * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
16895
16896         CCAR: change implementation of getContainerName to avoid lock with python container
16897
16898 2009-12-08 14:27  asl
16899
16900         * idl/SALOME_Notebook.idl:
16901
16902         [no log message]
16903
16904 2009-12-08 13:54  asl
16905
16906         * src/: SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
16907           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
16908           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
16909           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
16910
16911         Loading of old-style Notebook data
16912
16913 2009-12-08 12:09  asl
16914
16915         * idl/SALOME_Notebook.idl:
16916
16917         New method GetParametersDependingOn()
16918
16919 2009-12-07 16:25  secher
16920
16921         * src/Launcher/Launcher_Job.cxx:
16922
16923         LSF improvement
16924
16925 2009-12-07 15:51  vsr
16926
16927         * src/: Basics/Basics_DirUtils.cxx, Basics/Basics_Utils.cxx,
16928           Basics/Basics_Utils.hxx, KERNEL_PY/salome_test.py,
16929           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
16930           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
16931           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
16932           NamingService/SALOME_NamingService.cxx,
16933           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
16934           SALOMEDS/SALOME_DriverPy.py,
16935           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
16936           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
16937           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
16938           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
16939           SALOMELocalTrace/LocalTraceBufferPool.cxx:
16940
16941         Merge from V5_1_3_BR 07/12/2009
16942
16943 2009-12-07 15:07  vsr
16944
16945         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
16946
16947         Notebook component visibility in the Object Browser
16948
16949 2009-12-07 12:21  asl
16950
16951         * src/KERNEL_PY/salome_notebook.py:
16952
16953         Update() now does not have arguments
16954
16955 2009-12-07 12:17  asl
16956
16957         * idl/SALOME_Notebook.idl:
16958
16959         1. The Update() method now updates all objects (no argument)
16960         2. New method Calculate() for calculations with notebook parameters without creation of anonymous parameter
16961
16962 2009-12-04 11:42  secher
16963
16964         * src/Container/SALOME_ContainerManager.cxx:
16965
16966         Replace rsh (ssh) user@machine by rsh (ssh) -l user machine
16967
16968 2009-12-03 17:02  ribes
16969
16970         * src/Launcher/: Launcher_Job.cxx, Launcher_Job.hxx,
16971           Launcher_Job_Command.cxx, Launcher_Job_PythonSALOME.cxx,
16972           Launcher_Job_YACSFile.cxx:
16973
16974         - YACSFile jobs and PythonSALOME jobs can choose their files extensions
16975
16976 2009-12-03 16:27  ouv
16977
16978         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
16979
16980         Debug
16981
16982 2009-12-02 10:33  vsr
16983
16984         * idl/SALOME_Notebook.idl:
16985
16986         [no log message]
16987
16988 2009-12-01 13:38  ouv
16989
16990         * src/KERNEL_PY/salome_notebook.py:
16991
16992         notebook.myNotebook.Update( 1 ) is called inside notebook.set() method (to update values of dependent parameters)
16993
16994 2009-11-26 16:20  asl
16995
16996         * idl/SALOME_Notebook.idl:
16997
16998         CalculationError could be thrown on AddExpression and AddNamedExpression
16999
17000 2009-11-26 15:52  secher
17001
17002         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
17003
17004         if cluster internal protocol is not specified, it is equal to protocol
17005
17006 2009-11-26 15:32  secher
17007
17008         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
17009           src/Launcher/Launcher_Job_SALOME.cxx,
17010           src/ResourcesManager/ResourcesManager.cxx,
17011           src/ResourcesManager/ResourcesManager.hxx,
17012           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
17013           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
17014           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
17015           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
17016           src/ResourcesManager/SALOME_ResourcesManager.cxx:
17017
17018         update eSGE type batch and cluster internal protocol
17019
17020 2009-11-26 15:22  asl
17021
17022         * idl/SALOME_Notebook.idl:
17023
17024         GetAbsentParameters() now has argument-expression; it is impossible that in the notebook absent variables was referenced
17025
17026 2009-11-26 14:50  ribes
17027
17028         * idl/SALOME_ContainerManager.idl,
17029           src/Container/SALOME_ContainerManager.cxx,
17030           src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job.cxx,
17031           src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx,
17032           src/LifeCycleCORBA/LifeCycleCORBA.py,
17033           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
17034           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
17035           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
17036           src/ResourcesManager/ResourcesManager.cxx,
17037           src/ResourcesManager/ResourcesManager.hxx,
17038           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
17039           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
17040           src/ResourcesManager/SALOME_ResourcesManager.cxx:
17041
17042         - Add nb_proc to MachineParameters
17043         - Adding $HOME to default work_directory
17044         - RemoveJob fixed
17045
17046 2009-11-26 09:37  ouv
17047
17048         * idl/SALOME_Notebook.idl:
17049
17050         Added method GetExpression( in boolean forceConvert )
17051
17052 2009-11-25 15:49  prascle
17053
17054         * src/Launcher/Launcher_Job_PythonSALOME.cxx:
17055
17056         file Launcher_Job_PythonSALOME.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17057
17058 2009-11-25 15:49  prascle
17059
17060         * src/Launcher/Launcher_Job_PythonSALOME.hxx:
17061
17062         file Launcher_Job_PythonSALOME.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17063
17064 2009-11-25 15:49  prascle
17065
17066         * src/Launcher/Launcher_Job_SALOME.cxx:
17067
17068         file Launcher_Job_SALOME.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17069
17070 2009-11-25 15:49  prascle
17071
17072         * src/Launcher/Launcher_Job_SALOME.hxx:
17073
17074         file Launcher_Job_SALOME.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17075
17076 2009-11-25 15:49  ribes
17077
17078         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
17079           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
17080           src/Launcher/Launcher_Job_Command.cxx,
17081           src/Launcher/Launcher_Job_Command.hxx,
17082           src/Launcher/Launcher_Job_PythonSALOME.cxx,
17083           src/Launcher/Launcher_Job_PythonSALOME.hxx,
17084           src/Launcher/Launcher_Job_SALOME.cxx,
17085           src/Launcher/Launcher_Job_SALOME.hxx,
17086           src/Launcher/Launcher_Job_YACSFile.cxx,
17087           src/Launcher/Launcher_Job_YACSFile.hxx, src/Launcher/Makefile.am,
17088           src/Launcher/SALOME_Launcher.cxx:
17089
17090         - Adding new type of Job: python_salome
17091         - Using USER env variable if UserName is not defined in the
17092         resource description
17093
17094 2009-11-25 14:17  vsr
17095
17096         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
17097
17098         Integrate patch from EDF for resources manager
17099
17100 2009-11-25 13:40  asl
17101
17102         * src/KERNEL_PY/salome_notebook.py:
17103
17104         the method Update() now has parameter
17105
17106 2009-11-25 13:35  asl
17107
17108         * idl/SALOME_Notebook.idl:
17109
17110         debug of exceptions
17111
17112 2009-11-25 10:13  ouv
17113
17114         * idl/SALOME_Notebook.idl:
17115
17116         Added flag 'onlyParameters' to Update() method
17117
17118 2009-11-25 09:46  asl
17119
17120         * idl/SALOME_Notebook.idl:
17121
17122         GetParameters() is implemented: returns list of parameter names separated by comma, that the object depends on
17123
17124 2009-11-25 09:20  asl
17125
17126         * idl/SALOME_Notebook.idl:
17127
17128         exceptions are declared
17129
17130 2009-11-24 15:00  asl
17131
17132         * idl/SALOME_Notebook.idl:
17133
17134         new method GetParameter()
17135
17136 2009-11-24 11:15  asl
17137
17138         * src/: SALOMEDS/SALOMEDS_Driver_i.cxx,
17139           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
17140           SALOMEDS/SALOMEDS_Study_i.cxx,
17141           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
17142
17143         debug of load and dump to python of notebook
17144
17145 2009-11-24 11:12  asl
17146
17147         * src/KERNEL_PY/salome_notebook.py:
17148
17149         new methods Parameter() and Dump()
17150
17151 2009-11-24 11:08  asl
17152
17153         * idl/SALOME_Notebook.idl:
17154
17155         new methods Rename() and Dump()
17156
17157 2009-11-21 13:13  asl
17158
17159         * src/SALOMEDSImpl/: SALOMEDSImpl_StudyManager.cxx,
17160           SALOMEDSImpl_Study.cxx:
17161
17162         Previous implementation of notebook is removed
17163
17164 2009-11-21 13:12  asl
17165
17166         * src/KERNEL_PY/salome_notebook.py:
17167
17168         Implementation of python wrapper for notebook
17169
17170 2009-11-21 13:10  asl
17171
17172         * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
17173
17174         dump notebook to python
17175
17176 2009-11-21 13:10  asl
17177
17178         * idl/SALOME_Notebook.idl:
17179
17180         1. Minor renaming
17181         2. Methods for objects dependencies
17182         3. Method for dump to python
17183
17184 2009-11-20 15:58  asl
17185
17186         * src/KERNEL_PY/salome_notebook.py:
17187
17188         [no log message]
17189
17190 2009-11-20 15:58  asl
17191
17192         * src/: SALOMEDS/SALOMEDS_Driver_i.cxx,
17193           SALOMEDS/SALOMEDS_Driver_i.hxx,
17194           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
17195           SALOMEDS/SALOMEDS_Study_i.cxx, Makefile.am:
17196
17197         persistence implementation
17198
17199 2009-11-20 15:55  asl
17200
17201         * idl/SALOME_Notebook.idl:
17202
17203         new methods Save(), Load(), Params()
17204
17205 2009-11-20 08:53  asl
17206
17207         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
17208
17209         StudyId should be passed into Find method
17210
17211 2009-11-20 08:52  asl
17212
17213         * src/KERNEL_PY/salome_notebook.py:
17214
17215         Base python interface for notebook
17216
17217 2009-11-20 08:51  asl
17218
17219         * idl/: SALOME_Component.idl, SALOME_Notebook.idl:
17220
17221         Implementation of update for objects
17222
17223 2009-11-20 08:50  asl
17224
17225         * src/Container/: Component_i.cxx, SALOME_ComponentPy.py,
17226           SALOME_Component_i.hxx:
17227
17228         default implementation of FindObjectByInternalEntry
17229
17230 2009-11-20 05:32  pkv
17231
17232         * src/TestContainer/Makefile.am:
17233
17234         add necessary libs to COMMON_LIBS variable
17235
17236 2009-11-20 05:30  pkv
17237
17238         * src/SALOMEDS/Makefile.am:
17239
17240         add $(COMMON_LIBS) in section Executables targets
17241
17242 2009-11-19 16:11  ribes
17243
17244         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
17245           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
17246           src/Launcher/Launcher_Job_YACSFile.cxx,
17247           src/Launcher/SALOME_Launcher.cxx,
17248           src/Launcher/SALOME_Launcher.hxx:
17249
17250         Remove Old Launcher Code
17251         Works Fine with ePBS and eSSH
17252
17253 2009-11-19 06:42  asl
17254
17255         * src/SALOMEDS/SALOMEDS_Study_i.cxx,
17256           src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDS/Makefile.am,
17257           idl/SALOMEDS.idl, idl/SALOME_Component.idl,
17258           idl/SALOME_Notebook.idl, src/Makefile.am,
17259           src/Container/Component_i.cxx,
17260           src/Container/SALOME_Component_i.hxx:
17261
17262         Base implementation of Notebook
17263
17264 2009-11-18 16:19  ribes
17265
17266         * idl/SALOME_ContainerManager.idl:
17267
17268         EnvFile for all types of jobs
17269
17270 2009-11-18 16:14  ribes
17271
17272         * src/Launcher/: Launcher.cxx, Launcher.hxx, Launcher_Job.cxx,
17273           Launcher_Job.hxx, Launcher_Job_Command.cxx,
17274           Launcher_Job_Command.hxx, Launcher_Job_YACSFile.cxx,
17275           SALOME_Launcher.cxx, SALOME_Launcher.hxx:
17276
17277         - EnvFile for all type of jobs
17278         - Job number counter is now thread safe
17279
17280 2009-11-18 11:26  ribes
17281
17282         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
17283           src/Launcher/Launcher_Job.hxx,
17284           src/Launcher/Launcher_Job_Command.cxx,
17285           src/Launcher/Launcher_Job_YACSFile.cxx,
17286           src/Launcher/SALOME_Launcher.cxx:
17287
17288         - maximum_during_time tp maximum_duration
17289         - Bugs in Command_Job
17290
17291 2009-11-17 10:58  ribes
17292
17293         * src/Launcher/Launcher_Job_YACSFile.cxx:
17294
17295         - Use port argument of runSession
17296         - Clean shutdown
17297
17298 2009-11-17 10:46  ribes
17299
17300         * src/ResourcesManager/ResourcesManager.cxx:
17301
17302         If USER_CATALOG_RESOURCES_FILE is used, we don't take other Catalog Resources
17303         files
17304
17305 2009-11-17 10:27  ribes
17306
17307         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
17308           src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
17309           src/Launcher/Launcher_Job_Command.cxx,
17310           src/Launcher/Launcher_Job_Command.hxx,
17311           src/Launcher/Launcher_Job_YACSFile.cxx,
17312           src/Launcher/SALOME_Launcher.cxx:
17313
17314         - Correct use of nb_proc_per_node
17315         - Generate CatalogResources
17316         - Adding queue support
17317
17318 2009-11-16 14:34  vsr
17319
17320         * src/KERNEL_PY/salome_test.py:
17321
17322         Fix salome_test.py (check SALOME version properly to avoid failure on series 4x)
17323
17324 2009-11-16 11:46  caremoli
17325
17326         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
17327
17328         CCAR: Fix problem with libxml2 (initialization in thread followed by not needed xmlCleanupParser)
17329
17330 2009-11-13 16:05  ribes
17331
17332         * src/Launcher/: Launcher.cxx, Launcher_Job.cxx,
17333           Launcher_Job_Command.cxx, Launcher_Job_YACSFile.cxx:
17334
17335         Test with new ePBS - Command and YACS File ok
17336
17337 2009-11-13 10:09  pkv
17338
17339         * src/Makefile.am, configure.ac:
17340
17341         Adds Notebook CPP UNIT tests
17342
17343 2009-11-12 15:54  ribes
17344
17345         * src/Launcher/: Launcher_Job_Command.cxx,
17346           Launcher_Job_Command.hxx, Launcher_Job_YACSFile.cxx:
17347
17348         Command is now a script
17349
17350 2009-11-12 14:36  ribes
17351
17352         * src/Launcher/: Launcher.cxx, Launcher_Job.cxx, Launcher_Job.hxx,
17353           Launcher_Job_YACSFile.cxx, Launcher_Job_YACSFile.hxx:
17354
17355         YACS File job ok
17356
17357 2009-11-11 08:54  asl
17358
17359         * src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
17360
17361         Notebook initial version
17362
17363 2009-11-11 08:51  asl
17364
17365         * src/Makefile.am, configure.ac, idl/Makefile.am, idl/SALOMEDS.idl,
17366           idl/SALOME_Notebook.idl, src/SALOMEDSImpl/Makefile.am,
17367           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
17368           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
17369           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
17370           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
17371           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
17372           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
17373           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
17374           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
17375           src/SALOMEDS/SALOMEDS_Study_i.cxx,
17376           src/SALOMEDS/SALOMEDS_Study_i.hxx:
17377
17378         Notebook initial version
17379
17380 2009-11-10 11:12  ribes
17381
17382         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
17383           src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx:
17384
17385         expected_during_time to maximum_during_time
17386
17387 2009-11-10 10:23  prascle
17388
17389         * src/Launcher/Launcher_Job.cxx:
17390
17391         file Launcher_Job.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17392
17393 2009-11-10 10:23  prascle
17394
17395         * src/Launcher/Launcher_Job.hxx:
17396
17397         file Launcher_Job.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17398
17399 2009-11-10 10:23  prascle
17400
17401         * src/Launcher/Launcher_Job_Command.cxx:
17402
17403         file Launcher_Job_Command.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17404
17405 2009-11-10 10:23  prascle
17406
17407         * src/Launcher/Launcher_Job_Command.hxx:
17408
17409         file Launcher_Job_Command.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17410
17411 2009-11-10 10:23  prascle
17412
17413         * src/Launcher/Launcher_Job_YACSFile.cxx:
17414
17415         file Launcher_Job_YACSFile.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17416
17417 2009-11-10 10:23  prascle
17418
17419         * src/Launcher/Launcher_Job_YACSFile.hxx:
17420
17421         file Launcher_Job_YACSFile.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17422
17423 2009-11-10 10:23  prascle
17424
17425         * src/Launcher/Launcher_Utils.hxx:
17426
17427         file Launcher_Utils.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
17428
17429 2009-11-10 10:23  ribes
17430
17431         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
17432           src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
17433           src/Launcher/Launcher_Job.hxx,
17434           src/Launcher/Launcher_Job_Command.cxx,
17435           src/Launcher/Launcher_Job_Command.hxx,
17436           src/Launcher/Launcher_Job_YACSFile.cxx,
17437           src/Launcher/Launcher_Job_YACSFile.hxx,
17438           src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
17439           src/Launcher/SALOME_Launcher.cxx,
17440           src/Launcher/SALOME_Launcher.hxx,
17441           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
17442           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
17443
17444         Start New Version of SALOME Launcher
17445         - New IDL API added
17446         - Job Command works
17447
17448 2009-11-09 18:09  caremoli
17449
17450         * src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx:
17451
17452         CCAR: remove superfluous prints in Catalog Server
17453
17454 2009-11-09 17:34  caremoli
17455
17456         * src/SALOMEDS/SALOME_DriverPy.py:
17457
17458         CCAR: remove print in constructor
17459
17460 2009-11-06 14:25  prascle
17461
17462         * Makefile.am, configure.ac, bin/Makefile.am, bin/NSparam.py,
17463           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
17464           bin/appli_install.sh, bin/envSalome.py, bin/killSalome.py,
17465           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
17466           bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
17467           bin/runNS.py, bin/runSalome, bin/runSalome.bat,
17468           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
17469           bin/salome.launch, bin/salomeConsole.py, bin/salome_session.py,
17470           bin/salome_utils.py, bin/server.py, bin/setenv.py, bin/showNS.py,
17471           bin/shutdownSalome.py, bin/virtual_salome.py,
17472           bin/waitContainers.py, bin/waitNS.py,
17473           bin/appliskel/SalomeApp.xml, bin/appliskel/getAppliPath.py,
17474           bin/appliskel/runSession, doc/salome/Batch.texi,
17475           doc/salome/batch.dox, doc/salome/main.dox,
17476           doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
17477           doc/salome/tui/pythfilter.py, idl/Calcium_Ports.idl,
17478           idl/Calcium_Ports.idl.in, idl/Makefile.am, idl/SALOMEDS.idl,
17479           idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
17480           resources/KERNELCatalog.xml.in,
17481           salome_adm/cmake_files/FindBOOST.cmake,
17482           salome_adm/cmake_files/FindDOXYGEN.cmake,
17483           salome_adm/cmake_files/FindPLATFORM.cmake,
17484           salome_adm/cmake_files/FindPYTHON.cmake,
17485           salome_adm/cmake_files/Makefile.am,
17486           salome_adm/cmake_files/am2cmake.py,
17487           salome_adm/cmake_files/install_python_from_idl.cmake,
17488           salome_adm/unix/SALOMEconfig.ref.in,
17489           salome_adm/unix/make_common_starter.am,
17490           salome_adm/unix/config_files/Makefile.am,
17491           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
17492           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
17493           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
17494           salome_adm/unix/config_files/ac_linker_options.m4,
17495           salome_adm/unix/config_files/check_boost.m4,
17496           salome_adm/unix/config_files/check_calcium.m4,
17497           salome_adm/unix/config_files/check_f77.m4,
17498           salome_adm/unix/config_files/check_hdf5.m4,
17499           salome_adm/unix/config_files/check_libbatch.m4,
17500           salome_adm/unix/config_files/check_libxml.m4,
17501           salome_adm/unix/config_files/check_local.m4,
17502           salome_adm/unix/config_files/check_lsf.m4,
17503           salome_adm/unix/config_files/check_openpbs.m4,
17504           salome_adm/unix/config_files/local_install.m4, src/Makefile.am,
17505           src/Communication/Makefile.am,
17506           src/Communication_SWIG/Makefile.am,
17507           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
17508           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
17509           src/Container/SALOME_Component_i.hxx,
17510           src/Container/SALOME_Container.cxx,
17511           src/Container/SALOME_Container.py,
17512           src/Container/SALOME_ContainerManager.cxx,
17513           src/Container/SALOME_ContainerManager.hxx,
17514           src/Container/SALOME_ContainerPy.py,
17515           src/Container/SALOME_Container_i.hxx,
17516           src/Container/SALOME_FileRef_i.cxx,
17517           src/Container/SALOME_FileRef_i.hxx,
17518           src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
17519           src/Container/Salome_file_i.hxx, src/DF/DF_Attribute.cxx,
17520           src/DF/DF_Document.cxx, src/DSC/DSC_Basic/DSC_i.cxx,
17521           src/DSC/DSC_Basic/DSC_interface.cxx,
17522           src/DSC/DSC_Basic/DSC_interface.hxx,
17523           src/DSC/DSC_Basic/Makefile.am, src/DSC/DSC_Python/Makefile.am,
17524           src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
17525           src/DSC/DSC_User/Makefile.am,
17526           src/DSC/DSC_User/Superv_Component_i.cxx,
17527           src/DSC/DSC_User/Superv_Component_i.hxx,
17528           src/DSC/DSC_User/base_port.cxx,
17529           src/DSC/DSC_User/Basic/Makefile.am,
17530           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
17531           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
17532           src/DSC/DSC_User/Datastream/GenericPort.hxx,
17533           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
17534           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
17535           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
17536           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
17537           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
17538           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
17539           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
17540           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
17541           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
17542           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
17543           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
17544           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
17545           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
17546           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
17547           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
17548           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
17549           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
17550           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
17551           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
17552           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
17553           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
17554           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
17555           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
17556           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
17557           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
17558           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
17559           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
17560           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
17561           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
17562           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
17563           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
17564           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
17565           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
17566           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
17567           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
17568           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
17569           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
17570           src/DSC/ParallelDSC/Makefile.am, src/GenericObj/Makefile.am,
17571           src/HDFPersist/HDFobjectIdentify.c, src/KERNEL_PY/Help.py,
17572           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
17573           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
17574           src/KERNEL_PY/iparameters.py,
17575           src/KERNEL_PY/kernel_shared_modules.py,
17576           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
17577           src/KERNEL_PY/salome_ComponentGUI.py,
17578           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
17579           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
17580           src/KERNEL_PY/salome_pynode.py,
17581           src/KERNEL_PY/salome_shared_modules.py,
17582           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
17583           src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
17584           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
17585           src/Launcher/Makefile.am, src/LifeCycleCORBA/LifeCycleCORBA.py,
17586           src/LifeCycleCORBA/Makefile.am,
17587           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
17588           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
17589           src/LifeCycleCORBA/TestContainerManager.cxx,
17590           src/LifeCycleCORBA/Test/Makefile.am,
17591           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
17592           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
17593           src/LifeCycleCORBA_SWIG/Makefile.am,
17594           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
17595           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
17596           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
17597           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
17598           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
17599           src/Logger/Makefile.am, src/Logger/SALOME_Trace.py,
17600           src/Logger/Test/TestKiller.py,
17601           src/MPIContainer/MPIContainer_i.cxx,
17602           src/MPIContainer/MPIObject_i.cxx,
17603           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
17604           src/MPIContainer/SALOME_MPIContainer.cxx,
17605           src/ModuleCatalog/Makefile.am,
17606           src/ModuleCatalog/TestModuleCatalog.py,
17607           src/ModuleGenerator/IDLparser.py,
17608           src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
17609           src/NamingService/SALOME_NamingService.cxx,
17610           src/NamingService/SALOME_NamingService.hxx,
17611           src/NamingService/SALOME_NamingServicePy.py,
17612           src/NamingService/Test/Makefile.am,
17613           src/NamingService/Test/TestNamingService.py,
17614           src/Notification/Makefile.am, src/ParallelContainer/Makefile.am,
17615           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
17616           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
17617           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
17618           src/Registry/RegistryService.cxx,
17619           src/ResourcesManager/Makefile.am,
17620           src/ResourcesManager/ResourcesManager.cxx,
17621           src/ResourcesManager/ResourcesManager.hxx,
17622           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
17623           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
17624           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
17625           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
17626           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
17627           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
17628           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
17629           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
17630           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
17631           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
17632           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
17633           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
17634           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
17635           src/SALOMEDS/SALOMEDS_SComponent.cxx,
17636           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
17637           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
17638           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
17639           src/SALOMEDS/SALOMEDS_SObject.cxx,
17640           src/SALOMEDS/SALOMEDS_SObject.hxx,
17641           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
17642           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
17643           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
17644           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
17645           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
17646           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
17647           src/SALOMEDS/SALOMEDS_Study_i.cxx,
17648           src/SALOMEDS/SALOMEDS_Study_i.hxx,
17649           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
17650           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
17651           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
17652           src/SALOMEDS/Test/TestSALOMEDS.py,
17653           src/SALOMEDSClient/Makefile.am,
17654           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
17655           src/SALOMEDSImpl/Makefile.am,
17656           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
17657           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
17658           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
17659           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
17660           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
17661           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
17662           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
17663           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
17664           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
17665           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
17666           src/SALOMEDSImpl/Test/Makefile.am,
17667           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
17668           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
17669           src/SALOMETraceCollector/Makefile.am,
17670           src/SALOMETraceCollector/Test/Makefile.am,
17671           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
17672           src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
17673           src/TestContainer/SALOME_TestComponentPy.py,
17674           src/TestContainer/TestLogger.py,
17675           src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
17676           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
17677           src/Utils/SALOME_utilities.py, src/Utils/Utils_Identity.py,
17678           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Test/Makefile.am,
17679           src/Utils/Test/TestUtils.py, src/win32pm/setup.py:
17680
17681         merge from branch V5_1_main tag mergeto_BR_V51_AR_6nov09
17682
17683 2009-11-06 14:15  adam
17684
17685         * src/Basics/Basics_DirUtils.cxx:
17686
17687         The patch of Gilles is sufficiant.
17688         Rollback to previous version.
17689
17690 2009-11-06 12:20  vsr
17691
17692         * src/Basics/Basics_DirUtils.cxx:
17693
17694         Additional patch for recent platforms: add missing #include <cstdio>
17695
17696 2009-11-05 15:04  vsr
17697
17698         * src/Basics/Basics_Utils.hxx:
17699
17700         A tiny fix from E.Adam fro Windows compatibility
17701
17702 2009-11-04 12:58  vsr
17703
17704         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
17705
17706         TEMPORARILY remove SALOME_GenericObj management by AttributeIOR.
17707
17708 2009-11-03 15:30  vsr
17709
17710         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
17711
17712         Integrate patch from G.David (compatibility 4.4, ubuntu 9.10 and debian sid)
17713
17714 2009-11-03 15:27  vsr
17715
17716         * src/: Basics/Basics_DirUtils.cxx,
17717           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
17718           NamingService/SALOME_NamingService.cxx,
17719           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
17720
17721         Integrate patch from G.David (compatibility 4.4, ubuntu 9.10 and debian sid)
17722
17723 2009-11-02 13:21  ouv
17724
17725         * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
17726           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
17727
17728         Kernel_Utils::Localizer - common interface to solve problems with non-"C" locales
17729
17730 2009-10-26 11:41  ouv
17731
17732         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
17733
17734         Bug IPAL21432 - TC5.1.3 Load script doesn't work with Notebook in scenario PROD-009.
17735
17736 2009-10-19 14:24  vsr
17737
17738         * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
17739
17740         Remove undesired output to console
17741
17742 2009-10-14 11:18  adam
17743
17744         * salome_adm/cmake_files/: am2cmake.py:
17745
17746         tag 5.1.2 --> 5.1.3
17747
17748 2009-10-14 08:42  dmv
17749
17750         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
17751
17752         Correct previous integration
17753
17754 2009-10-12 15:52  adam
17755
17756         * salome_adm/cmake_files/FindBOOST.cmake:
17757
17758         [no log message]
17759
17760 2009-10-12 15:46  dmv
17761
17762         * bin/launchConfigureParser.py, bin/orbmodule.py,
17763           bin/salome_session.py, bin/salome_utils.py,
17764           bin/virtual_salome.py, doc/salome/tui/pythfilter.py,
17765           salome_adm/cmake_files/am2cmake.py,
17766           src/DSC/DSC_Python/dsccalcium.py, src/KERNEL_PY/Help.py,
17767           src/KERNEL_PY/PyInterp.py, src/KERNEL_PY/batchmode_salome.py,
17768           src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
17769           src/KERNEL_PY/kernel_shared_modules.py,
17770           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
17771           src/KERNEL_PY/salome_ComponentGUI.py,
17772           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
17773           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
17774           src/KERNEL_PY/salome_shared_modules.py,
17775           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
17776           src/KERNEL_PY/salome_version.py,
17777           src/LifeCycleCORBA/LifeCycleCORBA.py,
17778           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
17779           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
17780           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
17781           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
17782           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
17783           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
17784           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
17785           src/Logger/SALOME_Trace.py, src/Logger/Test/TestKiller.py,
17786           src/ModuleCatalog/TestModuleCatalog.py,
17787           src/ModuleGenerator/IDLparser.py,
17788           src/NamingService/Test/TestNamingService.py,
17789           src/SALOMEDS/SALOME_DriverPy.py,
17790           src/SALOMEDS/Test/TestSALOMEDS.py,
17791           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
17792           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
17793           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
17794           src/TestContainer/TestLogger.py, src/UnitTests/UnitTests.py,
17795           src/Utils/SALOME_utilities.py, src/Utils/Test/TestUtils.py,
17796           src/win32pm/setup.py:
17797
17798         correct previous integration (Porting to Python 2.6)
17799
17800 2009-10-12 09:30  mnt
17801
17802         * configure.ac:
17803
17804         Changing version to 5.1.3
17805
17806 2009-10-12 08:15  dmv
17807
17808         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
17809
17810         Porting to Python 2.6 - add coding page specification for Python scripts
17811
17812 2009-10-09 16:33  adam
17813
17814         * salome_adm/cmake_files/am2cmake.py:
17815
17816         desactive doxygen with cmake
17817         desactive cppunit on windows for all modules except med
17818
17819 2009-10-09 16:32  adam
17820
17821         * salome_adm/cmake_files/FindBOOST.cmake:
17822
17823         [no log message]
17824
17825 2009-10-09 15:25  dmv
17826
17827         * bin/NSparam.py, bin/addToKillList.py, bin/appli_gen.py,
17828           bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
17829           bin/launchConfigureParser.py, bin/launchSalome.py,
17830           bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
17831           bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
17832           bin/salome_utils.py, bin/server.py, bin/setenv.py, bin/showNS.py,
17833           bin/shutdownSalome.py, bin/virtual_salome.py,
17834           bin/waitContainers.py, bin/waitNS.py,
17835           bin/appliskel/getAppliPath.py, doc/salome/tui/pythfilter.py,
17836           salome_adm/cmake_files/am2cmake.py,
17837           src/Container/SALOME_ComponentPy.py,
17838           src/Container/SALOME_Container.py,
17839           src/Container/SALOME_ContainerPy.py,
17840           src/Container/SALOME_PyNode.py, src/DSC/DSC_Python/dsccalcium.py,
17841           src/KERNEL_PY/Help.py, src/KERNEL_PY/PyInterp.py,
17842           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
17843           src/KERNEL_PY/iparameters.py,
17844           src/KERNEL_PY/kernel_shared_modules.py,
17845           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
17846           src/KERNEL_PY/salome_ComponentGUI.py,
17847           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
17848           src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
17849           src/KERNEL_PY/salome_shared_modules.py,
17850           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
17851           src/KERNEL_PY/salome_version.py,
17852           src/LifeCycleCORBA/LifeCycleCORBA.py,
17853           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
17854           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
17855           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
17856           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
17857           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
17858           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
17859           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
17860           src/Logger/SALOME_Trace.py, src/Logger/Test/TestKiller.py,
17861           src/ModuleCatalog/TestModuleCatalog.py,
17862           src/ModuleGenerator/IDLparser.py,
17863           src/NamingService/SALOME_NamingServicePy.py,
17864           src/NamingService/Test/TestNamingService.py,
17865           src/SALOMEDS/SALOME_DriverPy.py,
17866           src/SALOMEDS/Test/TestSALOMEDS.py,
17867           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
17868           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
17869           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
17870           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
17871           src/TestContainer/SALOME_TestComponentPy.py,
17872           src/TestContainer/TestLogger.py, src/UnitTests/UnitTests.py,
17873           src/Utils/SALOME_utilities.py, src/Utils/Utils_Identity.py,
17874           src/Utils/Test/TestUtils.py, src/win32pm/setup.py:
17875
17876         Porting to Python 2.6 - add coding page specification for Python scripts
17877
17878 2009-10-09 11:33  adam
17879
17880         * src/KERNEL_PY/salome_notebook.py:
17881
17882         Replace a fix by another fix ...
17883
17884 2009-10-08 16:29  prascle
17885
17886         * idl/SALOME_PyNode.idl:
17887
17888         file SALOME_PyNode.idl was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
17889
17890 2009-10-08 16:29  prascle
17891
17892         * src/Container/SALOME_PyNode.py:
17893
17894         file SALOME_PyNode.py was added on branch BR_V51_AR on 2009-11-06 13:25:43 +0000
17895
17896 2009-10-08 16:29  prascle
17897
17898         * src/KERNEL_PY/salome_pynode.py:
17899
17900         file salome_pynode.py was added on branch BR_V51_AR on 2009-11-06 13:25:46 +0000
17901
17902 2009-10-08 16:29  caremoli
17903
17904         * idl/Makefile.am, idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
17905           src/Container/Container_i.cxx, src/Container/Makefile.am,
17906           src/Container/SALOME_Container.py,
17907           src/Container/SALOME_Container_i.hxx,
17908           src/Container/SALOME_PyNode.py, src/KERNEL_PY/Makefile.am,
17909           src/KERNEL_PY/salome_pynode.py:
17910
17911         CCAR: add the PyNode object that can be created in a container
17912         to execute remote Python code.
17913         Example from python interpreter:
17914         import salome_pynode
17915         code="""def f(x):
17916           return 2*x
17917         """
17918         node=container.createPyNode("mynode",code)
17919         y=node.execute("f",10)
17920
17921 2009-10-08 16:03  dmv
17922
17923         * idl/SALOMEDS.idl, src/KERNEL_PY/salome_notebook.py,
17924           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
17925           src/SALOMEDS/SALOMEDS_Study_i.cxx,
17926           src/SALOMEDS/SALOMEDS_Study_i.hxx,
17927           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
17928           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
17929           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
17930           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
17931           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
17932           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
17933
17934         0020523: String notebook support
17935
17936 2009-10-08 10:07  nge
17937
17938         * salome_adm/unix/config_files/check_boost.m4:
17939
17940         Add detection of boost regex library for BlSurfPlugin
17941
17942 2009-10-06 16:12  nge
17943
17944         * salome_adm/unix/config_files/check_hdf5.m4:
17945
17946         To see which hdf5 we're using in configure log
17947
17948 2009-10-06 16:05  nge
17949
17950         * salome_adm/unix/config_files/check_libxml.m4:
17951
17952         To see which libxml2 we're using in configure log
17953
17954 2009-10-06 12:05  prascle
17955
17956         * salome_adm/cmake_files/FindDOXYGEN.cmake:
17957
17958         file FindDOXYGEN.cmake was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
17959
17960 2009-10-06 12:05  adam
17961
17962         * salome_adm/cmake_files/: FindDOXYGEN.cmake, Makefile.am,
17963           am2cmake.py:
17964
17965         [no log message]
17966
17967 2009-10-05 15:45  secher
17968
17969         * src/Launcher/Launcher.cxx:
17970
17971         Get output files from temporary directory
17972
17973 2009-10-05 11:32  secher
17974
17975         * src/Launcher/Launcher.cxx:
17976
17977         Distributed salome session run now in temporary directory and not inb Application directory
17978
17979 2009-10-05 08:55  caremoli
17980
17981         * src/Container/Component_i.cxx:
17982
17983         CCAR: _id not initialized
17984
17985 2009-10-02 17:15  adam
17986
17987         * src/DSC/DSC_Basic/DSC_interface.cxx:
17988
17989         windows not implemented
17990
17991 2009-10-02 15:35  vsr
17992
17993         * salome_adm/unix/config_files/check_boost.m4:
17994
17995         Porting to boost 1.37
17996
17997 2009-10-01 18:23  caremoli
17998
17999         * src/DSC/: DSC_Basic/DSC_interface.cxx,
18000           DSC_Basic/DSC_interface.hxx, DSC_User/Datastream/GenericPort.hxx,
18001           DSC_User/Datastream/Calcium/Calcium.cxx,
18002           DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
18003           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
18004
18005         CCAR: move DSC trace function from Calcium directory to DSC_Basic directory
18006         for more general use
18007
18008 2009-10-01 17:19  adam
18009
18010         * salome_adm/cmake_files/am2cmake.py:
18011
18012         [no log message]
18013
18014 2009-09-30 14:30  adam
18015
18016         * salome_adm/unix/config_files/check_hdf5.m4:
18017
18018         compatibility hdf 1.8.x
18019
18020 2009-09-29 16:11  adam
18021
18022         * salome_adm/cmake_files/am2cmake.py:
18023
18024         compatibility med2.3.6
18025
18026 2009-09-29 11:29  adam
18027
18028         * bin/: launchConfigureParser.py, runSalome.py:
18029
18030         Implement the --shutdown-servers command line option with 0 as default
18031
18032 2009-09-29 09:45  adam
18033
18034         * src/Container/Component_i.cxx:
18035
18036         windows port
18037
18038 2009-09-28 15:54  caremoli
18039
18040         * src/DSC/: DSC_Python/calcium.i, DSC_Python/dsccalcium.py,
18041           DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
18042           DSC_User/Datastream/GenericPort.hxx,
18043           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
18044
18045         CCAR: add a timeout for DSC/CALCIUM reads
18046         If a read (cplxxx) is waiting more than the value given by the environment
18047         variable DSC_TIMEOUT, the read is interrupted and an exception is raised.
18048         If DSC_TIMEOUT is not set or its value is 0, the timeout is infinite.
18049         It is possible to set the timeout by using the properties of the component.
18050         The value of a property is set in an environment variable with the same
18051         name by a call to beginService
18052
18053 2009-09-28 15:34  caremoli
18054
18055         * src/Container/: Component_i.cxx, SALOME_ComponentPy.py:
18056
18057         CCAR: remove some memory leaks, add set properties in env for python component (beginService)
18058
18059 2009-09-28 12:50  adam
18060
18061         * salome_adm/cmake_files/am2cmake.py:
18062
18063         YACS compatibility
18064
18065 2009-09-25 14:49  prascle
18066
18067         * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx:
18068
18069         file CalciumCxxInterface.cxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
18070
18071 2009-09-25 14:49  caremoli
18072
18073         * src/DSC/DSC_User/: Superv_Component_i.cxx,
18074           Superv_Component_i.hxx, base_port.cxx,
18075           Datastream/GenericPort.hxx, Datastream/GenericUsesPort.hxx,
18076           Datastream/Calcium/Calcium.c, Datastream/Calcium/Calcium.cxx,
18077           Datastream/Calcium/CalciumCInterface.cxx,
18078           Datastream/Calcium/CalciumCInterface.hxx,
18079           Datastream/Calcium/CalciumCouplingPolicy.cxx,
18080           Datastream/Calcium/CalciumCouplingPolicy.hxx,
18081           Datastream/Calcium/CalciumCxxInterface.cxx,
18082           Datastream/Calcium/CalciumCxxInterface.hxx,
18083           Datastream/Calcium/CalciumGenericUsesPort.hxx,
18084           Datastream/Calcium/CalciumMacroCInterface.hxx,
18085           Datastream/Calcium/CalciumTypes.hxx,
18086           Datastream/Calcium/Makefile.am, Datastream/Calcium/calciumP.h,
18087           Datastream/Calcium/calciumf.c:
18088
18089         CCAR: add trace file for DSC/CALCIUM calls
18090         Trace file is written by default on stderr and can be redirect to a file (automatic name)
18091         by setting the environment variable DSC_TRACE to 1
18092         Trace can be desactivated by setting the environment variable DSC_TRACELEVEL to 0
18093
18094 2009-09-25 14:39  barate
18095
18096         * configure.ac, doc/salome/Batch.texi, doc/salome/batch.dox,
18097           doc/salome/main.dox, doc/salome/gui/Makefile.am,
18098           doc/salome/gui/doxyfile.in, salome_adm/unix/SALOMEconfig.ref.in,
18099           salome_adm/unix/config_files/Makefile.am,
18100           salome_adm/unix/config_files/check_libbatch.m4,
18101           salome_adm/unix/config_files/check_local.m4,
18102           salome_adm/unix/config_files/check_lsf.m4,
18103           salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.am,
18104           src/Container/Makefile.am,
18105           src/Container/SALOME_ContainerManager.cxx,
18106           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
18107           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am:
18108
18109         Merged from BR_V51_RB (removed Batch and added libBatch as an optional prerequisite).
18110
18111 2009-09-24 17:49  barate
18112
18113         * configure.ac, src/Launcher/BatchTest.cxx,
18114           src/Launcher/DummyBatchTest.cxx, src/Launcher/DummyLauncher.cxx,
18115           src/Launcher/Launcher.cxx, src/Launcher/Makefile.am:
18116
18117         Changed libBatch optional usage from empty implementation classes to #ifdef.
18118
18119 2009-09-24 16:15  adam
18120
18121         * salome_adm/cmake_files/am2cmake.py:
18122
18123         [no log message]
18124
18125 2009-09-24 14:36  barate
18126
18127         * configure.ac, src/Launcher/DummyBatchTest.cxx,
18128           src/Launcher/DummyLauncher.cxx, src/Launcher/Launcher.cxx,
18129           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am:
18130
18131         Made libBatch an optional prerequisite.
18132
18133 2009-09-24 11:48  caremoli
18134
18135         * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
18136
18137         CCAR: add C++ method getContainerName to component class
18138
18139 2009-09-24 09:34  adam
18140
18141         * salome_adm/cmake_files/am2cmake.py:
18142
18143         YACS compatibility
18144
18145 2009-09-23 12:28  adam
18146
18147         * salome_adm/cmake_files/am2cmake.py:
18148
18149         remove messages on windows
18150
18151 2009-09-23 11:25  barate
18152
18153         * configure.ac, doc/salome/Batch.texi, doc/salome/batch.dox,
18154           doc/salome/main.dox, doc/salome/gui/Makefile.am,
18155           doc/salome/gui/doxyfile.in, salome_adm/unix/SALOMEconfig.ref.in,
18156           salome_adm/unix/config_files/Makefile.am,
18157           salome_adm/unix/config_files/check_libbatch.m4,
18158           salome_adm/unix/config_files/check_local.m4,
18159           salome_adm/unix/config_files/check_lsf.m4,
18160           salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.am,
18161           src/Container/Makefile.am,
18162           src/Container/SALOME_ContainerManager.cxx,
18163           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
18164           src/Launcher/Makefile.am:
18165
18166         Removed Batch from KERNEL and added libBatch dependency.
18167
18168 2009-09-23 11:25  barate
18169
18170         * salome_adm/unix/config_files/check_libbatch.m4:
18171
18172         file check_libbatch.m4 was added on branch V5_1_main on 2009-09-25 12:39:56 +0000
18173
18174 2009-09-23 11:25  prascle
18175
18176         * salome_adm/unix/config_files/check_libbatch.m4:
18177
18178         file check_libbatch.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
18179
18180 2009-09-22 10:38  barate
18181
18182         * Makefile.am, configure.ac, bin/Makefile.am, bin/appli_clean.sh,
18183           bin/appli_gen.py, bin/appli_install.sh, bin/envSalome.py,
18184           bin/launchConfigureParser.py, bin/nameserver.py,
18185           bin/orbmodule.py, bin/runSalome, bin/runSalome.bat,
18186           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
18187           bin/salome.launch, bin/salome_session.py, bin/salome_utils.py,
18188           bin/setenv.py, bin/appliskel/SalomeApp.xml,
18189           bin/appliskel/runSession, idl/Calcium_Ports.idl,
18190           idl/Calcium_Ports.idl.in, idl/Makefile.am, idl/SALOMEDS.idl,
18191           idl/SALOME_Component.idl, resources/KERNELCatalog.xml.in,
18192           salome_adm/cmake_files/FindBOOST.cmake,
18193           salome_adm/cmake_files/FindPLATFORM.cmake,
18194           salome_adm/cmake_files/FindPYTHON.cmake,
18195           salome_adm/cmake_files/am2cmake.py,
18196           salome_adm/cmake_files/install_python_from_idl.cmake,
18197           salome_adm/unix/SALOMEconfig.ref.in,
18198           salome_adm/unix/make_common_starter.am,
18199           salome_adm/unix/config_files/Makefile.am,
18200           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
18201           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
18202           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
18203           salome_adm/unix/config_files/check_calcium.m4,
18204           salome_adm/unix/config_files/check_f77.m4,
18205           salome_adm/unix/config_files/local_install.m4, src/Makefile.am,
18206           src/Communication/Makefile.am,
18207           src/Communication_SWIG/Makefile.am,
18208           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
18209           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
18210           src/Container/SALOME_Component_i.hxx,
18211           src/Container/SALOME_Container.cxx,
18212           src/Container/SALOME_Container.py,
18213           src/Container/SALOME_ContainerManager.cxx,
18214           src/Container/SALOME_ContainerManager.hxx,
18215           src/Container/SALOME_ContainerPy.py,
18216           src/Container/SALOME_Container_i.hxx,
18217           src/Container/SALOME_FileRef_i.cxx,
18218           src/Container/SALOME_FileRef_i.hxx,
18219           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
18220           src/DF/DF_Attribute.cxx, src/DF/DF_Document.cxx,
18221           src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
18222           src/DSC/DSC_Basic/Makefile.am, src/DSC/DSC_Python/Makefile.am,
18223           src/DSC/DSC_User/Makefile.am,
18224           src/DSC/DSC_User/Superv_Component_i.cxx,
18225           src/DSC/DSC_User/Superv_Component_i.hxx,
18226           src/DSC/DSC_User/Basic/Makefile.am,
18227           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
18228           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
18229           src/DSC/DSC_User/Datastream/GenericPort.hxx,
18230           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
18231           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
18232           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
18233           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
18234           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
18235           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
18236           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
18237           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
18238           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
18239           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
18240           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
18241           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
18242           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
18243           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
18244           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
18245           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
18246           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
18247           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
18248           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
18249           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
18250           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
18251           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
18252           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
18253           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
18254           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
18255           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
18256           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
18257           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
18258           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
18259           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
18260           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
18261           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
18262           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
18263           src/DSC/ParallelDSC/Makefile.am, src/GenericObj/Makefile.am,
18264           src/HDFPersist/HDFobjectIdentify.c, src/KERNEL_PY/Makefile.am,
18265           src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_test.py,
18266           src/Launcher/Makefile.am, src/LifeCycleCORBA/Makefile.am,
18267           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
18268           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
18269           src/LifeCycleCORBA/TestContainerManager.cxx,
18270           src/LifeCycleCORBA/Test/Makefile.am,
18271           src/LifeCycleCORBA_SWIG/Makefile.am, src/Logger/Makefile.am,
18272           src/MPIContainer/MPIContainer_i.cxx,
18273           src/MPIContainer/MPIObject_i.cxx,
18274           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
18275           src/MPIContainer/SALOME_MPIContainer.cxx,
18276           src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
18277           src/NamingService/Makefile.am,
18278           src/NamingService/SALOME_NamingService.cxx,
18279           src/NamingService/SALOME_NamingService.hxx,
18280           src/NamingService/SALOME_NamingServicePy.py,
18281           src/NamingService/Test/Makefile.am, src/Notification/Makefile.am,
18282           src/ParallelContainer/Makefile.am,
18283           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
18284           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
18285           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
18286           src/Registry/RegistryService.cxx,
18287           src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
18288           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
18289           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
18290           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
18291           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
18292           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
18293           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
18294           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
18295           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
18296           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
18297           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
18298           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
18299           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
18300           src/SALOMEDS/SALOMEDS_SComponent.cxx,
18301           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
18302           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
18303           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
18304           src/SALOMEDS/SALOMEDS_SObject.cxx,
18305           src/SALOMEDS/SALOMEDS_SObject.hxx,
18306           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
18307           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
18308           src/SALOMEDS/SALOMEDS_Study.cxx,
18309           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
18310           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
18311           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
18312           src/SALOMEDS/SALOMEDS_Study_i.cxx,
18313           src/SALOMEDS/SALOMEDS_Study_i.hxx,
18314           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
18315           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
18316           src/SALOMEDS/Test/Makefile.am, src/SALOMEDSClient/Makefile.am,
18317           src/SALOMEDSImpl/Makefile.am,
18318           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
18319           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
18320           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
18321           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
18322           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
18323           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
18324           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
18325           src/SALOMEDSImpl/Test/Makefile.am,
18326           src/SALOMETraceCollector/Makefile.am,
18327           src/SALOMETraceCollector/Test/Makefile.am,
18328           src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
18329           src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
18330           src/Utils/Makefile.am, src/Utils/Utils_SALOME_Exception.hxx,
18331           src/Utils/Test/Makefile.am:
18332
18333         Merged from V5_1_main
18334
18335 2009-09-21 19:23  caremoli
18336
18337         * src/: Container/Component_i.cxx,
18338           Utils/Utils_SALOME_Exception.hxx:
18339
18340         CCAR: add a trace in beginService and endService even in no debug mode to give cpu time to user
18341
18342 2009-09-21 17:18  adam
18343
18344         * salome_adm/cmake_files/am2cmake.py:
18345
18346         yacs compatibility
18347
18348 2009-09-21 14:44  adam
18349
18350         * salome_adm/cmake_files/am2cmake.py:
18351
18352         yacs swig compatibility
18353
18354 2009-09-21 14:38  adam
18355
18356         * salome_adm/cmake_files/am2cmake.py:
18357
18358         Compile check_programs
18359
18360 2009-09-21 14:29  adam
18361
18362         * salome_adm/cmake_files/am2cmake.py:
18363
18364         YACS port
18365
18366 2009-09-21 11:53  vsr
18367
18368         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
18369
18370         Fix problem of study closing in standalone mode
18371
18372 2009-09-21 11:51  vsr
18373
18374         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
18375           SALOMEDS/SALOMEDS_StudyManager_i.cxx:
18376
18377         Fix missing functions if the WITHGENERICOBJ macro is undefined
18378
18379 2009-09-21 10:32  adam
18380
18381         * salome_adm/cmake_files/am2cmake.py:
18382
18383         [no log message]
18384
18385 2009-09-18 17:18  caremoli
18386
18387         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
18388
18389         CCAR: add a check to see if the CORBA object exists (non_existent())
18390
18391 2009-09-18 17:10  caremoli
18392
18393         * resources/KERNELCatalog.xml.in, idl/SALOME_Component.idl:
18394
18395         CCAR: add data type dataref to Engines data types. Can be used to exchange references between components.
18396
18397 2009-09-18 16:30  adam
18398
18399         * salome_adm/cmake_files/am2cmake.py:
18400
18401         ghs3d plugin support
18402
18403 2009-09-17 09:58  caremoli
18404
18405         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
18406           SALOMEDSImpl_Study.cxx:
18407
18408         CCAR: move genericobj management in SALOMEDSImpl from Study to AttributeIOR
18409              and put it into 2 functions IORGenericObjIncref and IORGenericObjDecref
18410
18411 2009-09-16 16:42  caremoli
18412
18413         * src/SALOMEDSImpl/Makefile.am:
18414
18415         CCAR: missing CORBA options in Makefile.am
18416
18417 2009-09-16 16:09  caremoli
18418
18419         * src/: SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
18420           SALOMEDSImpl/Makefile.am,
18421           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
18422           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
18423
18424         CCAR: Correction of a problem with management of genericobj in SALOMEDS
18425         - Move the management from SALOMEDS_Study_i interface to SALOMEDSImpl_Study interface to
18426           be sure to be called in all situations : embedded or standalone
18427         - Register and Destroy genericobj on calls to SetValue (AttributeIOR) but also when
18428           an AttributeIOR is removed
18429
18430 2009-09-16 15:18  caremoli
18431
18432         * src/: SALOMEDS/SALOMEDS_StudyManager_i.cxx,
18433           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
18434           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
18435           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
18436           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
18437           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
18438
18439         CCAR: remove more memory leaks in SALOMEDS
18440
18441 2009-09-15 16:26  caremoli
18442
18443         * bin/appliskel/runSession:
18444
18445         CCAR: modify the runSession script so that it is able to connect to a remote SALOME
18446         session given by the machine name and the port number
18447
18448 2009-09-15 14:28  caremoli
18449
18450         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
18451
18452         CCAR: Modify FindOrLoadComponent so that all modes be coherent (with parameter structure or with string).
18453               If the machine is not given, the default machine is the machine of the resources manager
18454               and not the local machine  as it was done in the string mode.
18455
18456 2009-09-15 13:56  caremoli
18457
18458         * bin/: appli_gen.py, appli_install.sh, launchConfigureParser.py,
18459           runSalome, runSalome.csh, runSalome.ksh, runSalome.py,
18460           salome.launch, setenv.py, appliskel/SalomeApp.xml:
18461
18462         CCAR: translate some comments in english
18463               add the local path of a file in the python sys.path before executing it (execfile(srcname) in runSalome.py)
18464               remove supervisioncontainer launch
18465
18466 2009-09-14 16:02  adam
18467
18468         * salome_adm/cmake_files/am2cmake.py:
18469
18470         Add a flag for the MEFISTO compilation with f2c
18471
18472 2009-09-14 11:08  caremoli
18473
18474         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
18475           SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_StudyManager.cxx:
18476
18477         CCAR: remove memory leaks in study
18478
18479 2009-09-14 11:05  caremoli
18480
18481         * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder_i.cxx:
18482
18483         CCAR: remove memory leaks in non local SALOMEDS
18484
18485 2009-09-14 10:53  caremoli
18486
18487         * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
18488           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
18489           SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
18490           SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx,
18491           SALOMEDS_SObject_i.cxx:
18492
18493         CCAR: remove some memory leaks in non local SALOMEDS
18494
18495 2009-09-14 10:45  caremoli
18496
18497         * src/SALOMEDS/: SALOMEDS_AttributeIOR.cxx,
18498           SALOMEDS_AttributeIOR_i.cxx, SALOMEDS_AttributeIOR_i.hxx,
18499           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributePixMap.cxx,
18500           SALOMEDS_AttributeStudyProperties.cxx:
18501
18502         CCAR: remove memory leaks in non local SALOMEDS
18503
18504 2009-09-14 10:34  caremoli
18505
18506         * idl/Makefile.am:
18507
18508         CCAR: remove duplicate variables (OMNIORB_IDL and IDL, OMNIORB_IDLCXXFLAGS and IDLCXXFLAGS, ...)
18509
18510 2009-09-14 10:08  caremoli
18511
18512         * src/Container/: Component_i.cxx, Container_i.cxx:
18513
18514         CCAR: remove memory leaks
18515
18516 2009-09-14 09:58  caremoli
18517
18518         * src/Registry/: RegistryConnexion.cxx, RegistryService.cxx:
18519
18520         CCAR: remove memory leaks
18521
18522 2009-09-10 15:12  secher
18523
18524         * src/MPIContainer/: MPIObject_i.cxx, MPIObject_i.hxx:
18525
18526         simplification of API of MPI object
18527
18528 2009-09-10 12:02  adam
18529
18530         * salome_adm/cmake_files/am2cmake.py:
18531
18532         [no log message]
18533
18534 2009-09-10 11:51  adam
18535
18536         * bin/salome_utils.py:
18537
18538         Fix a problem with space in directories
18539
18540 2009-09-10 11:20  adam
18541
18542         * bin/salome_utils.py:
18543
18544         windows port
18545
18546 2009-09-09 18:51  vsr
18547
18548         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
18549
18550         Issue 0020472: An error in SALOMEDSImpl_Tool::Exists
18551
18552 2009-09-09 13:20  caremoli
18553
18554         * src/Container/Container_i.cxx:
18555
18556         CCAR: replace the old way to take the python global interpreter lock
18557         by calls to PyGILState_Ensure/PyGILState_Release in C++ container
18558         so that GIL management be coherent from GUI embedded interpreter to embedded
18559         python container.
18560
18561 2009-09-08 19:29  caremoli
18562
18563         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
18564           Container/SALOME_ComponentPy.py,
18565           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
18566           Container/SALOME_Container.py,
18567           Container/SALOME_ContainerManager.cxx,
18568           Container/SALOME_ContainerManager.hxx,
18569           Container/SALOME_ContainerPy.py,
18570           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
18571           Container/SALOME_FileRef_i.hxx, Container/Salome_file_i.cxx,
18572           Container/Salome_file_i.hxx, MPIContainer/MPIContainer_i.cxx,
18573           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
18574           ParallelContainer/SALOME_ParallelContainer_i.cxx:
18575
18576         CCAR: add a message in case of error when loading a component.
18577         The dlerror output for dlopen plus the traceback for the import of the python module
18578         The import_component python function now returns a string instead of a boolean.
18579         If the string is empty, the import is OK.
18580         The C++ code in container MPIContainer and ParallelContainer has been adapted.
18581
18582 2009-09-08 19:13  caremoli
18583
18584         * src/DSC/: DSC_Basic/DSC_i.cxx, DSC_Basic/DSC_interface.cxx,
18585           DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
18586           DSC_User/Datastream/AdjacentFunctor.hxx,
18587           DSC_User/Datastream/CorbaTypeManipulator.hxx,
18588           DSC_User/Datastream/GenericPort.hxx,
18589           DSC_User/Datastream/GenericUsesPort.hxx,
18590           DSC_User/Datastream/Calcium/Calcium.cxx,
18591           DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
18592           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
18593           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
18594           DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
18595           DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
18596           DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
18597           DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
18598           DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
18599           DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
18600           DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx:
18601
18602         CCAR: remove debug prints from the standard trace and put these prints
18603         in a developer trace activated with #define MYDEBUG to put manually in sources
18604
18605 2009-09-08 19:04  caremoli
18606
18607         * src/: DF/DF_Attribute.cxx, DF/DF_Document.cxx,
18608           NamingService/SALOME_NamingService.cxx,
18609           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
18610           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
18611           NamingService/SALOME_NamingService.hxx:
18612
18613         CCAR: remove some memory leaks in DF and NamingService
18614               add helper methods to NamingService and LifeCycle
18615
18616 2009-09-08 15:46  adam
18617
18618         * salome_adm/cmake_files/am2cmake.py:
18619
18620         [no log message]
18621
18622 2009-09-08 12:13  adam
18623
18624         * bin/runSalome.py:
18625
18626         A fix to launch more than one session on windows
18627
18628 2009-09-08 11:50  adam
18629
18630         * salome_adm/cmake_files/am2cmake.py:
18631
18632         [no log message]
18633
18634 2009-09-08 11:07  adam
18635
18636         * salome_adm/cmake_files/am2cmake.py:
18637
18638         To construct the target cmake name, only the first "lib"
18639         must be removed ...
18640
18641 2009-09-08 11:04  adam
18642
18643         * salome_adm/cmake_files/am2cmake.py:
18644
18645         Remove -fPIC option on windows
18646
18647 2009-09-08 10:41  adam
18648
18649         * salome_adm/cmake_files/am2cmake.py:
18650
18651         Update according new version of
18652         make_common_starter.am in which is defined
18653         AM_CXXFLAGS = -I$(top_builddir)/salome_adm/unix -include SALOMEconfig.h
18654         AM_CPPFLAGS = -I$(top_builddir)/salome_adm/unix -include SALOMEconfig.h
18655
18656 2009-09-02 11:18  ribes
18657
18658         * src/KERNEL_PY/Makefile.am:
18659
18660         - Patch for recent Debian distrib:
18661           multiple same file is not allowed in one installation line
18662
18663 2009-08-31 14:48  secher
18664
18665         * src/Container/SALOME_ContainerManager.cxx:
18666
18667         just a little modification
18668
18669 2009-08-31 14:42  secher
18670
18671         * src/Container/SALOME_ContainerManager.cxx:
18672
18673         launch ompi-server with salome, and kill it at the end of Salome
18674
18675 2009-08-28 09:04  prascle
18676
18677         * bin/: orbmodule.py, runSalome.py, salome_session.py:
18678
18679         PR: Python 2.6 compatibility
18680
18681 2009-08-27 18:12  caremoli
18682
18683         * src/Container/SALOME_ContainerManager.cxx:
18684
18685         CCAR: I have added a way to define the directory for the container log files
18686         If the environment variable SALOME_TMP_DIR is defined and is a directory the
18687         log files are created in this directory and not in /tmp.
18688         This modification has only be done for Linux and only for the container logs.
18689         Other temporary files go in /tmp as before.
18690
18691 2009-08-26 09:26  caremoli
18692
18693         * src/: DF/DF_Document.cxx, SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
18694           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
18695           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
18696           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
18697           SALOMEDS/SALOMEDS_SComponent_i.cxx,
18698           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
18699           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
18700           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
18701           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
18702           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
18703           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
18704           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
18705           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
18706           NamingService/SALOME_NamingServicePy.py,
18707           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
18708
18709         CCAR: remove some memory leaks in SALOMEDS CORBA interface
18710
18711 2009-08-21 10:23  vsr
18712
18713         * Makefile.am, configure.ac:
18714
18715         Issue 20406: Time compilation when recompiling
18716
18717 2009-08-20 13:55  vsr
18718
18719         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
18720
18721         Fix bug in GetDirFromPath() function - wrong directory is returned if the file in the current directory is specified
18722
18723 2009-08-20 07:05  vsr
18724
18725         * salome_adm/unix/config_files/Makefile.am:
18726
18727         Issue 0020406: Time compilation when recompiling
18728         Customize install script
18729
18730 2009-08-20 06:58  vsr
18731
18732         * salome_adm/unix/config_files/Makefile.am:
18733
18734         Issue 0020406: Time compilation when recompiling
18735         Customize install script
18736
18737 2009-08-19 18:20  barate
18738
18739         * salome_adm/unix/config_files/local_install.m4:
18740
18741         file local_install.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:24 +0000
18742
18743 2009-08-19 18:20  prascle
18744
18745         * salome_adm/unix/config_files/local_install.m4:
18746
18747         file local_install.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
18748
18749 2009-08-19 18:20  vsr
18750
18751         * salome_adm/unix/config_files/local_install.m4:
18752
18753         Issue 0020406: Time compilation when recompiling
18754         Customize install script
18755
18756 2009-08-18 14:12  vsr
18757
18758         * bin/launchConfigureParser.py:
18759
18760         Issue 0020445: Be able to launch runSalome aaa.py
18761
18762 2009-08-18 12:36  vsr
18763
18764         * bin/nameserver.py:
18765
18766         Issue 0020448: Put the omniNames log files in a subdir
18767
18768 2009-08-13 08:55  vsr
18769
18770         * src/: Communication/Makefile.am, Communication_SWIG/Makefile.am,
18771           Container/Makefile.am, DSC/DSC_Basic/Makefile.am,
18772           DSC/DSC_Python/Makefile.am, DSC/DSC_User/Makefile.am,
18773           DSC/DSC_User/Basic/Makefile.am,
18774           DSC/DSC_User/Datastream/Palm/Makefile.am,
18775           DSC/ParallelDSC/Makefile.am, GenericObj/Makefile.am,
18776           Launcher/Makefile.am, LifeCycleCORBA/Makefile.am,
18777           LifeCycleCORBA/Test/Makefile.am, LifeCycleCORBA_SWIG/Makefile.am,
18778           Logger/Makefile.am, MPIContainer/Makefile.am,
18779           ModuleCatalog/Makefile.am, NOTIFICATION_SWIG/Makefile.am,
18780           NamingService/Makefile.am, NamingService/Test/Makefile.am,
18781           Notification/Makefile.am, ParallelContainer/Makefile.am,
18782           Registry/Makefile.am, ResourcesManager/Makefile.am,
18783           SALOMEDS/Makefile.am, SALOMEDS/Test/Makefile.am,
18784           SALOMEDSClient/Makefile.am, SALOMEDSImpl/Test/Makefile.am,
18785           SALOMETraceCollector/Makefile.am,
18786           SALOMETraceCollector/Test/Makefile.am, TOOLSDS/Makefile.am,
18787           TestContainer/Makefile.am, TestMPIContainer/Makefile.am,
18788           UnitTests/Makefile.am, Utils/Makefile.am, Utils/Test/Makefile.am:
18789
18790         Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
18791
18792 2009-08-13 06:50  vsr
18793
18794         * configure.ac, idl/Makefile.am,
18795           salome_adm/unix/SALOMEconfig.ref.in,
18796           salome_adm/unix/make_common_starter.am,
18797           src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
18798
18799         Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
18800
18801 2009-08-12 08:30  vsr
18802
18803         * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
18804           ac_cxx_have_sstream.m4:
18805
18806         Improve check scripts: avoid warnings with autoconf v2.63
18807
18808 2009-08-06 10:05  prascle
18809
18810         * bin/appli_clean.sh:
18811
18812         PR: option -f to force clean, for use by YACS, make check
18813
18814 2009-08-04 11:48  adam
18815
18816         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
18817
18818         windows port
18819
18820 2009-08-03 17:16  adam
18821
18822         * src/: Container/SALOME_ContainerManager.cxx,
18823           KERNEL_PY/salome_test.py:
18824
18825         windows port
18826
18827 2009-08-03 17:14  adam
18828
18829         * salome_adm/cmake_files/FindPYTHON.cmake:
18830
18831         PYTHON_CPPFLAGS is used by yacs
18832
18833 2009-08-03 17:11  adam
18834
18835         * salome_adm/cmake_files/FindBOOST.cmake:
18836
18837         Improve boost detection in order to be correct for all modules
18838
18839 2009-08-03 16:57  barate
18840
18841         * bin/runSalome.bat:
18842
18843         file runSalome.bat was added on branch BR_V51_RB on 2009-09-22 08:38:21 +0000
18844
18845 2009-08-03 16:57  prascle
18846
18847         * bin/runSalome.bat:
18848
18849         file runSalome.bat was added on branch BR_V51_AR on 2009-11-06 13:25:40 +0000
18850
18851 2009-08-03 16:57  adam
18852
18853         * bin/: Makefile.am, runSalome.bat:
18854
18855         add a runSalome.bat for windows
18856
18857 2009-07-30 18:04  adam
18858
18859         * src/HDFPersist/HDFobjectIdentify.c:
18860
18861         Remove warnings
18862
18863 2009-07-29 16:52  vsr
18864
18865         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
18866
18867         Fix compilation pb on Windows
18868
18869 2009-07-28 16:34  adam
18870
18871         * bin/: launchConfigureParser.py, runSalome.py:
18872
18873         add the --ddd-session option
18874
18875 2009-07-28 10:34  secher
18876
18877         * src/MPIContainer/: MPIContainer_i.cxx, SALOME_MPIContainer.cxx:
18878
18879         use root_poa for activate MPI servant
18880
18881 2009-07-15 10:00  vsr
18882
18883         * bin/appli_clean.sh:
18884
18885         Merge from V5_1_2_BR branch (14 July 2009)
18886
18887 2009-07-02 09:14  vsr
18888
18889         * bin/appli_clean.sh:
18890
18891         Issue 0020414: rm -rf unprotected in a script of SALOME Application
18892
18893 2009-07-01 08:31  srn
18894
18895         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
18896
18897         Changed WNT32 defines to WIN32
18898
18899 2009-06-30 14:46  srn
18900
18901         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
18902
18903         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
18904
18905 2009-06-16 12:16  secher
18906
18907         * src/Container/SALOME_ContainerManager.cxx:
18908
18909         debug MPI Containers
18910
18911 2009-06-11 15:02  secher
18912
18913         * src/LifeCycleCORBA/TestContainerManager.cxx:
18914
18915         debug TestContainerManager following EDF improvement of ressources manager
18916
18917 2009-06-01 12:25  mnt
18918
18919         * configure.ac:
18920
18921         Changing version to 5.1.2
18922
18923 2009-05-29 13:59  adam
18924
18925         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
18926
18927         [windows] Avoid a segmentation in killOmniNames
18928
18929 2009-05-29 13:58  adam
18930
18931         * bin/orbmodule.py:
18932
18933         [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.
18934
18935 2009-05-29 13:56  adam
18936
18937         * bin/envSalome.py:
18938
18939         [windows] Fix a problem when salome is installed in a path with spaces inside.
18940
18941 2009-05-27 15:19  adam
18942
18943         * salome_adm/cmake_files/am2cmake.py:
18944
18945         [no log message]
18946
18947 2009-05-27 12:01  adam
18948
18949         * salome_adm/cmake_files/am2cmake.py:
18950
18951         compatibility hexoticplugin ghs3dplugin
18952
18953 2009-05-26 15:51  caremoli
18954
18955         * src/Container/SALOME_Component_i.hxx:
18956
18957         CCAR: change setStudyId to virtual method to be able to derive it in components
18958
18959 2009-05-26 15:25  caremoli
18960
18961         * idl/SALOME_Component.idl:
18962
18963         CCAR: remove unused comment
18964
18965 2009-05-25 14:24  adam
18966
18967         * salome_adm/cmake_files/install_python_from_idl.cmake:
18968
18969         [no log message]
18970
18971 2009-05-22 14:33  vsr
18972
18973         * configure.ac:
18974
18975         0020354: EDF 1031 OTHER warnings with automake 1.10
18976
18977 2009-05-22 10:53  caremoli
18978
18979         * src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx:
18980
18981         CCAR: add automatic management of GenericObj in study.
18982         If a GenericObj id publish in study, its reference count must be incremented (call to Register()).
18983         When it is unpublished, its reference count must be decremented (call to Destroy()).
18984         This was not done when calling SetValue on a AttributeIOR so if someone manages
18985         GenericObj in the right way, the references in study could be lost.
18986
18987 2009-05-20 14:12  vsr
18988
18989         * bin/: salome_utils.py, setenv.py:
18990
18991         Fix problem with wrong permissions on the /tmp/logs folder
18992
18993 2009-05-20 10:38  barate
18994
18995         * src/Makefile.am:
18996
18997         Fixed --with-onlylauncher mode (by adding libSALOMEBasics when compiling in this mode)
18998
18999 2009-05-20 08:46  caremoli
19000
19001         * configure.ac:
19002
19003         CCAR: change version name
19004
19005 2009-05-19 16:41  caremoli
19006
19007         * configure.ac, idl/Makefile.am, idl/SALOMEDS.idl,
19008           salome_adm/unix/config_files/check_calcium.m4,
19009           src/Container/SALOME_ContainerManager.cxx,
19010           src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
19011
19012         CCAR: change in check_calcium.m4 macro for --with-cal-int=<intorlong>
19013
19014 2009-05-19 15:46  adam
19015
19016         * src/ResourcesManager/Makefile.am:
19017
19018         windows port : ResourcesManager must be linked with SALOMEBasics otherwise Kernel_Utils::GetHostname() is unresolved.
19019
19020 2009-05-19 15:42  adam
19021
19022         * src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
19023
19024         cmake port
19025
19026 2009-05-19 15:40  adam
19027
19028         * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
19029
19030         [no log message]
19031
19032 2009-05-19 09:09  caremoli
19033
19034         * configure.ac:
19035
19036         CCAR: remove error in AM_CONDITIONAL
19037
19038 2009-05-18 19:11  barate
19039
19040         * src/KERNEL_PY/salome_genericobj.py:
19041
19042         file salome_genericobj.py was added on branch BR_V51_RB on 2009-09-22 08:38:26 +0000
19043
19044 2009-05-18 19:11  prascle
19045
19046         * src/KERNEL_PY/salome_genericobj.py:
19047
19048         file salome_genericobj.py was added on branch BR_V51_AR on 2009-11-06 13:25:46 +0000
19049
19050 2009-05-18 19:11  caremoli
19051
19052         * src/KERNEL_PY/: Makefile.am, salome_genericobj.py:
19053
19054         CCAR: add a python module for automatic management of genericobj
19055               reference counting.
19056               The module is not active by default.
19057               It must be imported to activate the automatic reference counting
19058
19059 2009-05-18 16:48  fayolle
19060
19061         * idl/Makefile.am:
19062
19063         Gestion 32/64bits dans l'interfce C/F de Calcium.
19064
19065 2009-05-18 15:43  fayolle
19066
19067         * idl/Calcium_Ports.idl:
19068
19069         [no log message]
19070
19071 2009-05-18 15:18  fayolle
19072
19073         * src/DSC/DSC_Python/Makefile.am:
19074
19075         Gestion 32/64bits dans l'interfce C/F de Calcium.
19076
19077 2009-05-18 15:16  barate
19078
19079         * salome_adm/unix/config_files/ac_check_sizeof_fortran.m4:
19080
19081         file ac_check_sizeof_fortran.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:23 +0000
19082
19083 2009-05-18 15:16  barate
19084
19085         * salome_adm/unix/config_files/check_calcium.m4:
19086
19087         file check_calcium.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:24 +0000
19088
19089 2009-05-18 15:16  prascle
19090
19091         * salome_adm/unix/config_files/ac_check_sizeof_fortran.m4:
19092
19093         file ac_check_sizeof_fortran.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
19094
19095 2009-05-18 15:16  prascle
19096
19097         * salome_adm/unix/config_files/check_calcium.m4:
19098
19099         file check_calcium.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
19100
19101 2009-05-18 15:15  barate
19102
19103         * idl/Calcium_Ports.idl.in:
19104
19105         file Calcium_Ports.idl.in was added on branch BR_V51_RB on 2009-09-22 08:38:23 +0000
19106
19107 2009-05-18 15:15  prascle
19108
19109         * idl/Calcium_Ports.idl.in:
19110
19111         file Calcium_Ports.idl.in was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
19112
19113 2009-05-18 15:14  barate
19114
19115         * src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in:
19116
19117         file CalciumFortranInt.h.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19118
19119 2009-05-18 15:14  barate
19120
19121         * src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx:
19122
19123         file CalciumMacroCInterface.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19124
19125 2009-05-18 15:14  barate
19126
19127         * src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in:
19128
19129         file CalciumProvidesPort.hxx.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19130
19131 2009-05-18 15:14  barate
19132
19133         *
19134           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in:
19135
19136         file calcium_integer_port_uses.hxx.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19137
19138 2009-05-18 15:14  barate
19139
19140         * src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx:
19141
19142         file calcium_long_port_uses.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19143
19144 2009-05-18 15:14  barate
19145
19146         * src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
19147
19148         file calciumf.h was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19149
19150 2009-05-18 15:14  prascle
19151
19152         * src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in:
19153
19154         file CalciumFortranInt.h.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19155
19156 2009-05-18 15:14  prascle
19157
19158         * src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx:
19159
19160         file CalciumMacroCInterface.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19161
19162 2009-05-18 15:14  prascle
19163
19164         * src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in:
19165
19166         file CalciumProvidesPort.hxx.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19167
19168 2009-05-18 15:14  prascle
19169
19170         *
19171           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in:
19172
19173         file calcium_integer_port_uses.hxx.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19174
19175 2009-05-18 15:14  prascle
19176
19177         * src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx:
19178
19179         file calcium_long_port_uses.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19180
19181 2009-05-18 15:14  prascle
19182
19183         * src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
19184
19185         file calciumf.h was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19186
19187 2009-05-18 15:14  barate
19188
19189         * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx:
19190
19191         file CalciumCInterface.cxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19192
19193 2009-05-18 15:14  barate
19194
19195         * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx:
19196
19197         file CalciumCInterface.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19198
19199 2009-05-18 15:14  barate
19200
19201         * src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx:
19202
19203         file calcium_intc_port_uses.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
19204
19205 2009-05-18 15:14  prascle
19206
19207         * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx:
19208
19209         file CalciumCInterface.cxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19210
19211 2009-05-18 15:14  prascle
19212
19213         * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx:
19214
19215         file CalciumCInterface.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19216
19217 2009-05-18 15:14  prascle
19218
19219         * src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx:
19220
19221         file calcium_intc_port_uses.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
19222
19223 2009-05-18 15:14  fayolle
19224
19225         * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
19226           src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
19227           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
19228           src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
19229           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
19230           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
19231           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
19232           src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
19233           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
19234           src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
19235           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
19236           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
19237           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
19238           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
19239           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
19240           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
19241           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
19242           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
19243           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
19244           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
19245           src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
19246           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
19247           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
19248           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
19249           src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
19250           idl/Calcium_Ports.idl.in, idl/Makefile.am, configure.ac,
19251           salome_adm/unix/config_files/Makefile.am,
19252           salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
19253           salome_adm/unix/config_files/check_calcium.m4,
19254           salome_adm/unix/config_files/check_f77.m4:
19255
19256         Gestion 32/64bits dans l'interfce C/F de Calcium.
19257
19258 2009-05-15 17:30  prascle
19259
19260         * configure.ac, src/Launcher/Makefile.am,
19261           src/ResourcesManager/Makefile.am:
19262
19263         merge from tag mergeto_V5_1_main_15may09 branch BR_V51_RB
19264
19265 2009-05-15 15:46  barate
19266
19267         * salome_adm/unix/config_files/ac_linker_options.m4:
19268
19269         Merge from V5_1_main tag before_merge_20090515
19270
19271 2009-05-15 15:13  vsr
19272
19273         * salome_adm/unix/config_files/ac_linker_options.m4:
19274
19275         Issue 0019980: EDF 818 OTHER : Get rid of the RPATH issues in packaging
19276
19277 2009-05-15 15:00  barate
19278
19279         * configure.ac, bin/salome_utils.py, bin/setenv.py,
19280           doc/INSTALL.txt, doc/KERNEL_Services.txt,
19281           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
19282           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
19283           doc/salome/Makefile.am, doc/salome/batch.dox,
19284           doc/salome/kernel_salome.dox, doc/salome/kernel_services.dox,
19285           doc/salome/main.dox, doc/salome/tui/pythfilter.py,
19286           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
19287           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
19288           idl/SALOME_ContainerManager.idl, idl/SALOME_PACOExtension.idl,
19289           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
19290           idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
19291           idl/SALOME_Ports.xml, resources/KERNELCatalog.xml.in,
19292           salome_adm/cmake_files/FindBOOST.cmake,
19293           salome_adm/cmake_files/FindPLATFORM.cmake,
19294           salome_adm/cmake_files/am2cmake.py,
19295           salome_adm/unix/config_files/check_openmpi.m4,
19296           salome_adm/unix/config_files/check_paco++.m4,
19297           salome_adm/unix/config_files/production.m4,
19298           src/Container/Makefile.am, src/Container/SALOME_Container.cxx,
19299           src/Container/SALOME_ContainerManager.cxx,
19300           src/Container/SALOME_ContainerManager.hxx, src/DSC/Makefile.am,
19301           src/DSC/ParallelDSC/Makefile.am,
19302           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
19303           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
19304           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
19305           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
19306           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
19307           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
19308           src/KERNEL_PY/import_hook.py,
19309           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19310           src/MPIContainer/MPIContainer_i.cxx,
19311           src/NamingService/SALOME_NamingService.cxx,
19312           src/NamingService/SALOME_NamingService.hxx,
19313           src/ParallelContainer/Makefile.am,
19314           src/ParallelContainer/Parallel_Salome_file_i.cxx,
19315           src/ParallelContainer/Parallel_Salome_file_i.hxx,
19316           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
19317           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
19318           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
19319           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
19320           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
19321           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
19322           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
19323           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
19324           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
19325           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
19326           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
19327           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
19328           src/ResourcesManager/ResourcesManager.cxx,
19329           src/ResourcesManager/ResourcesManager.hxx,
19330           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
19331           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
19332           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
19333           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
19334           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19335           src/ResourcesManager/SALOME_ResourcesManager.hxx,
19336           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
19337           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
19338           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
19339           src/TestMPIContainer/TestMPIComponentEngine.hxx,
19340           src/Utils/Utils_Identity.cxx,
19341           src/Utils/Utils_SALOME_Exception.hxx:
19342
19343         Merge from V5_1_main 2009-05-15 14:48 (Paris, UTC+2)
19344
19345 2009-05-15 11:55  adam
19346
19347         * salome_adm/cmake_files/am2cmake.py:
19348
19349         add vtk python support
19350         install correctly SalomePyQt and SalomePy
19351         change permissions of *.py files in bin/salome
19352
19353 2009-05-14 15:09  vsr
19354
19355         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
19356
19357         Rollback previous integration
19358
19359 2009-05-14 11:28  adam
19360
19361         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
19362
19363         Fix a tiny error detected by Werror ...
19364
19365 2009-05-13 16:39  vsr
19366
19367         * src/KERNEL_PY/import_hook.py:
19368
19369         Issue 0020349: compatibility python 2.6 in import_hook
19370
19371 2009-05-13 16:11  vsr
19372
19373         * src/SALOMEDSImpl/: SALOMEDSImpl_StudyBuilder.cxx,
19374           SALOMEDSImpl_StudyManager.cxx:
19375
19376         Issue 0020350: compatibility gcc4.3.2
19377
19378 2009-05-12 16:52  adam
19379
19380         * src/ResourcesManager/: ResourcesManager.cxx,
19381           ResourcesManager.hxx:
19382
19383         windows port
19384
19385 2009-05-12 16:51  adam
19386
19387         * salome_adm/cmake_files/FindBOOST.cmake:
19388
19389         Compatibility boost 1.35 1.38
19390
19391 2009-05-07 13:51  prascle
19392
19393         * configure.ac, doc/INSTALL.txt, doc/KERNEL_Services.txt,
19394           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
19395           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
19396           doc/salome/batch.dox, doc/salome/tui/pythfilter.py,
19397           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
19398           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
19399           idl/SALOME_ContainerManager.idl, idl/SALOME_PACOExtension.idl,
19400           idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
19401           idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
19402           idl/SALOME_Ports.xml, resources/KERNELCatalog.xml.in,
19403           salome_adm/unix/config_files/check_openmpi.m4,
19404           salome_adm/unix/config_files/check_paco++.m4,
19405           salome_adm/unix/config_files/production.m4,
19406           src/Container/Makefile.am, src/Container/SALOME_Container.cxx,
19407           src/Container/SALOME_ContainerManager.cxx,
19408           src/Container/SALOME_ContainerManager.hxx,
19409           src/DSC/ParallelDSC/Makefile.am,
19410           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
19411           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
19412           src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
19413           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
19414           src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
19415           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
19416           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19417           src/MPIContainer/MPIContainer_i.cxx,
19418           src/NamingService/SALOME_NamingService.cxx,
19419           src/NamingService/SALOME_NamingService.hxx,
19420           src/ParallelContainer/Makefile.am,
19421           src/ParallelContainer/Parallel_Salome_file_i.cxx,
19422           src/ParallelContainer/Parallel_Salome_file_i.hxx,
19423           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
19424           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
19425           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
19426           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
19427           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
19428           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
19429           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
19430           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
19431           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
19432           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
19433           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
19434           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
19435           src/ResourcesManager/ResourcesManager.cxx,
19436           src/ResourcesManager/ResourcesManager.hxx,
19437           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
19438           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
19439           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
19440           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
19441           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19442           src/ResourcesManager/SALOME_ResourcesManager.hxx,
19443           src/TestMPIContainer/TestMPIComponentEngine.hxx,
19444           src/Utils/Utils_Identity.cxx:
19445
19446         merge from BR_V51_AR 7 may 09
19447
19448 2009-05-07 10:43  ribes
19449
19450         * configure.ac, bin/salome_utils.py, bin/setenv.py,
19451           doc/salome/Makefile.am, doc/salome/kernel_salome.dox,
19452           doc/salome/kernel_services.dox, doc/salome/main.dox,
19453           idl/Makefile.am, salome_adm/cmake_files/FindPLATFORM.cmake,
19454           src/DSC/Makefile.am,
19455           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19456           src/ResourcesManager/ResourcesManager.cxx,
19457           src/Utils/Utils_SALOME_Exception.hxx:
19458
19459         - Merger with last tag of Kernel for merging to the main branch
19460
19461 2009-05-06 16:59  ribes
19462
19463         * bin/Makefile.am, bin/nameserver.py, bin/runSalome.py,
19464           bin/appliskel/runRemote.sh, doc/salome/Makefile.am,
19465           doc/salome/gui/Makefile.am, doc/salome/gui/static/footer.html,
19466           doc/salome/tui/Makefile.am, doc/salome/tui/doxyfile.in,
19467           doc/salome/tui/static/footer.html, idl/Makefile.am,
19468           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
19469           idl/SALOME_MPIContainer.idl, resources/KERNELCatalog.xml.in,
19470           salome_adm/cmake_files/FindBOOST.cmake,
19471           salome_adm/cmake_files/FindCPPUNIT.cmake,
19472           salome_adm/cmake_files/FindHDF5.cmake,
19473           salome_adm/cmake_files/FindLIBXML2.cmake,
19474           salome_adm/cmake_files/FindOMNIORB.cmake,
19475           salome_adm/cmake_files/FindPLATFORM.cmake,
19476           salome_adm/cmake_files/FindPTHREADS.cmake,
19477           salome_adm/cmake_files/FindPYTHON.cmake,
19478           salome_adm/cmake_files/FindSWIG.cmake,
19479           salome_adm/cmake_files/Makefile.am,
19480           salome_adm/cmake_files/am2cmake.py,
19481           salome_adm/cmake_files/install_and_compile_python_file.cmake,
19482           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
19483           salome_adm/unix/config_files/ac_cxx_warnings.m4,
19484           salome_adm/unix/config_files/check_openmpi.m4,
19485           salome_adm/unix/config_files/production.m4, src/Makefile.am,
19486           src/Basics/SALOME_Basics.hxx,
19487           src/Communication/SALOME_Communication.hxx,
19488           src/Container/Container_i.cxx, src/Container/Makefile.am,
19489           src/Container/SALOME_Component_i.hxx,
19490           src/Container/SALOME_Container.cxx,
19491           src/Container/SALOME_Container.hxx,
19492           src/Container/SALOME_ContainerManager.cxx,
19493           src/Container/SALOME_ContainerManager.hxx,
19494           src/Container/SALOME_Container_i.hxx,
19495           src/Container/SALOME_FileTransfer_i.cxx,
19496           src/Container/SALOME_FileTransfer_i.hxx,
19497           src/Container/Salome_file_i.hxx, src/DF/DF_definitions.hxx,
19498           src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
19499           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
19500           src/GenericObj/SALOME_GenericObj_i.hh,
19501           src/HDFPersist/HDFexport.hxx, src/KERNEL_PY/Makefile.am,
19502           src/KERNEL_PY/salome_test.py, src/KERNEL_PY/salome_version.py,
19503           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
19504           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
19505           src/Launcher/SALOME_Launcher.cxx,
19506           src/Launcher/SALOME_Launcher_Handler.cxx,
19507           src/Launcher/SALOME_Launcher_defs.hxx,
19508           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
19509           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
19510           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19511           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
19512           src/LifeCycleCORBA/TestContainerManager.cxx,
19513           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
19514           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
19515           src/LifeCycleCORBA_SWIG/Makefile.am,
19516           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
19517           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
19518           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
19519           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
19520           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
19521           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
19522           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
19523           src/Logger/Test/Makefile.am, src/MPIContainer/MPIContainer_i.cxx,
19524           src/MPIContainer/MPIContainer_i.hxx,
19525           src/MPIContainer/MPIObject_i.cxx,
19526           src/MPIContainer/MPIObject_i.hxx, src/ModuleCatalog/Makefile.am,
19527           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
19528           src/ModuleGenerator/Makefile.am,
19529           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
19530           src/NamingService/Makefile.am,
19531           src/NamingService/SALOME_NamingService_defs.hxx,
19532           src/NamingService/Test/Makefile.am,
19533           src/Notification/SALOME_NOTIFICATION.hxx,
19534           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
19535           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
19536           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
19537           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
19538           src/Registry/SALOME_Registry.hxx,
19539           src/ResourcesManager/ResourcesManager.cxx,
19540           src/ResourcesManager/ResourcesManager.hxx,
19541           src/ResourcesManager/ResourcesManager_Defs.hxx,
19542           src/ResourcesManager/SALOME_LoadRateManager.cxx,
19543           src/ResourcesManager/SALOME_LoadRateManager.hxx,
19544           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
19545           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
19546           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
19547           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
19548           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19549           src/ResourcesManager/SALOME_ResourcesManager.hxx,
19550           src/SALOMEDS/Makefile.am,
19551           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
19552           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
19553           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
19554           src/SALOMEDS/SALOMEDS_Defines.hxx,
19555           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
19556           src/SALOMEDS/SALOMEDS_Study_i.cxx, src/SALOMEDS/Test/Makefile.am,
19557           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
19558           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
19559           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
19560           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
19561           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
19562           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
19563           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
19564           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
19565           src/SALOMEDSImpl/Test/Makefile.am,
19566           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
19567           src/SALOMELocalTrace/Test/Makefile.am,
19568           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
19569           src/SALOMETraceCollector/Test/Makefile.am,
19570           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
19571           src/TestContainer/SALOME_TestComponent.hxx,
19572           src/UnitTests/Makefile.am, src/Utils/Makefile.am,
19573           src/Utils/SALOME_Utils.hxx, src/Utils/Utils_SALOME_Exception.hxx,
19574           src/Utils/Test/Makefile.am:
19575
19576         - Merge from TAG CCAR_cm3_end
19577         - Bug fix when waiting a parallel container
19578         - Better installation of python files for parallel containers
19579         - A parallel container is now correctly deleted in the naming service
19580         when it is shutdown
19581
19582 2009-05-06 15:08  ouv
19583
19584         * bin/: salome_utils.py, setenv.py:
19585
19586         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.
19587
19588 2009-05-06 12:05  vsr
19589
19590         * configure.ac, src/DSC/Makefile.am:
19591
19592         Issue 0020343: [WNT] Do not compile DSC_User and DSC_Python
19593
19594 2009-05-06 07:37  vsr
19595
19596         * salome_adm/cmake_files/FindPLATFORM.cmake:
19597
19598         Specify additional macro-definition _WIN32_WINNT because at least Windows 2000 API is required
19599
19600 2009-05-05 16:27  caremoli
19601
19602         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
19603
19604         CCAR: remove bug in FindOrLoad_Component
19605
19606 2009-05-04 17:45  caremoli
19607
19608         * doc/salome/: Makefile.am, kernel_salome.dox, kernel_services.dox,
19609           main.dox:
19610
19611         CCAR: improve salome.py documentation (description of main variables mostly
19612         borrowed from GUI doc)
19613
19614 2009-05-04 17:36  adam
19615
19616         * src/Utils/Utils_SALOME_Exception.hxx:
19617
19618         [WNT] Export symbol maketext
19619
19620 2009-05-04 17:34  adam
19621
19622         * src/ResourcesManager/ResourcesManager.cxx:
19623
19624         Patch windows
19625
19626 2009-04-30 15:46  barate
19627
19628         * bin/Makefile.am, bin/nameserver.py, bin/runSalome.py,
19629           bin/appliskel/runRemote.sh, doc/salome/gui/Makefile.am,
19630           doc/salome/gui/static/footer.html,
19631           doc/salome/tui/static/footer.html, idl/SALOME_Component.idl,
19632           idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
19633           resources/KERNELCatalog.xml.in,
19634           salome_adm/cmake_files/FindBOOST.cmake,
19635           salome_adm/cmake_files/FindCPPUNIT.cmake,
19636           salome_adm/cmake_files/FindHDF5.cmake,
19637           salome_adm/cmake_files/FindLIBXML2.cmake,
19638           salome_adm/cmake_files/FindOMNIORB.cmake,
19639           salome_adm/cmake_files/FindPLATFORM.cmake,
19640           salome_adm/cmake_files/FindPTHREADS.cmake,
19641           salome_adm/cmake_files/FindPYTHON.cmake,
19642           salome_adm/cmake_files/FindSWIG.cmake,
19643           salome_adm/cmake_files/Makefile.am,
19644           salome_adm/cmake_files/am2cmake.py,
19645           salome_adm/cmake_files/install_and_compile_python_file.cmake,
19646           salome_adm/unix/config_files/check_openmpi.m4, src/Makefile.am,
19647           src/Communication/SALOME_Communication.hxx,
19648           src/Container/Container_i.cxx, src/Container/Makefile.am,
19649           src/Container/SALOME_ContainerManager.cxx,
19650           src/Container/SALOME_ContainerManager.hxx,
19651           src/Container/SALOME_Container_i.hxx,
19652           src/Container/SALOME_FileTransfer_i.cxx,
19653           src/Container/SALOME_FileTransfer_i.hxx,
19654           src/Container/Salome_file_i.hxx, src/DF/DF_definitions.hxx,
19655           src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
19656           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
19657           src/KERNEL_PY/Makefile.am, src/Launcher/BatchTest.cxx,
19658           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
19659           src/Launcher/SALOME_Launcher.cxx,
19660           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
19661           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19662           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
19663           src/LifeCycleCORBA/TestContainerManager.cxx,
19664           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
19665           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
19666           src/LifeCycleCORBA_SWIG/Makefile.am,
19667           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
19668           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
19669           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
19670           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
19671           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
19672           src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
19673           src/MPIContainer/MPIContainer_i.cxx,
19674           src/MPIContainer/MPIContainer_i.hxx,
19675           src/MPIContainer/MPIObject_i.cxx,
19676           src/MPIContainer/MPIObject_i.hxx, src/ModuleCatalog/Makefile.am,
19677           src/ModuleGenerator/Makefile.am, src/NamingService/Makefile.am,
19678           src/NamingService/Test/Makefile.am,
19679           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
19680           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
19681           src/ResourcesManager/ResourcesManager.cxx,
19682           src/ResourcesManager/ResourcesManager.hxx,
19683           src/ResourcesManager/SALOME_LoadRateManager.cxx,
19684           src/ResourcesManager/SALOME_LoadRateManager.hxx,
19685           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
19686           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
19687           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
19688           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
19689           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19690           src/ResourcesManager/SALOME_ResourcesManager.hxx,
19691           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Defines.hxx,
19692           src/SALOMEDS/SALOMEDS_Study_i.cxx, src/SALOMEDS/Test/Makefile.am,
19693           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
19694           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
19695           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
19696           src/SALOMEDSImpl/Test/Makefile.am,
19697           src/SALOMELocalTrace/Test/Makefile.am,
19698           src/SALOMETraceCollector/Test/Makefile.am,
19699           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
19700           src/UnitTests/Makefile.am, src/Utils/Makefile.am,
19701           src/Utils/Test/Makefile.am:
19702
19703         Merge from V5_1_main 2009-04-30 15:16 (Paris, UTC+2)
19704
19705 2009-04-30 13:51  caremoli
19706
19707         * idl/SALOME_ContainerManager.idl,
19708           src/Container/SALOME_ContainerManager.cxx,
19709           src/Container/SALOME_ContainerManager.hxx,
19710           src/Launcher/Launcher.cxx, src/Launcher/SALOME_Launcher.cxx,
19711           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
19712           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19713           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
19714           src/LifeCycleCORBA/TestContainerManager.cxx,
19715           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
19716           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
19717           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
19718           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
19719           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
19720           src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
19721           src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
19722           src/ResourcesManager/ResourcesManager.cxx,
19723           src/ResourcesManager/ResourcesManager.hxx,
19724           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19725           src/ResourcesManager/SALOME_ResourcesManager.hxx:
19726
19727         CCAR: several changes in Container Manager and Resources Manager
19728         1- remove unused members in MachineParameters, keep only members for requests
19729            the members removed are : alias, protocol, username, applipath, mpiImpl, batch
19730         2- remove the enum policy which is replaced by a new member in MachineParameters (policy)
19731         3- add a new member computerList in MachineParameters structure to specify a list of machines
19732            in a request to Container Manager
19733         3- remove no more used parameters (policy, possibleComputers, componentList
19734            in FindOrStartContainer, FindOrStarParallelContainer, StartContainer,
19735            GiveContainer and GetFittingResources. These operations now take only
19736            one argument : a MachineParameters structure.
19737         4- adapt LifeCycle to these changes
19738
19739 2009-04-30 09:27  ouv
19740
19741         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
19742
19743         Fix of bug IPAL21005 - Dump/load python script works only with absolute path
19744
19745 2009-04-29 17:43  adam
19746
19747         * salome_adm/cmake_files/FindPYTHON.cmake:
19748
19749         Modify the search for python executable in accordance
19750         of the official python windows i.e. python.exe is in
19751         PYTHON_HOME
19752
19753 2009-04-29 16:22  prascle
19754
19755         * src/ResourcesManager/ResourcesManager.cxx:
19756
19757         PR: default policy
19758
19759 2009-04-29 15:33  ribes
19760
19761         * src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
19762
19763         MPI nodes register two times
19764
19765 2009-04-29 15:33  ribes
19766
19767         * src/Container/: SALOME_ContainerManager.cxx,
19768           SALOME_ContainerManager.hxx:
19769
19770         - remove StartMPI, we use mpiexec for lam
19771         - PaCO++ MPI containers use machine file to launch distributed container
19772
19773 2009-04-29 15:32  ribes
19774
19775         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
19776           SALOME_ResourcesManager.cxx:
19777
19778         Generate MPI lam machine file for a lam machine or a cluster
19779
19780 2009-04-29 15:31  ribes
19781
19782         * idl/Makefile.am:
19783
19784         Create directory before create files in it
19785
19786 2009-04-29 12:05  secher
19787
19788         * src/MPIContainer/: MPIObject_i.cxx, MPIObject_i.hxx:
19789
19790         improvement of MPIObject
19791
19792 2009-04-28 17:37  vsr
19793
19794         * src/DSC/DSC_Python/Makefile.am:
19795
19796         Issue 0020332: Do not dist calcium_wrap.cpp
19797
19798 2009-04-28 17:20  vsr
19799
19800         * bin/nameserver.py:
19801
19802         Issue 0020331: add the -nohostname option on windows (patch from E.Adam)
19803
19804 2009-04-28 16:58  adam
19805
19806         * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
19807
19808         Compilation with cmake
19809
19810 2009-04-28 16:35  adam
19811
19812         * salome_adm/cmake_files/am2cmake.py:
19813
19814         Minor corrections
19815
19816 2009-04-28 16:35  adam
19817
19818         * salome_adm/cmake_files/FindPYTHON.cmake:
19819
19820         When WITH_PYTHON is used, PYTHON_EXECUTABLE must be set
19821
19822 2009-04-28 16:13  adam
19823
19824         * salome_adm/cmake_files/FindBOOST.cmake:
19825
19826         For boost to be compatible release / debug
19827
19828 2009-04-28 16:13  adam
19829
19830         * salome_adm/cmake_files/FindPTHREADS.cmake:
19831
19832         Integration requested by Alexander
19833
19834 2009-04-23 11:53  ribes
19835
19836         * src/ParallelContainer/: SALOME_ParallelContainerNodeDummy.cxx,
19837           SALOME_ParallelContainerNodeMpi.cxx:
19838
19839         Code more clear
19840
19841 2009-04-23 11:53  ribes
19842
19843         * src/Container/: SALOME_ContainerManager.cxx,
19844           SALOME_ContainerManager.hxx:
19845
19846         Remote launch of PaCO++ parallel container with Dummy ParallelLib
19847
19848 2009-04-23 11:52  ribes
19849
19850         * src/ResourcesManager/: SALOME_ResourcesManager.cxx,
19851           SALOME_ResourcesManager.hxx:
19852
19853         Adding a mew Method: getMachineFile for PaCO++ parallel container remote launch
19854         Currently only works with the Dummy parallel library
19855
19856 2009-04-22 09:22  ribes
19857
19858         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
19859           SALOME_ResourcesCatalog_Parser.hxx:
19860
19861         Adding AppliPath to cluster members
19862
19863 2009-04-22 09:22  ribes
19864
19865         * src/Container/SALOME_ContainerManager.cxx:
19866
19867         Patch for the new version of PaCO++
19868
19869 2009-04-21 11:51  ribes
19870
19871         * src/ResourcesManager/: ResourcesManager.cxx,
19872           ResourcesManager.hxx, SALOME_ResourcesManager.cxx:
19873
19874         - First step for A GetFittingResources for PaCO++ containers
19875
19876 2009-04-17 12:42  rnv
19877
19878         * src/: Makefile.am, KERNEL_PY/Makefile.am:
19879
19880         Implementation of the issue 0020151 (SALOME: Light Python module)
19881
19882 2009-04-16 13:54  vsr
19883
19884         * doc/salome/gui/static/footer.html:
19885
19886         Update copyright notes
19887
19888 2009-04-15 15:37  caremoli
19889
19890         * idl/SALOME_ContainerManager.idl,
19891           src/Container/SALOME_ContainerManager.cxx,
19892           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19893           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
19894           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
19895           src/ResourcesManager/ResourcesManager.cxx,
19896           src/ResourcesManager/ResourcesManager.hxx,
19897           src/ResourcesManager/SALOME_LoadRateManager.cxx,
19898           src/ResourcesManager/SALOME_LoadRateManager.hxx,
19899           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19900           src/ResourcesManager/SALOME_ResourcesManager.hxx:
19901
19902         CCAR:
19903         1- add mode member to MachineParameters. This string member can be "start" or "get" or "getorstart"
19904         if mode=="start" a new container is launched on each request.
19905         if mode=="get" an old container with the requested parameters is used if it exists.
19906         if mode=="getorstart" an old container is used or a new one if the old one does not exist.
19907         2- add policy member to MachineParameters. This string member replaces the enum policy argument
19908         of GiveContainer and StartContainer. This argument is left for compatibility but will be removed soon.
19909         3- replace LoadRateManager methods by three objects. These objects are referenced in a map (_resourceManagerMap)
19910         that can be extended without changing IDL interface.
19911         4- add a Find method to ResourceManager IDL for testing purpose.
19912
19913 2009-04-15 12:33  caremoli
19914
19915         * idl/SALOME_ContainerManager.idl, src/Launcher/BatchTest.cxx,
19916           src/Launcher/BatchTest.hxx, src/Launcher/SALOME_Launcher.cxx,
19917           src/LifeCycleCORBA/TestContainerManager.cxx,
19918           src/ResourcesManager/ResourcesManager.cxx,
19919           src/ResourcesManager/ResourcesManager.hxx,
19920           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
19921           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
19922           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
19923           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
19924           src/ResourcesManager/SALOME_ResourcesManager.cxx,
19925           src/ResourcesManager/SALOME_ResourcesManager.hxx:
19926
19927         CCAR:
19928         1- add a new type MachineDefinition in ContainerManager idl
19929         to separate machine definition parameters and machine parameters for requests
19930         to container manager (MachineParameters)
19931
19932         2- in Resource manager replace module by component. Selection of a resource is now
19933         done with a component name and no more with a module name.
19934         Now in CatalogResource.xml, we can specify for a resource that it supports
19935         a list of components or modules.
19936         Syntax for a component is:
19937         <component name="xxxx" moduleName="yyy" />
19938         Syntax for a module is:
19939         <modules moduleName="yyyy"/>
19940         When a module is added, a component with the same name is also added.
19941
19942 2009-04-15 09:33  vsr
19943
19944         * doc/salome/tui/static/footer.html:
19945
19946         Update copyright notes
19947
19948 2009-04-14 18:41  caremoli
19949
19950         * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
19951           src/Container/SALOME_Container_i.hxx,
19952           src/Container/SALOME_FileTransfer_i.cxx,
19953           src/Container/SALOME_FileTransfer_i.hxx,
19954           src/Container/Salome_file_i.hxx,
19955           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
19956           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
19957           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
19958           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
19959
19960         CCAR: add some methods to container and lifecycle to copy files to container,
19961         from container to another container and update SWIG interface
19962
19963 2009-04-14 17:15  caremoli
19964
19965         * bin/runSalome.py, bin/appliskel/runRemote.sh,
19966           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
19967           src/SALOMEDS/SALOMEDS_Study_i.cxx:
19968
19969         CCAR:
19970         1- execute python script files (runSalome -u) in globals and not in globals,locals
19971         as it was done before
19972         2- don't use obsolete omniORB initref form in runRemote.sh
19973         3- put _narrow (SALOMEDS_Study_i.cxx) into a try catch : _narrow can throw CORBA::Exception
19974
19975 2009-04-13 15:54  vsr
19976
19977         * src/: LifeCycleCORBA_SWIG/Test/Makefile.am,
19978           Container/Makefile.am:
19979
19980         0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
19981
19982 2009-04-13 15:49  vsr
19983
19984         * src/ModuleGenerator/Makefile.am:
19985
19986         0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
19987
19988 2009-04-13 15:46  vsr
19989
19990         * bin/Makefile.am:
19991
19992         0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
19993
19994 2009-04-13 15:33  vsr
19995
19996         * bin/Makefile.am, src/Container/Makefile.am,
19997           src/LifeCycleCORBA_SWIG/Makefile.am,
19998           src/LifeCycleCORBA_SWIG/Test/Makefile.am, src/Logger/Makefile.am,
19999           src/Logger/Test/Makefile.am, src/ModuleCatalog/Makefile.am,
20000           src/ModuleGenerator/Makefile.am, src/NamingService/Makefile.am,
20001           src/NamingService/Test/Makefile.am, src/SALOMEDS/Makefile.am,
20002           src/SALOMEDS/Test/Makefile.am, src/SALOMEDSImpl/Test/Makefile.am,
20003           src/SALOMELocalTrace/Test/Makefile.am,
20004           src/SALOMETraceCollector/Test/Makefile.am,
20005           src/TestContainer/Makefile.am, src/UnitTests/Makefile.am,
20006           src/Utils/Makefile.am, src/Utils/Test/Makefile.am:
20007
20008         0020303: Install some .py in the correct way - integrate patch from E.Adam.
20009
20010 2009-04-02 16:53  ribes
20011
20012         * src/ResourcesManager/: ResourcesManager.cxx,
20013           SALOME_ResourcesCatalog_Handler.cxx,
20014           SALOME_ResourcesCatalog_Handler.hxx,
20015           SALOME_ResourcesCatalog_Parser.cxx,
20016           SALOME_ResourcesCatalog_Parser.hxx:
20017
20018         Adding new type of SALOME CatalogResource : cluster
20019         It is the base to generate a MPI machine file for launching a parallel container
20020         in distributed resources
20021
20022 2009-04-02 12:01  ribes
20023
20024         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
20025
20026         FindOrStartParallelContainer -> StartParallelContainer
20027
20028 2009-04-02 11:57  ribes
20029
20030         * idl/SALOME_ContainerManager.idl:
20031
20032         FindOrStartParallelContainer -> StartParallelContainer
20033
20034 2009-04-02 11:54  ribes
20035
20036         * src/Container/: SALOME_ContainerManager.cxx,
20037           SALOME_ContainerManager.hxx:
20038
20039         - Changement de FindOrStartParallelContainer to StartParallelContainer
20040
20041 2009-04-01 16:22  ribes
20042
20043         * src/ResourcesManager/: ResourcesManager.cxx,
20044           ResourcesManager.hxx, SALOME_ResourcesCatalog_Handler.cxx,
20045           SALOME_ResourcesCatalog_Parser.hxx:
20046
20047         Adding a new env var: USER_CATALOG_RESOURCES_FILE that permits to have
20048         a user Catalog resources file
20049
20050 2009-04-01 11:33  ribes
20051
20052         * src/Container/: SALOME_ContainerManager.cxx,
20053           SALOME_ContainerManager.hxx:
20054
20055         New version of FindOrStartParallelContainer and LaunchParallelContainer
20056
20057 2009-03-31 15:50  ribes
20058
20059         * src/Container/SALOME_ContainerManager.cxx:
20060
20061         New version of BuildCommandToLaunchLocalParallelContainer
20062         - Adding PARALLEL_LOG env variable
20063           - Three way to launch parallel container: xterm, xterm_debug, file
20064
20065 2009-03-30 15:30  ribes
20066
20067         * src/Container/SALOME_ContainerManager.cxx:
20068
20069         _narrow cand send an exception !
20070
20071 2009-03-30 15:30  ribes
20072
20073         * src/ParallelContainer/Makefile.am:
20074
20075         Adding MPI to ParallelContainer lib
20076
20077 2009-03-30 11:30  ribes
20078
20079         * configure.ac, salome_adm/unix/config_files/production.m4,
20080           src/Container/Makefile.am, src/Container/SALOME_Container.cxx:
20081
20082         - Adding a new flag for configure: --enable-mpi-seq-container
20083         It permits to choose if you enable mpi support into SALOME_Container
20084         (default is no even if mpi is ok)
20085
20086 2009-03-27 16:28  ribes
20087
20088         * src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx:
20089
20090         [no log message]
20091
20092 2009-03-27 14:16  ribes
20093
20094         * src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
20095
20096         MPI leak
20097
20098 2009-03-27 13:54  ribes
20099
20100         * src/DSC/ParallelDSC/: Param_Double_Port_provides_i.cxx,
20101           Param_Double_Port_uses_i.cxx:
20102
20103         Fuites mémoires
20104
20105 2009-03-26 15:07  ribes
20106
20107         * src/: DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
20108           DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
20109           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx:
20110
20111         Use PaCO++ event service to synchronise port creation
20112
20113 2009-03-26 10:37  ribes
20114
20115         * src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx:
20116
20117         Correction Fuite mémoire
20118
20119 2009-03-25 16:03  ribes
20120
20121         * src/: DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
20122           DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
20123           DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
20124           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx:
20125
20126         - Correction lors de la destruction des ports DSC parallèle
20127           - On fait _remove_ref et c'est le poa qui les détruit Ã  la fin
20128
20129 2009-03-25 12:00  ribes
20130
20131         * idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
20132           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20133           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20134           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
20135
20136         - Ajout d'une fonction pour la cohérence du numéro des instances de composants
20137         dans le container parallèle
20138
20139 2009-03-25 11:23  ribes
20140
20141         * src/ParallelContainer/SALOME_ParallelContainer_i.cxx:
20142
20143         Enregistrement des composants sequentiels et parallèles dans le même nom
20144         dans le naming service
20145
20146 2009-03-25 11:15  ribes
20147
20148         * src/ParallelContainer/: SALOME_ParallelContainerNodeMpi.cxx,
20149           SALOME_ParallelContainerProxyDummy.cxx,
20150           SALOME_ParallelContainerProxyMpi.cxx:
20151
20152         - Mise Ã  jour des executables pour MPI
20153
20154 2009-03-24 17:09  ribes
20155
20156         * src/ParallelContainer/: SALOME_ParallelContainerProxyDummy.cxx,
20157           SALOME_ParallelContainerProxy_i.cxx,
20158           SALOME_ParallelContainerProxy_i.hxx,
20159           SALOME_ParallelContainer_i.cxx:
20160
20161         - Parallel Container can now load cpp and python components
20162
20163 2009-03-24 16:21  ribes
20164
20165         * idl/SALOME_PACOExtension.idl,
20166           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
20167           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
20168           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20169           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
20170           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20171           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
20172
20173         - create_component_instance patch
20174         - proxy correctly registered
20175
20176 2009-03-24 15:52  ribes
20177
20178         * idl/Makefile.am:
20179
20180         - Parallel compilation patch for PaCO++ python stubs
20181
20182 2009-03-24 14:57  ribes
20183
20184         * idl/Makefile.am:
20185
20186         - Adding generation of python corba stubs for PaCO++ idls
20187
20188 2009-03-20 16:26  ribes
20189
20190         * idl/SALOME_Component.xml,
20191           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
20192           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
20193           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
20194           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20195           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
20196           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20197           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
20198           src/Utils/Utils_Identity.cxx:
20199
20200         - Valgrind issues
20201
20202 2009-03-18 15:58  ribes
20203
20204         * src/ParallelContainer/: SALOME_ParallelComponent_i.cxx,
20205           SALOME_ParallelComponent_i.hxx,
20206           SALOME_ParallelContainerNodeDummy.cxx:
20207
20208         - SALOME_ParallelComponent up to date with sequential version
20209         - Valgring issue in SALOME_ParallelContainerNodeDummy
20210
20211 2009-03-18 13:49  secher
20212
20213         * salome_adm/unix/config_files/check_openmpi.m4:
20214
20215         debug for swig
20216
20217 2009-03-17 16:42  ribes
20218
20219         * src/: Container/SALOME_ContainerManager.cxx,
20220           NamingService/SALOME_NamingService.cxx,
20221           NamingService/SALOME_NamingService.hxx,
20222           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
20223           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
20224           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
20225           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20226           ParallelContainer/SALOME_ParallelContainer_i.cxx,
20227           ParallelContainer/SALOME_ParallelContainer_i.hxx:
20228
20229         - Valgrind issue for Parallel Containers
20230
20231 2009-03-17 14:36  secher
20232
20233         * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
20234           src/MPIContainer/MPIContainer_i.hxx:
20235
20236         improvement: replace oneway by threads
20237
20238 2009-03-13 15:54  ribes
20239
20240         * idl/DSC_Engines.idl, idl/Makefile.am,
20241           idl/SALOME_PACOExtension.idl,
20242           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
20243           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
20244           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
20245           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
20246           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
20247           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20248           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
20249           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20250           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
20251
20252         - New Version of Parallel Container
20253
20254 2009-03-12 17:08  ribes
20255
20256         * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
20257           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
20258           idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
20259           idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
20260           idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
20261           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
20262           src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
20263           src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
20264           src/ParallelContainer/Makefile.am,
20265           src/ParallelContainer/Parallel_Salome_file_i.hxx,
20266           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
20267           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
20268           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
20269           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
20270           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
20271           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20272           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
20273           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
20274           src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx:
20275
20276         - Start of a new version of PACO integration with SALOME
20277
20278 2009-03-12 12:52  vsr
20279
20280         * resources/KERNELCatalog.xml.in:
20281
20282         0020215: [CEA 328 ] New types needed in KERNELCatalog.xml
20283
20284 2009-03-12 09:49  adam
20285
20286         * src/NamingService/Test/Makefile.am:
20287
20288         Fix windows compilation AND make -j 8 compilation ...
20289
20290 2009-03-11 12:26  adam
20291
20292         * salome_adm/cmake_files/FindBOOST.cmake:
20293
20294         add some boost libs for visu
20295
20296 2009-03-10 16:36  adam
20297
20298         * salome_adm/cmake_files/am2cmake.py:
20299
20300         [no log message]
20301
20302 2009-03-09 10:05  adam
20303
20304         * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
20305
20306         [no log message]
20307
20308 2009-03-06 16:41  adam
20309
20310         * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
20311           FindHDF5.cmake, FindLIBXML2.cmake, FindOMNIORB.cmake,
20312           FindPLATFORM.cmake, FindPTHREADS.cmake, FindPYTHON.cmake,
20313           FindSWIG.cmake, am2cmake.py:
20314
20315         New version of cmake tools completely re-written
20316
20317 2009-03-06 11:31  barate
20318
20319         * configure.ac, src/Launcher/Makefile.am,
20320           src/ResourcesManager/Makefile.am:
20321
20322         Removed dependency on Basics from Batch. Fixed --with-onlylauncher mode.
20323
20324 2009-03-06 10:44  adam
20325
20326         * salome_adm/cmake_files/: install_and_compile_python_file.cmake,
20327           Makefile.am:
20328
20329         [no log message]
20330
20331 2009-03-05 15:43  ribes
20332
20333         * src/DSC/ParallelDSC/: Makefile.am,
20334           Param_Double_Port_provides_i.cxx,
20335           Param_Double_Port_provides_i.hxx, Param_Double_Port_uses_i.cxx,
20336           Param_Double_Port_uses_i.hxx, param_double_port_provides.cxx,
20337           param_double_port_provides.hxx, param_double_port_uses.cxx,
20338           param_double_port_uses.hxx:
20339
20340         - Changing names for YACSGEN
20341
20342 2009-03-05 10:41  ribes
20343
20344         * resources/KERNELCatalog.xml.in:
20345
20346         - Adding a firts parallel datastream port
20347
20348 2009-03-05 07:22  vsr
20349
20350         * doc/salome/gui/Makefile.am:
20351
20352         Fix problem with make distcheck step
20353
20354 2009-03-04 17:45  adam
20355
20356         * src/: DF/DF_definitions.hxx,
20357           Communication/SALOME_Communication.hxx:
20358
20359         Test EXPORTS definition with target name as suggested by cmake
20360
20361 2009-03-04 17:44  barate
20362
20363         * configure.ac, bin/appli_gen.py, bin/killSalome.py,
20364           bin/killSalomeWithPort.py, bin/nameserver.py, bin/orbmodule.py,
20365           bin/runSalome.py, bin/salome_session.py, bin/salome_utils.py,
20366           bin/showNS.py, bin/shutdownSalome.py, bin/waitContainers.py,
20367           bin/waitNS.py, doc/INSTALL.txt, doc/KERNEL_Services.txt,
20368           doc/Makefile.am, doc/SALOME_Application.txt, doc/UnitTests.txt,
20369           doc/index.txt, doc/kernel_resources.txt, doc/rst.css,
20370           doc/txt2html.sh, doc/salome/Makefile.am, doc/salome/batch.dox,
20371           doc/salome/install.dox, doc/salome/kernel_resources.dox,
20372           doc/salome/kernel_services.dox, doc/salome/main.dox,
20373           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
20374           doc/salome/unittests.dox, doc/salome/examples/example1,
20375           doc/salome/examples/example10, doc/salome/examples/example11,
20376           doc/salome/examples/example12, doc/salome/examples/example13,
20377           doc/salome/examples/example14, doc/salome/examples/example15,
20378           doc/salome/examples/example16, doc/salome/examples/example17,
20379           doc/salome/examples/example18, doc/salome/examples/example19,
20380           doc/salome/examples/example20, doc/salome/examples/example21,
20381           doc/salome/examples/example22, doc/salome/examples/example23,
20382           doc/salome/examples/example3, doc/salome/examples/example4,
20383           doc/salome/examples/example5, doc/salome/examples/example6,
20384           doc/salome/examples/example7, doc/salome/examples/example8,
20385           doc/salome/examples/example9, doc/salome/gui/Makefile.am,
20386           doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
20387           doc/salome/gui/static/footer.html,
20388           doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
20389           doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
20390           doc/salome/tui/static/footer.html,
20391           doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
20392           idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
20393           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
20394           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
20395           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
20396           idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
20397           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
20398           idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
20399           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
20400           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
20401           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
20402           idl/TypeData.idl, idl/nstest.idl,
20403           salome_adm/cmake_files/FindBOOST.cmake,
20404           salome_adm/cmake_files/FindHDF5.cmake,
20405           salome_adm/cmake_files/FindPLATFORM.cmake,
20406           salome_adm/cmake_files/FindPTHREADS.cmake,
20407           salome_adm/cmake_files/FindPYTHON.cmake,
20408           salome_adm/cmake_files/am2cmake.py,
20409           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
20410           salome_adm/unix/config_files/ac_cxx_warnings.m4,
20411           salome_adm/unix/config_files/check_openmpi.m4,
20412           salome_adm/unix/config_files/production.m4,
20413           src/Basics/SALOME_Basics.hxx, src/Container/Component_i.cxx,
20414           src/Container/Container_i.cxx,
20415           src/Container/SALOME_ComponentPy.py,
20416           src/Container/SALOME_Component_i.hxx,
20417           src/Container/SALOME_Container.cxx,
20418           src/Container/SALOME_Container.hxx,
20419           src/Container/SALOME_Container.py,
20420           src/Container/SALOME_ContainerManager.cxx,
20421           src/Container/SALOME_ContainerManager.hxx,
20422           src/Container/SALOME_FileTransfer_i.cxx,
20423           src/Container/Salome_file_i.cxx,
20424           src/DSC/DSC_Basic/DSC_Callbacks.hxx,
20425           src/DSC/DSC_Python/dsccalcium.py,
20426           src/GenericObj/SALOME_GenericObj_i.hh,
20427           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFexport.hxx,
20428           src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_iapp.py,
20429           src/KERNEL_PY/salome_test.py, src/KERNEL_PY/salome_version.py,
20430           src/Launcher/Launcher.hxx,
20431           src/Launcher/SALOME_Launcher_Handler.cxx,
20432           src/Launcher/SALOME_Launcher_defs.hxx,
20433           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
20434           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
20435           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
20436           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
20437           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
20438           src/Logger/SALOME_Trace.hxx, src/MPIContainer/MPIContainer_i.cxx,
20439           src/MPIContainer/MPIObject_i.cxx,
20440           src/MPIContainer/MPIObject_i.hxx,
20441           src/MPIContainer/SALOME_MPIContainer.cxx,
20442           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
20443           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
20444           src/NamingService/SALOME_NamingService.cxx,
20445           src/NamingService/SALOME_NamingServicePy.py,
20446           src/NamingService/SALOME_NamingService_defs.hxx,
20447           src/Notification/SALOME_NOTIFICATION.hxx,
20448           src/Registry/SALOME_Registry.hxx,
20449           src/ResourcesManager/ResourcesManager_Defs.hxx,
20450           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
20451           src/ResourcesManager/SALOME_ResourcesManager.hxx,
20452           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
20453           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
20454           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
20455           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
20456           src/SALOMEDS/SALOME_DriverPy.py,
20457           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
20458           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
20459           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
20460           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
20461           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
20462           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
20463           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
20464           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
20465           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
20466           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
20467           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
20468           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
20469           src/TestContainer/SALOME_TestComponent.hxx,
20470           src/Utils/SALOME_Utils.hxx, src/Utils/Utils_Identity.py,
20471           src/Utils/Utils_SALOME_Exception.hxx:
20472
20473         included V5_1_main 04mar09
20474
20475 2009-03-04 17:42  adam
20476
20477         * src/: TOOLSDS/SALOMEDS_Tool.hxx,
20478           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
20479           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
20480           SALOMEDS/SALOMEDS_Defines.hxx,
20481           ParallelContainer/SALOME_ParallelComponent_i.hxx,
20482           ParallelContainer/SALOME_ParallelContainer_i.hxx,
20483           DSC/DSC_Basic/DSC_Basic.hxx:
20484
20485         Test EXPORTS definition with target name as suggested by cmake
20486
20487 2009-03-04 16:21  adam
20488
20489         * src/: TestContainer/SALOME_TestComponent.hxx,
20490           ResourcesManager/ResourcesManager_Defs.hxx,
20491           ResourcesManager/SALOME_ResourcesManager.hxx,
20492           Notification/SALOME_NOTIFICATION.hxx,
20493           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
20494           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
20495           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx, Launcher/Launcher.hxx,
20496           Launcher/SALOME_Launcher_defs.hxx,
20497           Container/SALOME_Container.hxx:
20498
20499         Test EXPORTS definition with target name as suggested by cmake
20500
20501 2009-03-04 15:55  vsr
20502
20503         * doc/salome/: Makefile.am, tui/Makefile.am, tui/doxyfile.in:
20504
20505         Fix problem with make distcheck step
20506
20507 2009-03-04 15:15  adam
20508
20509         * src/: Registry/SALOME_Registry.hxx,
20510           ModuleCatalog/SALOME_ModuleCatalog.hxx:
20511
20512         Test EXPORTS definition with target name as suggested by cmake
20513
20514 2009-03-04 14:14  adam
20515
20516         * src/GenericObj/SALOME_GenericObj_i.hh:
20517
20518         Test EXPORTS definition with target name as suggested by cmake
20519
20520 2009-03-04 14:08  adam
20521
20522         * src/SALOMETraceCollector/SALOMETraceCollector.hxx:
20523
20524         Test EXPORTS definition with target name as suggested by cmake
20525
20526 2009-03-04 14:04  adam
20527
20528         * src/: HDFPersist/HDFexport.hxx, Logger/SALOME_Logger_Server.hxx,
20529           NamingService/SALOME_NamingService_defs.hxx,
20530           SALOMELocalTrace/SALOME_LocalTrace.hxx, Utils/SALOME_Utils.hxx,
20531           Utils/Utils_SALOME_Exception.hxx:
20532
20533         Test EXPORTS definition with target name as suggested by cmake
20534
20535 2009-03-04 13:59  adam
20536
20537         * src/Basics/SALOME_Basics.hxx:
20538
20539         Test EXPORTS definition with target name as suggested by cmake
20540
20541 2009-03-04 10:06  vsr
20542
20543         * src/KERNEL_PY/: salome_test.py, salome_version.py:
20544
20545         modify salome_test to skip SUPERV tests in SALOME series5x
20546
20547 2009-03-03 12:13  secher
20548
20549         * src/MPIContainer/MPIContainer_i.cxx:
20550
20551         suppression of barriers MPI following replacement oneway by threads
20552
20553 2009-02-27 17:45  adam
20554
20555         * salome_adm/cmake_files/: FindHDF5.cmake, FindPLATFORM.cmake,
20556           FindPTHREADS.cmake, FindPYTHON.cmake, am2cmake.py:
20557
20558         Compatibility release compilation on windows
20559
20560 2009-02-27 16:45  ribes
20561
20562         * idl/Makefile.am,
20563           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
20564           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx:
20565
20566         - BUG--
20567         - Limitation de PACO++ end
20568
20569 2009-02-27 16:19  secher
20570
20571         * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
20572           src/MPIContainer/MPIContainer_i.hxx:
20573
20574         replacement oneway by threads
20575
20576 2009-02-27 15:18  ribes
20577
20578         * configure.ac, bin/appli_gen.py, bin/killSalome.py,
20579           bin/killSalomeWithPort.py, bin/nameserver.py, bin/orbmodule.py,
20580           bin/runSalome.py, bin/salome_session.py, bin/salome_utils.py,
20581           bin/showNS.py, bin/shutdownSalome.py, bin/waitContainers.py,
20582           bin/waitNS.py, doc/Makefile.am, doc/salome/Makefile.am,
20583           doc/salome/install.dox, doc/salome/kernel_resources.dox,
20584           doc/salome/kernel_services.dox, doc/salome/main.dox,
20585           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
20586           doc/salome/unittests.dox, doc/salome/examples/example1,
20587           doc/salome/examples/example10, doc/salome/examples/example11,
20588           doc/salome/examples/example12, doc/salome/examples/example13,
20589           doc/salome/examples/example14, doc/salome/examples/example15,
20590           doc/salome/examples/example16, doc/salome/examples/example17,
20591           doc/salome/examples/example18, doc/salome/examples/example19,
20592           doc/salome/examples/example20, doc/salome/examples/example21,
20593           doc/salome/examples/example22, doc/salome/examples/example23,
20594           doc/salome/examples/example3, doc/salome/examples/example4,
20595           doc/salome/examples/example5, doc/salome/examples/example6,
20596           doc/salome/examples/example7, doc/salome/examples/example8,
20597           doc/salome/examples/example9, doc/salome/gui/Makefile.am,
20598           doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
20599           doc/salome/gui/static/footer.html,
20600           doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
20601           doc/salome/tui/doxyfile.in, doc/salome/tui/static/footer.html,
20602           doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
20603           idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
20604           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
20605           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
20606           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
20607           idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
20608           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
20609           idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
20610           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
20611           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
20612           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
20613           idl/TypeData.idl, idl/nstest.idl,
20614           salome_adm/cmake_files/FindBOOST.cmake,
20615           salome_adm/cmake_files/am2cmake.py,
20616           salome_adm/unix/config_files/check_openmpi.m4,
20617           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
20618           src/Container/SALOME_ComponentPy.py,
20619           src/Container/SALOME_Component_i.hxx,
20620           src/Container/SALOME_Container.py,
20621           src/Container/SALOME_ContainerManager.cxx,
20622           src/Container/SALOME_ContainerManager.hxx,
20623           src/Container/SALOME_FileTransfer_i.cxx,
20624           src/Container/Salome_file_i.cxx,
20625           src/DSC/DSC_Basic/DSC_Callbacks.hxx,
20626           src/DSC/DSC_Python/dsccalcium.py, src/HDFPersist/HDFascii.cc,
20627           src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_iapp.py,
20628           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
20629           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
20630           src/MPIContainer/MPIContainer_i.cxx,
20631           src/MPIContainer/MPIObject_i.cxx,
20632           src/MPIContainer/MPIObject_i.hxx,
20633           src/MPIContainer/SALOME_MPIContainer.cxx,
20634           src/NamingService/SALOME_NamingService.cxx,
20635           src/NamingService/SALOME_NamingServicePy.py,
20636           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
20637           src/SALOMEDS/SALOME_DriverPy.py,
20638           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
20639           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
20640           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
20641           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
20642           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
20643           src/TestMPIContainer/TestMPIComponentEngine.hxx,
20644           src/Utils/Utils_Identity.py:
20645
20646         - mergefrom V5_1_1a1
20647
20648 2009-02-27 14:47  adam
20649
20650         * salome_adm/cmake_files/am2cmake.py:
20651
20652         Compatibility blsurf plugin
20653
20654 2009-02-27 12:08  ribes
20655
20656         * src/DSC/ParallelDSC/: param_double_port_provides.cxx,
20657           param_double_port_provides.hxx, param_double_port_uses.cxx,
20658           param_double_port_uses.hxx:
20659
20660         - Adding a firts parallel DSC port
20661
20662 2009-02-27 11:27  adam
20663
20664         * salome_adm/cmake_files/am2cmake.py:
20665
20666         Compatibility VISU
20667
20668 2009-02-26 17:28  ribes
20669
20670         * salome_adm/unix/config_files/check_paco++.m4,
20671           src/Container/SALOME_ContainerManager.cxx,
20672           src/DSC/ParallelDSC/Makefile.am,
20673           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
20674           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
20675           src/ParallelContainer/Parallel_Salome_file_i.cxx,
20676           src/ParallelContainer/Parallel_Salome_file_i.hxx,
20677           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
20678           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
20679           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
20680           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
20681           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
20682           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
20683           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
20684           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
20685           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
20686
20687         - Port to the new version of PaCO++: 0.5.2
20688
20689 2009-02-26 17:27  ribes
20690
20691         * idl/: DSC_Engines.xml, Makefile.am, SALOME_Component.xml,
20692           SALOME_Ports.idl, SALOME_Ports.xml:
20693
20694         - Port to the new version of PaCO++: 0.5.2
20695         - Adding a parallel datastream port
20696
20697 2009-02-26 14:18  adam
20698
20699         * src/Container/SALOME_Component_i.hxx:
20700
20701         Remove a warning
20702
20703 2009-02-25 10:43  adam
20704
20705         * src/: Container/SALOME_Container.cxx, Logger/SALOME_Trace.hxx,
20706           Logger/SALOME_Trace.cxx:
20707
20708         Replace strstream by sstream
20709
20710 2009-02-25 10:41  adam
20711
20712         * src/Launcher/SALOME_Launcher_Handler.cxx:
20713
20714         [no log message]
20715
20716 2009-02-25 10:39  adam
20717
20718         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
20719           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
20720           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
20721           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
20722           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
20723           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
20724           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
20725           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
20726           SALOMEDS/SALOMEDS_StudyManager_i.cxx:
20727
20728         Replace strstream by sstream
20729
20730 2009-02-25 10:37  adam
20731
20732         * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
20733           ac_cxx_warnings.m4, production.m4:
20734
20735         Remove -Wno-deprecated !
20736
20737 2009-02-24 10:06  adam
20738
20739         * salome_adm/cmake_files/am2cmake.py:
20740
20741         Compatibility MEDMEM new architecture
20742
20743 2009-02-19 17:12  prascle
20744
20745         * src/NamingService/SALOME_NamingService.cxx:
20746
20747         PR: bug 20152
20748
20749 2009-02-19 14:20  prascle
20750
20751         * salome_adm/unix/config_files/check_openmpi.m4,
20752           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
20753           src/Container/SALOME_Component_i.hxx,
20754           src/Container/SALOME_ContainerManager.cxx,
20755           src/Container/SALOME_ContainerManager.hxx,
20756           src/MPIContainer/MPIContainer_i.cxx,
20757           src/MPIContainer/MPIObject_i.cxx,
20758           src/MPIContainer/MPIObject_i.hxx,
20759           src/MPIContainer/SALOME_MPIContainer.cxx:
20760
20761         merge from BR_V51_BS 19/02/09
20762
20763 2009-02-18 08:06  mnt
20764
20765         * configure.ac:
20766
20767         Changing version to 5.1.1
20768
20769 2009-02-16 09:11  caremoli
20770
20771         * src/Container/SALOME_ContainerManager.cxx:
20772
20773         CCAR: update doxygen comments
20774
20775 2009-02-13 19:03  caremoli
20776
20777         * src/Utils/Utils_Identity.py:
20778
20779         CCAR: reverse modification (bug in uid )
20780
20781 2009-02-13 14:39  jfa
20782
20783         * bin/nameserver.py, src/HDFPersist/HDFascii.cc,
20784           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
20785           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
20786           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
20787           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
20788
20789         Update from BR_V5_DEV 13feb09
20790
20791 2009-02-13 13:44  nge
20792
20793         * src/Utils/Utils_Identity.py:
20794
20795         Missing ':' on previous integration
20796
20797 2009-02-13 11:43  caremoli
20798
20799         * configure.ac, bin/appli_gen.py, bin/killSalome.py,
20800           bin/killSalomeWithPort.py, bin/orbmodule.py, bin/runSalome.py,
20801           bin/salome_session.py, bin/salome_utils.py, bin/showNS.py,
20802           bin/shutdownSalome.py, bin/waitContainers.py, bin/waitNS.py,
20803           doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
20804           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
20805           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
20806           doc/salome/Makefile.am, doc/salome/batch.dox,
20807           doc/salome/install.dox, doc/salome/kernel_resources.dox,
20808           doc/salome/kernel_services.dox, doc/salome/main.dox,
20809           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
20810           doc/salome/unittests.dox, doc/salome/examples/example1,
20811           doc/salome/examples/example10, doc/salome/examples/example11,
20812           doc/salome/examples/example12, doc/salome/examples/example13,
20813           doc/salome/examples/example14, doc/salome/examples/example15,
20814           doc/salome/examples/example16, doc/salome/examples/example17,
20815           doc/salome/examples/example18, doc/salome/examples/example19,
20816           doc/salome/examples/example20, doc/salome/examples/example21,
20817           doc/salome/examples/example22, doc/salome/examples/example23,
20818           doc/salome/examples/example3, doc/salome/examples/example4,
20819           doc/salome/examples/example5, doc/salome/examples/example6,
20820           doc/salome/examples/example7, doc/salome/examples/example8,
20821           doc/salome/examples/example9, doc/salome/gui/Makefile.am,
20822           doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
20823           doc/salome/gui/static/footer.html,
20824           doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
20825           doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
20826           doc/salome/tui/static/footer.html,
20827           doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
20828           idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
20829           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
20830           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
20831           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
20832           idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
20833           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
20834           idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
20835           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
20836           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
20837           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
20838           idl/TypeData.idl, idl/nstest.idl, src/Container/Component_i.cxx,
20839           src/Container/Container_i.cxx,
20840           src/Container/SALOME_ComponentPy.py,
20841           src/Container/SALOME_Container.py,
20842           src/Container/SALOME_FileTransfer_i.cxx,
20843           src/Container/Salome_file_i.cxx,
20844           src/DSC/DSC_Basic/DSC_Callbacks.hxx,
20845           src/DSC/DSC_Python/dsccalcium.py, src/KERNEL_PY/salome.py,
20846           src/KERNEL_PY/salome_iapp.py,
20847           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
20848           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
20849           src/NamingService/SALOME_NamingService.cxx,
20850           src/NamingService/SALOME_NamingServicePy.py,
20851           src/SALOMEDS/SALOME_DriverPy.py, src/Utils/Utils_Identity.py:
20852
20853         CCAR: documentation update
20854
20855         Now user documentation is built in gui/KERNEL directory
20856         and developer documentation is built in tui/KERNEL directory
20857         They are installed in directories with same names (so GUI module must be changed to access it)
20858
20859         Old documentation files have been removed and new files have been added in gui and tui
20860         directories except .dox files in salome directory.
20861         Example files have been moved to salome/examples directory
20862
20863         User documentation is built with EXTRACT_ALL=NO doxygen option and no template parsing
20864         to produce a smaller doc. Many source files have been modified to add descriptions (brief,
20865         class, module, file) because of EXTRACT_ALL option.
20866
20867 2009-02-12 16:32  vsr
20868
20869         * configure.ac:
20870
20871         Fix incorrect processing of --with-onlylauncher option
20872
20873 2009-02-11 16:51  mzn
20874
20875         * src/Container/SALOME_ComponentPy.py:
20876
20877         Fix for bug 0020152 (New tooltip functionality on GUI object browser induces a crash in YACS).
20878
20879 2009-02-06 09:25  eap
20880
20881         * src/: HDFPersist/HDFascii.cc,
20882           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
20883
20884         Mismatched delete / delete []
20885
20886 2009-02-06 09:20  eap
20887
20888         * src/HDFPersist/HDFascii.cc:
20889
20890         Mismatched delete / delete []
20891
20892 2009-02-06 08:12  eap
20893
20894         * src/HDFPersist/HDFascii.cc:
20895
20896         Mismatched delete / delete []
20897
20898 2009-02-06 07:59  eap
20899
20900         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeStudyProperties.cxx,
20901           SALOMEDSImpl_AttributeTreeNode.cxx, SALOMEDSImpl_Study.cxx,
20902           SALOMEDSImpl_StudyManager.cxx:
20903
20904         Mismatched delete / delete []
20905
20906 2009-02-05 16:16  secher
20907
20908         * salome_adm/unix/config_files/check_openmpi.m4,
20909           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
20910           src/Container/SALOME_Component_i.hxx,
20911           src/Container/SALOME_ContainerManager.cxx,
20912           src/Container/SALOME_ContainerManager.hxx,
20913           src/MPIContainer/MPIContainer_i.cxx,
20914           src/MPIContainer/MPIObject_i.cxx,
20915           src/MPIContainer/MPIObject_i.hxx,
20916           src/MPIContainer/SALOME_MPIContainer.cxx:
20917
20918         some openmpi improvements, some MPIObject improvements to test ParaMEDMEM test in MYMPICOMPO module
20919
20920 2009-02-05 09:05  abd
20921
20922         * bin/: nameserver.py:
20923
20924         Fix problem of spaces in TEMP path
20925
20926 2009-02-04 18:47  prascle
20927
20928         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
20929
20930         PR: resource list of machines must contain actual hostname, not only localhost
20931
20932 2009-02-03 17:30  prascle
20933
20934         * salome_adm/cmake_files/FindBOOST.cmake,
20935           salome_adm/cmake_files/am2cmake.py,
20936           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
20937
20938         PR: last merge from BR_V5_DEV
20939
20940 2009-02-03 16:37  jfa
20941
20942         * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
20943
20944         A patch by Nicolas GEIMER for Gcc 4.3.2 compatibility.
20945
20946 2009-02-03 11:46  adam
20947
20948         * salome_adm/cmake_files/am2cmake.py:
20949
20950         compatibility netgen plugin
20951
20952 2009-02-03 11:43  adam
20953
20954         * salome_adm/cmake_files/am2cmake.py:
20955
20956         compatibility smesh (end)
20957
20958 2009-02-03 11:34  adam
20959
20960         * salome_adm/cmake_files/FindBOOST.cmake:
20961
20962         compatibility windows netgen plugin
20963
20964 2009-02-03 11:05  prascle
20965
20966         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
20967           build_cmake.bat, build_configure, clean_configure, configure.ac,
20968           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
20969           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
20970           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
20971           bin/appli_install.sh, bin/config_appli.xml, bin/createAppli.sh,
20972           bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
20973           bin/launchConfigureParser.py, bin/launchSalome.py,
20974           bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
20975           bin/runIDLparser.in, bin/runNS.py, bin/runNS.sh, bin/runSalome,
20976           bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
20977           bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
20978           bin/server.py, bin/setenv.py, bin/showNS.py,
20979           bin/shutdownSalome.py, bin/virtual_salome.py,
20980           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
20981           bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
20982           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
20983           bin/appliskel/runAppli, bin/appliskel/runConsole,
20984           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
20985           bin/appliskel/runSession, bin/appliskel/runTests,
20986           bin/appliskel/searchFreePort.sh, doc/Makefile.am,
20987           doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
20988           doc/salome/Makefile.am, doc/salome/salome_application.dox,
20989           doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
20990           idl/Calcium_Ports.idl, idl/DSC_Engines.idl, idl/DSC_Engines.xml,
20991           idl/Logger.idl, idl/Makefile.am, idl/Palm_Ports.idl,
20992           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
20993           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
20994           idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
20995           idl/SALOME_Exception.idl, idl/SALOME_Exception.xml,
20996           idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
20997           idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
20998           idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
20999           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
21000           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
21001           idl/SALOME_TestMPIComponent.idl,
21002           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
21003           idl/TypeData.idl, idl/nstest.idl, resources/KERNELCatalog.xml.in,
21004           resources/Makefile.am, resources/Tools_en.xml,
21005           resources/Tools_fr.xml, resources/config, salome_adm/Makefile.am,
21006           salome_adm/cmake_files/FindBOOST.cmake,
21007           salome_adm/cmake_files/FindCPPUNIT.cmake,
21008           salome_adm/cmake_files/FindHDF5.cmake,
21009           salome_adm/cmake_files/FindKERNEL.cmake,
21010           salome_adm/cmake_files/FindLIBXML2.cmake,
21011           salome_adm/cmake_files/FindOMNIORB.cmake,
21012           salome_adm/cmake_files/FindPLATFORM.cmake,
21013           salome_adm/cmake_files/FindPTHREADS.cmake,
21014           salome_adm/cmake_files/FindPYTHON.cmake,
21015           salome_adm/cmake_files/FindSWIG.cmake,
21016           salome_adm/cmake_files/Makefile.am,
21017           salome_adm/cmake_files/am2cmake.py,
21018           salome_adm/cmake_files/install_python_from_idl.cmake,
21019           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
21020           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
21021           salome_adm/unix/make_common_starter.am,
21022           salome_adm/unix/sstream.in, salome_adm/unix/DEPRECATED/Doxyfile,
21023           salome_adm/unix/DEPRECATED/F77config.h.in,
21024           salome_adm/unix/DEPRECATED/config.h.in,
21025           salome_adm/unix/DEPRECATED/envScript.in,
21026           salome_adm/unix/DEPRECATED/make_commence.in,
21027           salome_adm/unix/DEPRECATED/make_conclude.in,
21028           salome_adm/unix/DEPRECATED/make_module.in,
21029           salome_adm/unix/DEPRECATED/make_omniorb.in,
21030           salome_adm/unix/config_files/Makefile.am,
21031           salome_adm/unix/config_files/ac_cc_warnings.m4,
21032           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
21033           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
21034           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
21035           salome_adm/unix/config_files/ac_cxx_option.m4,
21036           salome_adm/unix/config_files/ac_cxx_template_options.m4,
21037           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
21038           salome_adm/unix/config_files/ac_cxx_warnings.m4,
21039           salome_adm/unix/config_files/ac_linker_options.m4,
21040           salome_adm/unix/config_files/acx_pthread.m4,
21041           salome_adm/unix/config_files/check_Kernel.m4,
21042           salome_adm/unix/config_files/check_Salome.m4,
21043           salome_adm/unix/config_files/check_boost.m4,
21044           salome_adm/unix/config_files/check_cas.m4,
21045           salome_adm/unix/config_files/check_corba.m4,
21046           salome_adm/unix/config_files/check_cppunit.m4,
21047           salome_adm/unix/config_files/check_f77.m4,
21048           salome_adm/unix/config_files/check_hdf5.m4,
21049           salome_adm/unix/config_files/check_htmlgen.m4,
21050           salome_adm/unix/config_files/check_java.m4,
21051           salome_adm/unix/config_files/check_lam.m4,
21052           salome_adm/unix/config_files/check_libxml.m4,
21053           salome_adm/unix/config_files/check_local.m4,
21054           salome_adm/unix/config_files/check_lsf.m4,
21055           salome_adm/unix/config_files/check_mpi.m4,
21056           salome_adm/unix/config_files/check_mpich.m4,
21057           salome_adm/unix/config_files/check_omniorb.m4,
21058           salome_adm/unix/config_files/check_openmpi.m4,
21059           salome_adm/unix/config_files/check_openpbs.m4,
21060           salome_adm/unix/config_files/check_paco++.m4,
21061           salome_adm/unix/config_files/check_sockets.m4,
21062           salome_adm/unix/config_files/check_swig.m4,
21063           salome_adm/unix/config_files/check_withihm.m4,
21064           salome_adm/unix/config_files/enable_pthreads.m4,
21065           salome_adm/unix/config_files/production.m4,
21066           salome_adm/unix/config_files/pyembed.m4,
21067           salome_adm/unix/config_files/python.m4,
21068           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
21069           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
21070           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
21071           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
21072           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
21073           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
21074           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
21075           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
21076           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
21077           salome_adm/unix/config_files/DEPRECATED/install-sh,
21078           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
21079           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
21080           src/Basics/BasicsGenericDestructor.hxx,
21081           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
21082           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
21083           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
21084           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
21085           src/Communication/Makefile.am,
21086           src/Communication/MatrixClient.cxx,
21087           src/Communication/MatrixClient.hxx,
21088           src/Communication/MultiCommException.cxx,
21089           src/Communication/MultiCommException.hxx,
21090           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
21091           src/Communication/ReceiverFactory.cxx,
21092           src/Communication/ReceiverFactory.hxx,
21093           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
21094           src/Communication/SALOMEMultiComm.cxx,
21095           src/Communication/SALOMEMultiComm.hxx,
21096           src/Communication/SALOME_Comm_i.cxx,
21097           src/Communication/SALOME_Comm_i.hxx,
21098           src/Communication/SALOME_Communication.hxx,
21099           src/Communication/SALOME_Matrix_i.cxx,
21100           src/Communication/SALOME_Matrix_i.hxx,
21101           src/Communication/SenderFactory.cxx,
21102           src/Communication/SenderFactory.hxx,
21103           src/Communication/libSALOME_Comm.i,
21104           src/Communication_SWIG/Makefile.am,
21105           src/Communication_SWIG/libSALOME_Comm.i,
21106           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
21107           src/Container/Container_init_python.cxx,
21108           src/Container/Container_init_python.hxx,
21109           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
21110           src/Container/SALOME_Component_i.hxx,
21111           src/Container/SALOME_Container.cxx,
21112           src/Container/SALOME_Container.hxx,
21113           src/Container/SALOME_Container.py,
21114           src/Container/SALOME_ContainerManager.cxx,
21115           src/Container/SALOME_ContainerManager.hxx,
21116           src/Container/SALOME_ContainerPy.py,
21117           src/Container/SALOME_Container_SignalsHandler.cxx,
21118           src/Container/SALOME_Container_i.hxx,
21119           src/Container/SALOME_FileRef_i.cxx,
21120           src/Container/SALOME_FileRef_i.hxx,
21121           src/Container/SALOME_FileTransfer_i.cxx,
21122           src/Container/SALOME_FileTransfer_i.hxx,
21123           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
21124           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
21125           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
21126           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
21127           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
21128           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
21129           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
21130           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
21131           src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
21132           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
21133           src/DSC/DSC_Basic/DSC_Basic.hxx,
21134           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
21135           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
21136           src/DSC/DSC_Basic/DSC_interface.hxx,
21137           src/DSC/DSC_Basic/Makefile.am,
21138           src/DSC/DSC_Basic/PortProperties_i.cxx,
21139           src/DSC/DSC_Basic/PortProperties_i.hxx,
21140           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
21141           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
21142           src/DSC/DSC_Python/dsccalcium.py,
21143           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
21144           src/DSC/DSC_User/Superv_Component_i.cxx,
21145           src/DSC/DSC_User/Superv_Component_i.hxx,
21146           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
21147           src/DSC/DSC_User/port_factory.hxx,
21148           src/DSC/DSC_User/provides_port.cxx,
21149           src/DSC/DSC_User/provides_port.hxx,
21150           src/DSC/DSC_User/test_DSC_Exception.cxx,
21151           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
21152           src/DSC/DSC_User/Basic/Makefile.am,
21153           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
21154           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
21155           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
21156           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
21157           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
21158           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
21159           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
21160           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
21161           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
21162           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
21163           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
21164           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
21165           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
21166           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
21167           src/DSC/DSC_User/Datastream/GenericPort.hxx,
21168           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
21169           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
21170           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
21171           src/DSC/DSC_User/Datastream/Makefile.am,
21172           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
21173           src/DSC/DSC_User/Datastream/fake.cc,
21174           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
21175           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
21176           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
21177           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
21178           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
21179           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
21180           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
21181           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
21182           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
21183           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
21184           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
21185           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
21186           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
21187           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
21188           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
21189           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
21190           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
21191           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
21192           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
21193           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
21194           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
21195           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
21196           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
21197           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
21198           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
21199           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
21200           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
21201           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
21202           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
21203           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
21204           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
21205           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
21206           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
21207           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
21208           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
21209           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
21210           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
21211           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
21212           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
21213           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
21214           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
21215           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
21216           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
21217           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
21218           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
21219           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
21220           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
21221           src/DSC/DSC_User/Datastream/Calcium/version.h,
21222           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
21223           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
21224           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
21225           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
21226           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
21227           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
21228           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
21229           src/DSC/ParallelDSC/Makefile.am,
21230           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
21231           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
21232           src/GenericObj/Makefile.am,
21233           src/GenericObj/SALOME_GenericObj_i.cc,
21234           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
21235           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
21236           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
21237           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
21238           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
21239           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
21240           src/HDFPersist/HDFattribute.hxx,
21241           src/HDFPersist/HDFcontainerObject.cc,
21242           src/HDFPersist/HDFcontainerObject.hxx,
21243           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
21244           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
21245           src/HDFPersist/HDFdatasetClose.c,
21246           src/HDFPersist/HDFdatasetCreate.c,
21247           src/HDFPersist/HDFdatasetGetDim.c,
21248           src/HDFPersist/HDFdatasetGetOrder.c,
21249           src/HDFPersist/HDFdatasetGetSize.c,
21250           src/HDFPersist/HDFdatasetGetType.c,
21251           src/HDFPersist/HDFdatasetGetnDim.c,
21252           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
21253           src/HDFPersist/HDFdatasetWrite.c,
21254           src/HDFPersist/HDFerrorModeLock.c,
21255           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
21256           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
21257           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
21258           src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
21259           src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
21260           src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
21261           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
21262           src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
21263           src/HDFPersist/HDFinternalObject.cc,
21264           src/HDFPersist/HDFinternalObject.hxx,
21265           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
21266           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
21267           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
21268           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
21269           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
21270           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
21271           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
21272           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
21273           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
21274           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
21275           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
21276           src/KERNEL_PY/iparameters.py,
21277           src/KERNEL_PY/kernel_shared_modules.py,
21278           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
21279           src/KERNEL_PY/salome_ComponentGUI.py,
21280           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
21281           src/KERNEL_PY/salome_notebook.py,
21282           src/KERNEL_PY/salome_shared_modules.py,
21283           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
21284           src/KERNEL_PY/salome_version.py,
21285           src/Launcher/BatchLight_BatchManager.cxx,
21286           src/Launcher/BatchLight_BatchManager.hxx,
21287           src/Launcher/BatchLight_BatchManager_PBS.cxx,
21288           src/Launcher/BatchLight_BatchManager_PBS.hxx,
21289           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
21290           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
21291           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
21292           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
21293           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
21294           src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
21295           src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
21296           src/Launcher/SALOME_Launcher.hxx,
21297           src/Launcher/SALOME_LauncherServer.cxx,
21298           src/Launcher/SALOME_Launcher_Handler.cxx,
21299           src/Launcher/SALOME_Launcher_Handler.hxx,
21300           src/Launcher/SALOME_Launcher_Parser.cxx,
21301           src/Launcher/SALOME_Launcher_Parser.hxx,
21302           src/Launcher/SALOME_Launcher_defs.hxx,
21303           src/LifeCycleCORBA/LifeCycleCORBA.py,
21304           src/LifeCycleCORBA/Makefile.am,
21305           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
21306           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
21307           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
21308           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
21309           src/LifeCycleCORBA/TestContainerManager.cxx,
21310           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
21311           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
21312           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
21313           src/LifeCycleCORBA/Test/Makefile.am,
21314           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
21315           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
21316           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
21317           src/LifeCycleCORBA_SWIG/Makefile.am,
21318           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
21319           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
21320           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
21321           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
21322           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
21323           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
21324           src/Logger/SALOME_Logger_Server.hxx,
21325           src/Logger/SALOME_Logger_Server_main.cxx,
21326           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
21327           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
21328           src/Logger/Test/TestKiller.py,
21329           src/MPIContainer/MPIContainer_i.cxx,
21330           src/MPIContainer/MPIContainer_i.hxx,
21331           src/MPIContainer/MPIObject_i.cxx,
21332           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
21333           src/MPIContainer/SALOME_MPIContainer.cxx,
21334           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
21335           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
21336           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
21337           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
21338           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
21339           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
21340           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
21341           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
21342           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
21343           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
21344           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
21345           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
21346           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
21347           src/ModuleCatalog/SALOME_TestModuleCatalog.py,
21348           src/ModuleCatalog/TestModuleCatalog.py,
21349           src/ModuleGenerator/IDLparser.py,
21350           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
21351           src/ModuleGenerator/testIDLparser.in,
21352           src/ModuleGenerator/tests/AddComponent.idl,
21353           src/ModuleGenerator/tests/SubComponent.idl,
21354           src/ModuleGenerator/tests/Truc2Component.idl,
21355           src/ModuleGenerator/tests/TrucComponent.idl,
21356           src/ModuleGenerator/tests/test1.sh,
21357           src/ModuleGenerator/tests/test1b.sh,
21358           src/ModuleGenerator/tests/test2.sh,
21359           src/ModuleGenerator/tests/test3.sh,
21360           src/ModuleGenerator/tests/test4.sh,
21361           src/ModuleGenerator/tests/test5.sh,
21362           src/NOTIFICATION_SWIG/Makefile.am,
21363           src/NOTIFICATION_SWIG/NOTIFICATION.i,
21364           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
21365           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
21366           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
21367           src/NamingService/Makefile.am,
21368           src/NamingService/NamingService_WaitForServerReadiness.cxx,
21369           src/NamingService/NamingService_WaitForServerReadiness.hxx,
21370           src/NamingService/SALOME_NamingService.cxx,
21371           src/NamingService/SALOME_NamingService.hxx,
21372           src/NamingService/SALOME_NamingService.i,
21373           src/NamingService/SALOME_NamingServicePy.py,
21374           src/NamingService/SALOME_NamingService_defs.hxx,
21375           src/NamingService/ServiceUnreachable.cxx,
21376           src/NamingService/ServiceUnreachable.hxx,
21377           src/NamingService/Test/Makefile.am,
21378           src/NamingService/Test/NamingServiceTest.cxx,
21379           src/NamingService/Test/NamingServiceTest.hxx,
21380           src/NamingService/Test/TestNamingService.cxx,
21381           src/NamingService/Test/TestNamingService.py,
21382           src/Notification/CosNotifyShorthands.h,
21383           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
21384           src/Notification/NOTIFICATION.hxx,
21385           src/Notification/NOTIFICATION_Consumer.cxx,
21386           src/Notification/NOTIFICATION_Consumer.hxx,
21387           src/Notification/NOTIFICATION_Supplier.cxx,
21388           src/Notification/NOTIFICATION_Supplier.hxx,
21389           src/Notification/SALOME_NOTIFICATION.hxx,
21390           src/ParallelContainer/Makefile.am,
21391           src/ParallelContainer/Parallel_Salome_file_i.cxx,
21392           src/ParallelContainer/Parallel_Salome_file_i.hxx,
21393           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
21394           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
21395           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
21396           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
21397           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
21398           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
21399           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
21400           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
21401           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
21402           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
21403           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
21404           src/Registry/RegistryConnexion.hxx,
21405           src/Registry/RegistryService.cxx,
21406           src/Registry/RegistryService.hxx,
21407           src/Registry/SALOME_Registry.hxx,
21408           src/Registry/SALOME_Registry_Server.cxx,
21409           src/ResourcesManager/Makefile.am,
21410           src/ResourcesManager/ResourcesManager.cxx,
21411           src/ResourcesManager/ResourcesManager.hxx,
21412           src/ResourcesManager/ResourcesManager_Defs.hxx,
21413           src/ResourcesManager/SALOME_LoadRateManager.cxx,
21414           src/ResourcesManager/SALOME_LoadRateManager.hxx,
21415           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
21416           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
21417           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
21418           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
21419           src/ResourcesManager/SALOME_ResourcesManager.cxx,
21420           src/ResourcesManager/SALOME_ResourcesManager.hxx,
21421           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
21422           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
21423           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
21424           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
21425           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
21426           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
21427           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
21428           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
21429           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
21430           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
21431           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
21432           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
21433           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
21434           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
21435           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
21436           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
21437           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
21438           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
21439           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
21440           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
21441           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
21442           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
21443           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
21444           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
21445           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
21446           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
21447           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
21448           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
21449           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
21450           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
21451           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
21452           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
21453           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
21454           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
21455           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
21456           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
21457           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
21458           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
21459           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
21460           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
21461           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
21462           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
21463           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
21464           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
21465           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
21466           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
21467           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
21468           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
21469           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
21470           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
21471           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
21472           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
21473           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
21474           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
21475           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
21476           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
21477           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
21478           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
21479           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
21480           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
21481           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
21482           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
21483           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
21484           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
21485           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
21486           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
21487           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
21488           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
21489           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
21490           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
21491           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
21492           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
21493           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
21494           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
21495           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
21496           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
21497           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
21498           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
21499           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
21500           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
21501           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
21502           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
21503           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
21504           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
21505           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
21506           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
21507           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
21508           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
21509           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
21510           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
21511           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
21512           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
21513           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
21514           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
21515           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
21516           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
21517           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
21518           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
21519           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
21520           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
21521           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
21522           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
21523           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
21524           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
21525           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
21526           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
21527           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
21528           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
21529           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
21530           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
21531           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
21532           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
21533           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
21534           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
21535           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
21536           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
21537           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
21538           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
21539           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
21540           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
21541           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
21542           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
21543           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
21544           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
21545           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
21546           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
21547           src/SALOMEDS/SALOMEDS_Attributes.hxx,
21548           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
21549           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
21550           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
21551           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
21552           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
21553           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
21554           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
21555           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
21556           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
21557           src/SALOMEDS/SALOMEDS_Client.cxx,
21558           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
21559           src/SALOMEDS/SALOMEDS_Defines.hxx,
21560           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
21561           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
21562           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
21563           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
21564           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
21565           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
21566           src/SALOMEDS/SALOMEDS_IParameters.cxx,
21567           src/SALOMEDS/SALOMEDS_IParameters.hxx,
21568           src/SALOMEDS/SALOMEDS_SComponent.cxx,
21569           src/SALOMEDS/SALOMEDS_SComponent.hxx,
21570           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
21571           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
21572           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
21573           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
21574           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
21575           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
21576           src/SALOMEDS/SALOMEDS_SObject.cxx,
21577           src/SALOMEDS/SALOMEDS_SObject.hxx,
21578           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
21579           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
21580           src/SALOMEDS/SALOMEDS_Server.cxx,
21581           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
21582           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
21583           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
21584           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
21585           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
21586           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
21587           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
21588           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
21589           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
21590           src/SALOMEDS/SALOMEDS_Study_i.cxx,
21591           src/SALOMEDS/SALOMEDS_Study_i.hxx,
21592           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
21593           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
21594           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
21595           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
21596           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
21597           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
21598           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
21599           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
21600           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
21601           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
21602           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
21603           src/SALOMEDS/Test/SALOMEDSTest.cxx,
21604           src/SALOMEDS/Test/SALOMEDSTest.hxx,
21605           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
21606           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
21607           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
21608           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
21609           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
21610           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
21611           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
21612           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
21613           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
21614           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
21615           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
21616           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
21617           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
21618           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
21619           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
21620           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
21621           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
21622           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
21623           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
21624           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
21625           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
21626           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
21627           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
21628           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
21629           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
21630           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
21631           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
21632           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
21633           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
21634           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
21635           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
21636           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
21637           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
21638           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
21639           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
21640           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
21641           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
21642           src/SALOMEDS/Test/TestSALOMEDS.cxx,
21643           src/SALOMEDS/Test/TestSALOMEDS.py,
21644           src/SALOMEDSClient/Makefile.am,
21645           src/SALOMEDSClient/SALOMEDSClient.hxx,
21646           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
21647           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
21648           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
21649           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
21650           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
21651           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
21652           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
21653           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
21654           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
21655           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
21656           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
21657           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
21658           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
21659           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
21660           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
21661           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
21662           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
21663           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
21664           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
21665           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
21666           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
21667           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
21668           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
21669           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
21670           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
21671           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
21672           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
21673           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
21674           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
21675           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
21676           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
21677           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
21678           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
21679           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
21680           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
21681           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
21682           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
21683           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
21684           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
21685           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
21686           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
21687           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
21688           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
21689           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
21690           src/SALOMEDSImpl/Makefile.am,
21691           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
21692           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
21693           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
21694           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
21695           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
21696           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
21697           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
21698           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
21699           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
21700           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
21701           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
21702           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
21703           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
21704           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
21705           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
21706           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
21707           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
21708           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
21709           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
21710           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
21711           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
21712           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
21713           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
21714           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
21715           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
21716           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
21717           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
21718           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
21719           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
21720           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
21721           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
21722           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
21723           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
21724           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
21725           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
21726           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
21727           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
21728           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
21729           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
21730           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
21731           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
21732           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
21733           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
21734           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
21735           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
21736           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
21737           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
21738           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
21739           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
21740           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
21741           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
21742           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
21743           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
21744           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
21745           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
21746           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
21747           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
21748           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
21749           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
21750           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
21751           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
21752           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
21753           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
21754           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
21755           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
21756           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
21757           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
21758           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
21759           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
21760           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
21761           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
21762           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
21763           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
21764           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
21765           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
21766           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
21767           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
21768           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
21769           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
21770           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
21771           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
21772           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
21773           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
21774           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
21775           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
21776           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
21777           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
21778           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
21779           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
21780           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
21781           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
21782           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
21783           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
21784           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
21785           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
21786           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
21787           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
21788           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
21789           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
21790           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
21791           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
21792           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
21793           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
21794           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
21795           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
21796           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
21797           src/SALOMELocalTrace/BaseTraceCollector.cxx,
21798           src/SALOMELocalTrace/BaseTraceCollector.hxx,
21799           src/SALOMELocalTrace/FileTraceCollector.cxx,
21800           src/SALOMELocalTrace/FileTraceCollector.hxx,
21801           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
21802           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
21803           src/SALOMELocalTrace/LocalTraceCollector.cxx,
21804           src/SALOMELocalTrace/LocalTraceCollector.hxx,
21805           src/SALOMELocalTrace/Makefile.am,
21806           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
21807           src/SALOMELocalTrace/utilities.h,
21808           src/SALOMELocalTrace/Test/Makefile.am,
21809           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
21810           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
21811           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
21812           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
21813           src/SALOMETraceCollector/Makefile.am,
21814           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
21815           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
21816           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
21817           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
21818           src/SALOMETraceCollector/Test/Makefile.am,
21819           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
21820           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
21821           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
21822           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
21823           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
21824           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
21825           src/TestContainer/SALOME_TestComponent.hxx,
21826           src/TestContainer/SALOME_TestComponentPy.py,
21827           src/TestContainer/SALOME_TestComponent_i.cxx,
21828           src/TestContainer/SALOME_TestComponent_i.hxx,
21829           src/TestContainer/TestComponentPy.py,
21830           src/TestContainer/TestContainer.cxx,
21831           src/TestContainer/TestLogger.cxx,
21832           src/TestContainer/TestLogger.py,
21833           src/TestMPIContainer/Makefile.am,
21834           src/TestMPIContainer/TestMPIComponentEngine.cxx,
21835           src/TestMPIContainer/TestMPIComponentEngine.hxx,
21836           src/TestMPIContainer/TestMPIContainer.cxx,
21837           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
21838           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
21839           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
21840           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
21841           src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.cxx,
21842           src/Utils/Utils_CommException.hxx,
21843           src/Utils/Utils_CorbaException.hxx,
21844           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
21845           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
21846           src/Utils/Utils_ExceptHandlers.cxx,
21847           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
21848           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
21849           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
21850           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
21851           src/Utils/Utils_SALOME_Exception.cxx,
21852           src/Utils/Utils_SALOME_Exception.hxx,
21853           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
21854           src/Utils/Utils_Timer.cxx, src/Utils/Utils_Timer.hxx,
21855           src/Utils/duplicate.cxx, src/Utils/Test/Makefile.am,
21856           src/Utils/Test/TestUtils.cxx, src/Utils/Test/TestUtils.py,
21857           src/Utils/Test/UtilsTest.cxx, src/Utils/Test/UtilsTest.hxx,
21858           src/win32pm/setup.py, src/win32pm/win32pm.c:
21859
21860         merge from branch BR_V5_DEV
21861
21862 2009-01-30 18:23  adam
21863
21864         * salome_adm/cmake_files/am2cmake.py:
21865
21866         compatibility SMESH (begin)
21867
21868 2009-01-30 14:36  abd
21869
21870         * src/DF/DF_Attribute.cxx:
21871
21872         Fix endless loop in destructor on Win32 platform
21873
21874 2009-01-28 17:24  ouv
21875
21876         * idl/SALOMEDS.idl, src/KERNEL_PY/Makefile.am,
21877           src/KERNEL_PY/salome_notebook.py,
21878           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
21879           src/SALOMEDS/SALOMEDS_Study_i.cxx,
21880           src/SALOMEDS/SALOMEDS_Study_i.hxx,
21881           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
21882           src/SALOMEDSImpl/Makefile.am,
21883           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
21884           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
21885           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
21886           src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
21887           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
21888           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
21889           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
21890           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
21891           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
21892
21893         Merge from BR_DumpPython_Extension branch (from tag mergeto_BR_V5_Dev_28Jan09)
21894
21895 2009-01-27 11:55  adam
21896
21897         * salome_adm/cmake_files/am2cmake.py:
21898
21899         [no log message]
21900
21901 2009-01-27 10:14  adam
21902
21903         * src/HDFPersist/HDFobject.cc:
21904
21905         portability windows
21906
21907 2009-01-27 10:13  adam
21908
21909         * src/NOTIFICATION_SWIG/Makefile.am:
21910
21911         strange behaviour with cmake
21912
21913 2009-01-27 10:12  adam
21914
21915         * src/Logger/Makefile.am:
21916
21917         add includes for windows ...
21918
21919 2009-01-27 10:09  adam
21920
21921         * salome_adm/cmake_files/am2cmake.py:
21922
21923         compatibility medmem (finished)
21924
21925 2009-01-27 10:08  adam
21926
21927         * salome_adm/cmake_files/FindKERNEL.cmake:
21928
21929         [no log message]
21930
21931 2009-01-27 10:01  caremoli
21932
21933         * bin/server.py:
21934
21935         CCAR: server.py modification to store pid process in pidict only if they
21936               are still alive after exec
21937
21938 2009-01-26 18:48  caremoli
21939
21940         * src/DSC/DSC_User/Superv_Component_i.cxx:
21941
21942         CCAR: remove delete of factory objects in Superv_Component destructor
21943         as the map is now a class attribute and factory objects are static ones
21944
21945 2009-01-26 16:42  dmv
21946
21947         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeParameter.cxx:
21948
21949         IPAL20692 IPAL20700 The visual parameters are not stored in HDF file
21950
21951 2009-01-26 12:00  adam
21952
21953         * salome_adm/cmake_files/am2cmake.py:
21954
21955         compatibility medmem (continue)
21956
21957 2009-01-26 11:56  adam
21958
21959         * salome_adm/cmake_files/FindBOOST.cmake:
21960
21961         compatibility medmem
21962
21963 2009-01-26 11:33  adam
21964
21965         * salome_adm/cmake_files/am2cmake.py:
21966
21967         compatibility medmem (begin)
21968
21969 2009-01-26 11:18  adam
21970
21971         * salome_adm/cmake_files/am2cmake.py:
21972
21973         compatibility medfile (finished I think)
21974
21975 2009-01-22 15:01  adam
21976
21977         * salome_adm/cmake_files/am2cmake.py:
21978
21979         compatibility with C.Caremoli commits in Makefile.am's
21980
21981 2009-01-22 14:20  adam
21982
21983         * salome_adm/cmake_files/am2cmake.py:
21984
21985         compatibility medfile (continue)
21986
21987 2009-01-22 14:06  caremoli
21988
21989         * src/: Communication_SWIG/Makefile.am,
21990           LifeCycleCORBA_SWIG/Makefile.am, NOTIFICATION_SWIG/Makefile.am:
21991
21992         CCAR: modify swig generation rule to add .py in dependencies so that
21993         make dist and make distcheck work even if some files (generated .py)
21994         are missing.
21995
21996 2009-01-21 16:49  eap
21997
21998         * idl/SALOME_Component.idl, src/Container/SALOME_Component_i.hxx:
21999
22000         merge from BR_V5_IMP_P8
22001
22002 2009-01-16 18:24  adam
22003
22004         * salome_adm/cmake_files/am2cmake.py:
22005
22006         compatibility medfile (continue)
22007
22008 2009-01-16 17:54  adam
22009
22010         * salome_adm/cmake_files/: am2cmake.py, FindPLATFORM.cmake:
22011
22012         compatibility medfile (begin)
22013
22014 2009-01-15 16:56  adam
22015
22016         * salome_adm/cmake_files/am2cmake.py:
22017
22018         [no log message]
22019
22020 2009-01-13 15:09  adam
22021
22022         * build_cmake.bat:
22023
22024         [no log message]
22025
22026 2009-01-13 15:05  adam
22027
22028         * salome_adm/cmake_files/am2cmake.py:
22029
22030         Compatibility GEOM
22031
22032 2009-01-12 13:28  dmv
22033
22034         * bin/: runSalome.py:
22035
22036         0020109: Possible conflict with another ORB in runSalome.py
22037
22038 2009-01-09 09:33  caremoli
22039
22040         * src/Container/Component_i.cxx:
22041
22042         CCAR: add missing initialization of _container attribute in parallel constructor
22043
22044 2009-01-08 18:28  caremoli
22045
22046         * bin/appli_clean.sh, bin/appli_gen.py, bin/killSalomeWithPort.py,
22047           bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
22048           bin/salome_utils.py, bin/virtual_salome.py, bin/waitNS.sh,
22049           bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
22050           bin/appliskel/runSession, bin/appliskel/runTests,
22051           bin/appliskel/searchFreePort.sh,
22052           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
22053
22054         CCAR: these modifications are mainly for the salome virtual application
22055         They allow one salome virtual application to be used by several users with
22056         different logins. That was not possible before.
22057         shutdownSalome has been modified to correctly handle salome virtual application
22058         and to do same job from GUI or from console
22059
22060 2009-01-08 16:56  adam
22061
22062         * salome_adm/cmake_files/am2cmake.py:
22063
22064         Fixes after merge from 4.1.4
22065         Compatibility cmake 2.6
22066
22067 2009-01-08 11:14  caremoli
22068
22069         * src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx:
22070
22071         CCAR: small modification in Calcium.hxx to avoid modification of existing
22072         components (add #include "calcium_port_factory.hxx")
22073
22074 2009-01-06 16:19  caremoli
22075
22076         * Makefile.am, README.FIRST.txt, configure.ac, bin/appli_clean.sh,
22077           bin/config_appli.xml, bin/launchConfigureParser.py,
22078           bin/runSalome.py, bin/setenv.py, bin/virtual_salome.py,
22079           bin/waitNS.sh, bin/appliskel/CatalogResources.xml,
22080           bin/appliskel/README, bin/appliskel/SalomeApp.xml,
22081           idl/DSC_Engines.xml, idl/Logger.idl, idl/SALOME_Component.xml,
22082           idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.xml,
22083           idl/SALOME_Ports.xml, resources/CatalogDataType.xml,
22084           resources/CatalogModulePersonnel.xml_skel,
22085           resources/CatalogResources.xml.in,
22086           resources/KERNELCatalog.xml.in, resources/Makefile.am,
22087           resources/channel.cfg,
22088           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
22089           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
22090           src/Makefile.am, src/Basics/Basics_Utils.cxx,
22091           src/Communication/Receiver.cxx,
22092           src/Communication_SWIG/Makefile.am,
22093           src/Communication_SWIG/libSALOME_Comm.i,
22094           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
22095           src/Container/Container_init_python.cxx,
22096           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
22097           src/Container/SALOME_Container.py,
22098           src/Container/SALOME_ContainerManager.cxx,
22099           src/Container/SALOME_ContainerPy.py,
22100           src/Container/TestSalome_file.cxx, src/DF/Makefile.am,
22101           src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_i.hxx,
22102           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_User/Makefile.am,
22103           src/DSC/DSC_User/Superv_Component_i.cxx,
22104           src/DSC/DSC_User/Superv_Component_i.hxx,
22105           src/DSC/DSC_User/Basic/Makefile.am,
22106           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
22107           src/DSC/DSC_User/Datastream/Makefile.am,
22108           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
22109           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
22110           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
22111           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
22112           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
22113           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
22114           src/HDFPersist/HDFcontainerObject.cc,
22115           src/HDFPersist/HDFobject.cc, src/HDFPersist/Makefile.am,
22116           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
22117           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
22118           src/Launcher/SALOME_Launcher.cxx,
22119           src/Launcher/SALOME_Launcher.hxx,
22120           src/Launcher/SALOME_Launcher_Handler.cxx,
22121           src/Launcher/SALOME_Launcher_Handler.hxx,
22122           src/Launcher/SALOME_Launcher_Parser.cxx,
22123           src/Launcher/SALOME_Launcher_Parser.hxx,
22124           src/LifeCycleCORBA/Makefile.am,
22125           src/LifeCycleCORBA/Test/Makefile.am,
22126           src/LifeCycleCORBA_SWIG/Makefile.am,
22127           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
22128           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
22129           src/Logger/SALOME_Logger_Server_main.cxx,
22130           src/MPIContainer/MPIContainer_i.cxx,
22131           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
22132           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
22133           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
22134           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
22135           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
22136           src/ModuleGenerator/IDLparser.py, src/ModuleGenerator/README,
22137           src/ModuleGenerator/testIDLparser.in,
22138           src/ModuleGenerator/tests/AddComponent.idl,
22139           src/ModuleGenerator/tests/SubComponent.idl,
22140           src/ModuleGenerator/tests/test1.sh,
22141           src/ModuleGenerator/tests/test1b.sh,
22142           src/ModuleGenerator/tests/test2.sh,
22143           src/ModuleGenerator/tests/test3.sh,
22144           src/ModuleGenerator/tests/test4.sh,
22145           src/ModuleGenerator/tests/test5.sh,
22146           src/NOTIFICATION_SWIG/Makefile.am,
22147           src/NOTIFICATION_SWIG/NOTIFICATION.i,
22148           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
22149           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
22150           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
22151           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
22152           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
22153           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
22154           src/ResourcesManager/Makefile.am,
22155           src/ResourcesManager/ResourcesManager.cxx,
22156           src/ResourcesManager/ResourcesManager.hxx,
22157           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
22158           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
22159           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
22160           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
22161           src/ResourcesManager/SALOME_ResourcesManager.cxx,
22162           src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
22163           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
22164           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
22165           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
22166           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
22167           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
22168           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
22169           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
22170           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
22171           src/SALOMEDSImpl/Makefile.am,
22172           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
22173           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
22174           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
22175           src/SALOMELocalTrace/FileTraceCollector.cxx,
22176           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
22177           src/SALOMELocalTrace/LocalTraceCollector.cxx,
22178           src/SALOMELocalTrace/LocalTraceCollector.hxx,
22179           src/TestMPIContainer/TestMPIContainer.cxx,
22180           src/UnitTests/Makefile.am, src/Utils/OpUtil.cxx:
22181
22182         CCAR: merge last developments from KERNEL 4.1.4 (DSC ports, ResourceManager, ...)
22183
22184 2008-12-30 15:15  dmv
22185
22186         * src/: LifeCycleCORBA/Makefile.am,
22187           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
22188           SALOMEDSImpl/Makefile.am:
22189
22190         0020062: [CEA 295] Type coherence in *.i files
22191
22192 2008-12-30 15:05  dmv
22193
22194         * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
22195
22196         0020062: [CEA 295] Type coherence in *.i files
22197
22198 2008-12-25 17:35  san
22199
22200         * bin/setenv.py:
22201
22202         IMP 16551 (show static trihedron): roll back to TKOpenGl graphic driver library
22203
22204 2008-12-23 11:59  mzn
22205
22206         * idl/SALOME_Component.idl, src/Container/SALOME_Component_i.hxx:
22207
22208         Fix for improvement 0017606 (EDF 168: Is it possible to customize the tooltip of the objects in the browser?);
22209
22210 2008-12-15 11:41  dmv
22211
22212         * idl/Logger.idl, src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
22213           src/Logger/SALOME_Logger_Server.hxx,
22214           src/Logger/SALOME_Logger_Server_main.cxx:
22215
22216         IPAL20326 SALOME_Logger_Server is not killed
22217
22218 2008-12-12 10:52  akl
22219
22220         * src/HDFPersist/: HDFattrCreate.c, HDFattrRead.c, HDFattrWrite.c,
22221           HDFdatasetCreate.c, HDFdatasetRead.c, HDFdatasetWrite.c:
22222
22223         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.
22224
22225 2008-12-12 09:44  rnv
22226
22227         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
22228
22229         Fix crash on open old files.
22230
22231 2008-12-10 15:46  rnv
22232
22233         * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
22234
22235         Fix for IPAL20763 DPE: lost value after dump python.
22236
22237 2008-12-10 15:44  rnv
22238
22239         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
22240
22241         Fix for IPAL20762 DPE: notebook sortes variables after restoring from the study.
22242
22243 2008-12-08 15:44  rnv
22244
22245         * src/KERNEL_PY/salome_notebook.py:
22246
22247         Add comments.
22248
22249 2008-12-06 08:13  abd
22250
22251         * build_cmake, resources/CatalogModulePersonnel.xml_skel,
22252           salome_adm/unix/DEPRECATED/F77config.h.in,
22253           src/ModuleGenerator/testIDLparser.in:
22254
22255         Update copyright information
22256
22257 2008-12-05 16:34  rnv
22258
22259         * idl/SALOMEDS.idl:
22260
22261         Add comments.
22262
22263 2008-12-04 14:37  abd
22264
22265         * src/: Utils/Test/Makefile.am, Utils/Test/TestUtils.cxx,
22266           Utils/Test/TestUtils.py, Utils/Test/UtilsTest.cxx,
22267           Utils/Test/UtilsTest.hxx, win32pm/setup.py, win32pm/win32pm.c:
22268
22269         [no log message]
22270
22271 2008-12-04 14:34  abd
22272
22273         * src/: TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
22274           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
22275           TestContainer/SALOME_TestComponent.hxx,
22276           TestContainer/SALOME_TestComponentPy.py,
22277           TestContainer/SALOME_TestComponent_i.cxx,
22278           TestContainer/SALOME_TestComponent_i.hxx,
22279           TestContainer/TestComponentPy.py,
22280           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
22281           TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
22282           TestMPIContainer/TestMPIComponentEngine.cxx,
22283           TestMPIContainer/TestMPIComponentEngine.hxx,
22284           TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
22285           UnitTests/UnitTests.cxx, UnitTests/UnitTests.py,
22286           Utils/Makefile.am, Utils/SALOME_utilities.py,
22287           Utils/Utils_Identity.py, Utils/Utils_Timer.cxx, Utils/OpUtil.hxx,
22288           Utils/SALOME_Utils.hxx, Utils/Utils_CommException.cxx,
22289           Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
22290           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
22291           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
22292           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
22293           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
22294           Utils/Utils_Mutex.cxx, Utils/Utils_Mutex.hxx,
22295           Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
22296           Utils/Utils_SALOME_Exception.cxx,
22297           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
22298           Utils/Utils_Timer.hxx, Utils/duplicate.cxx:
22299
22300         [no log message]
22301
22302 2008-12-04 14:30  abd
22303
22304         * src/SALOMETraceCollector/Test/: Makefile.am,
22305           SALOMETraceCollectorTest.cxx, SALOMETraceCollectorTest.hxx,
22306           TestSALOMETraceCollector.cxx, TestSALOMETraceCollector.py:
22307
22308         [no log message]
22309
22310 2008-12-04 14:27  abd
22311
22312         * src/: SALOMEDSImpl/Test/Makefile.am,
22313           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
22314           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
22315           SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
22316           SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
22317           SALOMELocalTrace/BaseTraceCollector.cxx,
22318           SALOMELocalTrace/BaseTraceCollector.hxx,
22319           SALOMELocalTrace/FileTraceCollector.cxx,
22320           SALOMELocalTrace/FileTraceCollector.hxx,
22321           SALOMELocalTrace/LocalTraceBufferPool.cxx,
22322           SALOMELocalTrace/LocalTraceBufferPool.hxx,
22323           SALOMELocalTrace/LocalTraceCollector.cxx,
22324           SALOMELocalTrace/LocalTraceCollector.hxx,
22325           SALOMELocalTrace/Makefile.am,
22326           SALOMELocalTrace/SALOME_LocalTrace.hxx,
22327           SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
22328           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
22329           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
22330           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
22331           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
22332           SALOMETraceCollector/Makefile.am,
22333           SALOMETraceCollector/SALOMETraceCollector.cxx,
22334           SALOMETraceCollector/SALOMETraceCollector.hxx,
22335           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
22336           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
22337
22338         [no log message]
22339
22340 2008-12-04 14:23  abd
22341
22342         * src/SALOMEDSImpl/: Makefile.am,
22343           SALOMEDSImpl_AttributeComment.cxx,
22344           SALOMEDSImpl_AttributeComment.hxx,
22345           SALOMEDSImpl_AttributeDrawable.cxx,
22346           SALOMEDSImpl_AttributeDrawable.hxx,
22347           SALOMEDSImpl_AttributeExpandable.cxx,
22348           SALOMEDSImpl_AttributeExpandable.hxx,
22349           SALOMEDSImpl_AttributeExternalFileDef.cxx,
22350           SALOMEDSImpl_AttributeExternalFileDef.hxx,
22351           SALOMEDSImpl_AttributeFileType.cxx,
22352           SALOMEDSImpl_AttributeFileType.hxx,
22353           SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
22354           SALOMEDSImpl_AttributeGraphic.cxx,
22355           SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
22356           SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
22357           SALOMEDSImpl_AttributeInteger.hxx,
22358           SALOMEDSImpl_AttributeLocalID.cxx,
22359           SALOMEDSImpl_AttributeLocalID.hxx,
22360           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
22361           SALOMEDSImpl_AttributeOpened.cxx,
22362           SALOMEDSImpl_AttributeOpened.hxx,
22363           SALOMEDSImpl_AttributeParameter.cxx,
22364           SALOMEDSImpl_AttributeParameter.hxx,
22365           SALOMEDSImpl_AttributePersistentRef.cxx,
22366           SALOMEDSImpl_AttributePersistentRef.hxx,
22367           SALOMEDSImpl_AttributePixMap.cxx,
22368           SALOMEDSImpl_AttributePixMap.hxx,
22369           SALOMEDSImpl_AttributePythonObject.cxx,
22370           SALOMEDSImpl_AttributePythonObject.hxx,
22371           SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
22372           SALOMEDSImpl_AttributeReference.cxx,
22373           SALOMEDSImpl_AttributeReference.hxx,
22374           SALOMEDSImpl_AttributeSelectable.cxx,
22375           SALOMEDSImpl_AttributeSelectable.hxx,
22376           SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
22377           SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
22378           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
22379           SALOMEDSImpl_AttributeSequenceOfReal.hxx,
22380           SALOMEDSImpl_AttributeString.cxx,
22381           SALOMEDSImpl_AttributeString.hxx,
22382           SALOMEDSImpl_AttributeStudyProperties.cxx,
22383           SALOMEDSImpl_AttributeStudyProperties.hxx,
22384           SALOMEDSImpl_AttributeTableOfInteger.cxx,
22385           SALOMEDSImpl_AttributeTableOfInteger.hxx,
22386           SALOMEDSImpl_AttributeTableOfReal.cxx,
22387           SALOMEDSImpl_AttributeTableOfReal.hxx,
22388           SALOMEDSImpl_AttributeTableOfString.cxx,
22389           SALOMEDSImpl_AttributeTableOfString.hxx,
22390           SALOMEDSImpl_AttributeTarget.cxx,
22391           SALOMEDSImpl_AttributeTarget.hxx,
22392           SALOMEDSImpl_AttributeTextColor.cxx,
22393           SALOMEDSImpl_AttributeTextColor.hxx,
22394           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
22395           SALOMEDSImpl_AttributeTextHighlightColor.hxx,
22396           SALOMEDSImpl_AttributeTreeNode.cxx,
22397           SALOMEDSImpl_AttributeTreeNode.hxx,
22398           SALOMEDSImpl_AttributeUserID.cxx,
22399           SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
22400           SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
22401           SALOMEDSImpl_ChildIterator.cxx, SALOMEDSImpl_ChildIterator.hxx,
22402           SALOMEDSImpl_ChildNodeIterator.cxx,
22403           SALOMEDSImpl_ChildNodeIterator.hxx, SALOMEDSImpl_Defines.hxx,
22404           SALOMEDSImpl_Driver.hxx, SALOMEDSImpl_GenericAttribute.cxx,
22405           SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_IParameters.cxx,
22406           SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_SComponent.cxx,
22407           SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
22408           SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
22409           SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
22410           SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
22411           SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.cxx,
22412           SALOMEDSImpl_StudyHandle.hxx, SALOMEDSImpl_StudyManager.cxx,
22413           SALOMEDSImpl_StudyManager.hxx, SALOMEDSImpl_TMPFile.cxx,
22414           SALOMEDSImpl_TMPFile.hxx, SALOMEDSImpl_Tool.cxx,
22415           SALOMEDSImpl_Tool.hxx, SALOMEDSImpl_UseCaseBuilder.cxx,
22416           SALOMEDSImpl_UseCaseBuilder.hxx,
22417           SALOMEDSImpl_UseCaseIterator.cxx,
22418           SALOMEDSImpl_UseCaseIterator.hxx, testDS.cxx:
22419
22420         [no log message]
22421
22422 2008-12-04 14:19  abd
22423
22424         * src/SALOMEDSClient/: Makefile.am, SALOMEDSClient.hxx,
22425           SALOMEDSClient_AttributeComment.hxx,
22426           SALOMEDSClient_AttributeDrawable.hxx,
22427           SALOMEDSClient_AttributeExpandable.hxx,
22428           SALOMEDSClient_AttributeExternalFileDef.hxx,
22429           SALOMEDSClient_AttributeFileType.hxx,
22430           SALOMEDSClient_AttributeFlags.hxx,
22431           SALOMEDSClient_AttributeGraphic.hxx,
22432           SALOMEDSClient_AttributeIOR.hxx,
22433           SALOMEDSClient_AttributeInteger.hxx,
22434           SALOMEDSClient_AttributeLocalID.hxx,
22435           SALOMEDSClient_AttributeName.hxx,
22436           SALOMEDSClient_AttributeOpened.hxx,
22437           SALOMEDSClient_AttributeParameter.hxx,
22438           SALOMEDSClient_AttributePersistentRef.hxx,
22439           SALOMEDSClient_AttributePixMap.hxx,
22440           SALOMEDSClient_AttributePythonObject.hxx,
22441           SALOMEDSClient_AttributeReal.hxx,
22442           SALOMEDSClient_AttributeSelectable.hxx,
22443           SALOMEDSClient_AttributeSequenceOfInteger.hxx,
22444           SALOMEDSClient_AttributeSequenceOfReal.hxx,
22445           SALOMEDSClient_AttributeString.hxx,
22446           SALOMEDSClient_AttributeStudyProperties.hxx,
22447           SALOMEDSClient_AttributeTableOfInteger.hxx,
22448           SALOMEDSClient_AttributeTableOfReal.hxx,
22449           SALOMEDSClient_AttributeTableOfString.hxx,
22450           SALOMEDSClient_AttributeTarget.hxx,
22451           SALOMEDSClient_AttributeTextColor.hxx,
22452           SALOMEDSClient_AttributeTextHighlightColor.hxx,
22453           SALOMEDSClient_AttributeTreeNode.hxx,
22454           SALOMEDSClient_AttributeUserID.hxx,
22455           SALOMEDSClient_ChildIterator.hxx,
22456           SALOMEDSClient_ClientFactory.cxx,
22457           SALOMEDSClient_ClientFactory.hxx,
22458           SALOMEDSClient_GenericAttribute.hxx,
22459           SALOMEDSClient_IParameters.hxx, SALOMEDSClient_SComponent.hxx,
22460           SALOMEDSClient_SComponentIterator.hxx,
22461           SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
22462           SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
22463           SALOMEDSClient_UseCaseBuilder.hxx,
22464           SALOMEDSClient_UseCaseIterator.hxx,
22465           SALOMEDSClient_definitions.hxx:
22466
22467         Update copyright information
22468
22469 2008-12-04 14:16  abd
22470
22471         * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_AttributeComment.cxx,
22472           SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
22473           SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
22474           SALOMEDS_AttributeExpandable.cxx,
22475           SALOMEDS_AttributeExpandable_i.hxx,
22476           SALOMEDS_AttributeExternalFileDef.hxx,
22477           SALOMEDS_AttributeExternalFileDef_i.cxx,
22478           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFlags.cxx,
22479           SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeGraphic_i.cxx,
22480           SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR_i.hxx,
22481           SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
22482           SALOMEDS_AttributeLocalID.hxx, SALOMEDS_AttributeLocalID_i.hxx,
22483           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName_i.cxx,
22484           SALOMEDS_AttributeOpened.hxx, SALOMEDS_AttributeParameter.hxx,
22485           SALOMEDS_AttributeParameter_i.hxx,
22486           SALOMEDS_AttributePersistentRef_i.hxx,
22487           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributeReal.hxx,
22488           SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
22489           SALOMEDS_AttributeSelectable_i.hxx,
22490           SALOMEDS_AttributeSequenceOfInteger.cxx,
22491           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
22492           SALOMEDS_AttributeSequenceOfReal.hxx,
22493           SALOMEDS_AttributeSequenceOfReal_i.cxx,
22494           SALOMEDS_AttributeString.hxx, SALOMEDS_AttributeString_i.cxx,
22495           SALOMEDS_AttributeStudyProperties.cxx,
22496           SALOMEDS_AttributeStudyProperties_i.cxx,
22497           SALOMEDS_AttributeTableOfInteger.cxx,
22498           SALOMEDS_AttributeTableOfInteger_i.hxx,
22499           SALOMEDS_AttributeTableOfReal_i.hxx,
22500           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget_i.hxx,
22501           SALOMEDS_AttributeTextColor.cxx,
22502           SALOMEDS_AttributeTextHighlightColor.hxx,
22503           SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_ChildIterator.hxx,
22504           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Driver_i.hxx,
22505           SALOMEDS_GenericAttribute.hxx, SALOMEDS_GenericAttribute_i.cxx,
22506           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SObject.cxx,
22507           SALOMEDS_SObject_i.cxx, SALOMEDS_Server.cxx, SALOMEDS_Study.hxx,
22508           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.hxx,
22509           SALOMEDS_StudyManager_i.cxx, SALOMEDS_TMPFile_i.cxx,
22510           SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseIterator_i.cxx,
22511           SALOME_DriverPy.py, SALOMEDS.hxx,
22512           SALOMEDS_AttributeComment_i.hxx,
22513           SALOMEDS_AttributeDrawable_i.hxx,
22514           SALOMEDS_AttributeExpandable.hxx,
22515           SALOMEDS_AttributeExternalFileDef_i.hxx,
22516           SALOMEDS_AttributeFileType.hxx, SALOMEDS_AttributeFileType_i.cxx,
22517           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags.hxx,
22518           SALOMEDS_AttributeFlags_i.cxx, SALOMEDS_AttributeGraphic.hxx,
22519           SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.hxx,
22520           SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeInteger_i.hxx,
22521           SALOMEDS_AttributeName.hxx, SALOMEDS_AttributeName_i.hxx,
22522           SALOMEDS_AttributeOpened_i.cxx,
22523           SALOMEDS_AttributePersistentRef.cxx,
22524           SALOMEDS_AttributePersistentRef_i.cxx,
22525           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.hxx,
22526           SALOMEDS_AttributePythonObject.cxx,
22527           SALOMEDS_AttributePythonObject_i.cxx,
22528           SALOMEDS_AttributeSelectable.hxx,
22529           SALOMEDS_AttributeSelectable_i.cxx,
22530           SALOMEDS_AttributeSequenceOfInteger.hxx,
22531           SALOMEDS_AttributeSequenceOfReal_i.hxx,
22532           SALOMEDS_AttributeString_i.hxx,
22533           SALOMEDS_AttributeStudyProperties.hxx,
22534           SALOMEDS_AttributeStudyProperties_i.hxx,
22535           SALOMEDS_AttributeTableOfInteger.hxx,
22536           SALOMEDS_AttributeTableOfReal.cxx,
22537           SALOMEDS_AttributeTableOfReal_i.cxx,
22538           SALOMEDS_AttributeTableOfString.cxx,
22539           SALOMEDS_AttributeTableOfString_i.cxx,
22540           SALOMEDS_AttributeTarget.hxx, SALOMEDS_AttributeTextColor.hxx,
22541           SALOMEDS_AttributeTextColor_i.cxx,
22542           SALOMEDS_AttributeTextHighlightColor_i.cxx,
22543           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode_i.cxx,
22544           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
22545           SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_Attributes.hxx,
22546           SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.hxx,
22547           SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
22548           SALOMEDS_Defines.hxx, SALOMEDS_GenericAttribute.cxx,
22549           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IParameters.cxx,
22550           SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
22551           SALOMEDS_SComponent_i.cxx, SALOMEDS_SObject.hxx,
22552           SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx,
22553           SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyManager.cxx,
22554           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
22555           SALOMEDS_Study_i.hxx, SALOMEDS_TMPFile_i.hxx,
22556           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder_i.cxx,
22557           SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
22558           SALOMEDS_UseCaseIterator_i.hxx, Makefile.am,
22559           SALOMEDS_AttributeDrawable.cxx,
22560           SALOMEDS_AttributeExpandable_i.cxx,
22561           SALOMEDS_AttributeExternalFileDef.cxx,
22562           SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
22563           SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeLocalID_i.cxx,
22564           SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened_i.hxx,
22565           SALOMEDS_AttributeParameter.cxx,
22566           SALOMEDS_AttributeParameter_i.cxx,
22567           SALOMEDS_AttributePersistentRef.hxx,
22568           SALOMEDS_AttributePixMap.hxx, SALOMEDS_AttributePythonObject.hxx,
22569           SALOMEDS_AttributePythonObject_i.hxx, SALOMEDS_AttributeReal.cxx,
22570           SALOMEDS_AttributeReal_i.cxx,
22571           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
22572           SALOMEDS_AttributeSequenceOfReal.cxx,
22573           SALOMEDS_AttributeString.cxx,
22574           SALOMEDS_AttributeTableOfInteger_i.cxx,
22575           SALOMEDS_AttributeTableOfReal.hxx,
22576           SALOMEDS_AttributeTableOfString.hxx,
22577           SALOMEDS_AttributeTableOfString_i.hxx,
22578           SALOMEDS_AttributeTarget_i.cxx,
22579           SALOMEDS_AttributeTextColor_i.hxx,
22580           SALOMEDS_AttributeTextHighlightColor.cxx,
22581           SALOMEDS_AttributeTextHighlightColor_i.hxx,
22582           SALOMEDS_AttributeTreeNode.hxx, SALOMEDS_AttributeUserID.hxx,
22583           SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
22584           SALOMEDS_IParameters.hxx, SALOMEDS_SComponent.hxx,
22585           SALOMEDS_SComponentIterator.hxx,
22586           SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.hxx,
22587           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyManager.hxx,
22588           SALOMEDS_UseCaseIterator.hxx, Test/Makefile.am,
22589           Test/SALOMEDSTest.cxx, Test/SALOMEDSTest.hxx,
22590           Test/SALOMEDSTest_AttributeComment.cxx,
22591           Test/SALOMEDSTest_AttributeDrawable.cxx,
22592           Test/SALOMEDSTest_AttributeExpandable.cxx,
22593           Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
22594           Test/SALOMEDSTest_AttributeFileType.cxx,
22595           Test/SALOMEDSTest_AttributeFlags.cxx,
22596           Test/SALOMEDSTest_AttributeGraphic.cxx,
22597           Test/SALOMEDSTest_AttributeIOR.cxx,
22598           Test/SALOMEDSTest_AttributeInteger.cxx,
22599           Test/SALOMEDSTest_AttributeLocalID.cxx,
22600           Test/SALOMEDSTest_AttributeName.cxx,
22601           Test/SALOMEDSTest_AttributeOpened.cxx,
22602           Test/SALOMEDSTest_AttributeParameter.cxx,
22603           Test/SALOMEDSTest_AttributePersistentRef.cxx,
22604           Test/SALOMEDSTest_AttributePixMap.cxx,
22605           Test/SALOMEDSTest_AttributePythonObject.cxx,
22606           Test/SALOMEDSTest_AttributeReal.cxx,
22607           Test/SALOMEDSTest_AttributeSelectable.cxx,
22608           Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
22609           Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
22610           Test/SALOMEDSTest_AttributeStudyProperties.cxx,
22611           Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
22612           Test/SALOMEDSTest_AttributeTableOfReal.cxx,
22613           Test/SALOMEDSTest_AttributeTableOfString.cxx,
22614           Test/SALOMEDSTest_AttributeTarget.cxx,
22615           Test/SALOMEDSTest_AttributeTextColor.cxx,
22616           Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
22617           Test/SALOMEDSTest_AttributeTreeNode.cxx,
22618           Test/SALOMEDSTest_AttributeUserID.cxx,
22619           Test/SALOMEDSTest_ChildIterator.cxx,
22620           Test/SALOMEDSTest_SComponent.cxx,
22621           Test/SALOMEDSTest_SComponentIterator.cxx,
22622           Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
22623           Test/SALOMEDSTest_StudyBuilder.cxx,
22624           Test/SALOMEDSTest_StudyManager.cxx,
22625           Test/SALOMEDSTest_UseCase.cxx, Test/TestSALOMEDS.cxx,
22626           Test/TestSALOMEDS.py:
22627
22628         Update copyright information
22629
22630 2008-12-04 14:08  abd
22631
22632         * src/: Registry/Makefile.am, Registry/RegistryConnexion.cxx,
22633           Registry/RegistryConnexion.hxx, Registry/RegistryService.cxx,
22634           Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
22635           Registry/SALOME_Registry_Server.cxx,
22636           ResourcesManager/Makefile.am,
22637           ResourcesManager/ResourcesManager.cxx,
22638           ResourcesManager/ResourcesManager.hxx,
22639           ResourcesManager/ResourcesManager_Defs.hxx,
22640           ResourcesManager/SALOME_LoadRateManager.cxx,
22641           ResourcesManager/SALOME_LoadRateManager.hxx,
22642           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
22643           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
22644           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
22645           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
22646           ResourcesManager/SALOME_ResourcesManager.cxx,
22647           ResourcesManager/SALOME_ResourcesManager.hxx:
22648
22649         Update copyright information
22650
22651 2008-12-04 14:00  abd
22652
22653         * src/: Notification/CosNotifyShorthands.h,
22654           Notification/Makefile.am, Notification/NOTIFICATION.cxx,
22655           Notification/NOTIFICATION.hxx,
22656           Notification/NOTIFICATION_Consumer.cxx,
22657           Notification/NOTIFICATION_Consumer.hxx,
22658           Notification/NOTIFICATION_Supplier.cxx,
22659           Notification/NOTIFICATION_Supplier.hxx,
22660           Notification/SALOME_NOTIFICATION.hxx,
22661           ParallelContainer/Makefile.am,
22662           ParallelContainer/Parallel_Salome_file_i.cxx,
22663           ParallelContainer/Parallel_Salome_file_i.hxx,
22664           ParallelContainer/SALOME_ParallelComponent_i.cxx,
22665           ParallelContainer/SALOME_ParallelComponent_i.hxx,
22666           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
22667           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
22668           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
22669           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
22670           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
22671           ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
22672           ParallelContainer/SALOME_ParallelContainer_i.cxx,
22673           ParallelContainer/SALOME_ParallelContainer_i.hxx:
22674
22675         Update copyright information
22676
22677 2008-12-04 13:57  abd
22678
22679         * src/: ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
22680           ModuleCatalog/SALOME_ModuleCatalog.hxx,
22681           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
22682           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
22683           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
22684           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
22685           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
22686           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
22687           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
22688           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
22689           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
22690           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
22691           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
22692           ModuleCatalog/TestModuleCatalog.py, ModuleGenerator/IDLparser.py,
22693           ModuleGenerator/Makefile.am,
22694           ModuleGenerator/tests/Truc2Component.idl,
22695           ModuleGenerator/tests/TrucComponent.idl,
22696           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
22697           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
22698           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
22699           NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
22700           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
22701           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
22702           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
22703           NamingService/Makefile.am,
22704           NamingService/NamingService_WaitForServerReadiness.cxx,
22705           NamingService/NamingService_WaitForServerReadiness.hxx,
22706           NamingService/SALOME_NamingService.cxx,
22707           NamingService/SALOME_NamingService.hxx,
22708           NamingService/SALOME_NamingService.i,
22709           NamingService/SALOME_NamingServicePy.py,
22710           NamingService/SALOME_NamingService_defs.hxx,
22711           NamingService/ServiceUnreachable.cxx,
22712           NamingService/ServiceUnreachable.hxx,
22713           NamingService/Test/Makefile.am,
22714           NamingService/Test/NamingServiceTest.cxx,
22715           NamingService/Test/NamingServiceTest.hxx,
22716           NamingService/Test/TestNamingService.cxx,
22717           NamingService/Test/TestNamingService.py:
22718
22719         Update copyright information
22720
22721 2008-12-04 13:46  abd
22722
22723         * src/MPIContainer/: MPIContainer_i.cxx, MPIContainer_i.hxx,
22724           MPIObject_i.cxx, MPIObject_i.hxx, Makefile.am,
22725           SALOME_MPIContainer.cxx:
22726
22727         Update copyright information
22728
22729 2008-12-04 13:43  abd
22730
22731         * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
22732           Launcher/Launcher.cxx, Launcher/Launcher.hxx,
22733           Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
22734           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
22735           Launcher/SALOME_Launcher_defs.hxx,
22736           LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
22737           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
22738           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
22739           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
22740           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
22741           LifeCycleCORBA/TestContainerManager.cxx,
22742           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
22743           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
22744           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
22745           LifeCycleCORBA/Test/Makefile.am,
22746           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
22747           LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
22748           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
22749           LifeCycleCORBA_SWIG/Makefile.am,
22750           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
22751           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
22752           LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
22753           LifeCycleCORBA_SWIG/Test/Makefile.am,
22754           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
22755           Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
22756           Logger/SALOME_Logger_Server.hxx,
22757           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
22758           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
22759           Logger/Test/Makefile.am, Logger/Test/TestKiller.py:
22760
22761         Update copyright information
22762
22763 2008-12-04 13:25  abd
22764
22765         * src/: HDFPersist/HDFOI.hxx, HDFPersist/HDFascii.cc,
22766           HDFPersist/HDFascii.hxx, HDFPersist/HDFattrClose.c,
22767           HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
22768           HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
22769           HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
22770           HDFPersist/HDFattribute.cc, HDFPersist/HDFattribute.hxx,
22771           HDFPersist/HDFcontainerObject.cc,
22772           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
22773           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
22774           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
22775           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
22776           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
22777           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
22778           HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
22779           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
22780           HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
22781           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
22782           HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
22783           HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
22784           HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
22785           HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
22786           HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
22787           HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
22788           HDFPersist/HDFinternalObject.cc,
22789           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
22790           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
22791           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
22792           HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
22793           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
22794           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
22795           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
22796           KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
22797           KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
22798           KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
22799           KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
22800           KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
22801           KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
22802           KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
22803           KERNEL_PY/salome_version.py:
22804
22805         Update copyright information
22806
22807 2008-12-04 13:22  abd
22808
22809         * src/: DSC/DSC_User/Datastream/Calcium/Calcium.c,
22810           DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
22811           DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
22812           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
22813           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
22814           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
22815           DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
22816           DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
22817           DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
22818           DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
22819           DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
22820           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
22821           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
22822           DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
22823           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
22824           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
22825           DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
22826           DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
22827           DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
22828           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
22829           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
22830           DSC/DSC_User/Datastream/Calcium/Makefile.am,
22831           DSC/DSC_User/Datastream/Calcium/calcium.h,
22832           DSC/DSC_User/Datastream/Calcium/calcium.hf,
22833           DSC/DSC_User/Datastream/Calcium/calciumE.h,
22834           DSC/DSC_User/Datastream/Calcium/calciumP.h,
22835           DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
22836           DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
22837           DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
22838           DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
22839           DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
22840           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
22841           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
22842           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
22843           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
22844           DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
22845           DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
22846           DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
22847           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
22848           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
22849           DSC/DSC_User/Datastream/Calcium/calciumf.c,
22850           DSC/DSC_User/Datastream/Calcium/fortoc.h,
22851           DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
22852           DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
22853           DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
22854           DSC/DSC_User/Datastream/Calcium/version.h,
22855           DSC/DSC_User/Datastream/Palm/Makefile.am,
22856           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
22857           DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
22858           DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
22859           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
22860           DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
22861           DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
22862           DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
22863           DSC/ParallelDSC/ParallelDSC_i.hxx, GenericObj/Makefile.am,
22864           GenericObj/SALOME_GenericObj_i.cc,
22865           GenericObj/SALOME_GenericObj_i.hh:
22866
22867         Update copyright information
22868
22869 2008-12-04 13:14  abd
22870
22871         * src/DSC/DSC_User/: DSC_Exception.hxx, Makefile.am,
22872           Superv_Component_i.cxx, Superv_Component_i.hxx, base_port.cxx,
22873           base_port.hxx, port_factory.hxx, provides_port.cxx,
22874           provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
22875           uses_port.hxx, Basic/Makefile.am, Basic/basic_port_factory.cxx,
22876           Basic/basic_port_factory.hxx, Basic/data_short_port_provides.cxx,
22877           Basic/data_short_port_provides.hxx,
22878           Basic/data_short_port_uses.cxx, Basic/data_short_port_uses.hxx,
22879           Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
22880           Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
22881           Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
22882           Datastream/DisplayPair.hxx, Datastream/FindKeyPredicate.hxx,
22883           Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
22884           Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
22885           Datastream/Makefile.am, Datastream/ProcessTimeIntervalTraits.hxx,
22886           Datastream/fake.cc, Datastream/testAdjacentFunctor.cxx,
22887           Datastream/testAdjacentPredicate.cxx:
22888
22889         Update copyright information
22890
22891 2008-12-04 13:10  abd
22892
22893         * src/: DF/DF_Application.cxx, DF/DF_Application.hxx,
22894           DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
22895           DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
22896           DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
22897           DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
22898           DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
22899           DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
22900           DSC/DSC_Basic/ConnectionManager_i.hxx,
22901           DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
22902           DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
22903           DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
22904           DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
22905           DSC/DSC_Basic/PortProperties_i.hxx,
22906           DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
22907           DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
22908           DSC/DSC_Python/dsccalcium.py:
22909
22910         Update copyright information
22911
22912 2008-12-04 13:07  abd
22913
22914         * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
22915           Communication/MatrixClient.hxx,
22916           Communication/MultiCommException.cxx,
22917           Communication/MultiCommException.hxx, Communication/Receiver.hxx,
22918           Communication/ReceiverFactory.cxx,
22919           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
22920           Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
22921           Communication/SALOMEMultiComm.hxx,
22922           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
22923           Communication/SALOME_Communication.hxx,
22924           Communication/SALOME_Matrix_i.cxx,
22925           Communication/SALOME_Matrix_i.hxx,
22926           Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
22927           Communication_SWIG/Makefile.am,
22928           Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
22929           Container/Container_i.cxx, Container/Container_init_python.cxx,
22930           Container/Container_init_python.hxx, Container/Makefile.am,
22931           Container/SALOME_ComponentPy.py,
22932           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
22933           Container/SALOME_Container.hxx, Container/SALOME_Container.py,
22934           Container/SALOME_ContainerManager.cxx,
22935           Container/SALOME_ContainerManager.hxx,
22936           Container/SALOME_ContainerPy.py,
22937           Container/SALOME_Container_SignalsHandler.cxx,
22938           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
22939           Container/SALOME_FileRef_i.hxx,
22940           Container/SALOME_FileTransfer_i.cxx,
22941           Container/SALOME_FileTransfer_i.hxx, Container/Salome_file_i.cxx,
22942           Container/Salome_file_i.hxx, Container/TestSalome_file.cxx:
22943
22944         Update copyright information
22945
22946 2008-12-04 12:57  abd
22947
22948         * src/Basics/: BasicsGenericDestructor.cxx,
22949           BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
22950           Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
22951           Makefile.am, SALOME_Basics.hxx, Test/BasicMainTest.hxx,
22952           Test/Makefile.am:
22953
22954         Update copyright information
22955
22956 2008-12-04 12:53  abd
22957
22958         * salome_adm/unix/DEPRECATED/Doxyfile,
22959           salome_adm/unix/DEPRECATED/F77config.h.in,
22960           salome_adm/unix/DEPRECATED/config.h.in,
22961           salome_adm/unix/DEPRECATED/envScript.in,
22962           salome_adm/unix/DEPRECATED/make_commence.in,
22963           salome_adm/unix/DEPRECATED/make_conclude.in,
22964           salome_adm/unix/DEPRECATED/make_module.in,
22965           salome_adm/unix/DEPRECATED/make_omniorb.in,
22966           salome_adm/cmake_files/Makefile.am,
22967           salome_adm/cmake_files/am2cmake.py,
22968           salome_adm/cmake_files/FindBOOST.cmake,
22969           salome_adm/cmake_files/FindCPPUNIT.cmake,
22970           salome_adm/cmake_files/FindHDF5.cmake,
22971           salome_adm/cmake_files/FindKERNEL.cmake,
22972           salome_adm/cmake_files/FindLIBXML2.cmake,
22973           salome_adm/cmake_files/FindOMNIORB.cmake,
22974           salome_adm/cmake_files/FindPLATFORM.cmake,
22975           salome_adm/cmake_files/FindPTHREADS.cmake,
22976           salome_adm/cmake_files/FindPYTHON.cmake,
22977           salome_adm/cmake_files/FindSWIG.cmake,
22978           salome_adm/cmake_files/install_python_from_idl.cmake,
22979           src/Makefile.am:
22980
22981         Update copyright information
22982
22983 2008-12-04 12:44  abd
22984
22985         * salome_adm/unix/config_files/DEPRECATED/: ac_cc_warnings.m4,
22986           ac_cxx_bool.m4, ac_cxx_mutable.m4,
22987           ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
22988           check_Salome.m4, check_java.m4, check_mico.m4, check_pthreads.m4,
22989           install-sh, mkinstalldirs:
22990
22991         Update copyright information
22992
22993 2008-12-04 12:41  abd
22994
22995         * salome_adm/unix/config_files/: Makefile.am,
22996           ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4,
22997           ac_cxx_namespaces.m4, ac_cxx_option.m4,
22998           ac_cxx_template_options.m4, ac_cxx_use_std_iostream.m4,
22999           ac_cxx_warnings.m4, ac_linker_options.m4, acx_pthread.m4,
23000           check_Kernel.m4, check_boost.m4, check_cas.m4, check_corba.m4,
23001           check_cppunit.m4, check_f77.m4, check_hdf5.m4, check_htmlgen.m4,
23002           check_lam.m4, check_libxml.m4, check_local.m4, check_lsf.m4,
23003           check_mpi.m4, check_mpich.m4, check_omniorb.m4, check_openmpi.m4,
23004           check_openpbs.m4, check_paco++.m4, check_sockets.m4,
23005           check_swig.m4, check_withihm.m4, enable_pthreads.m4,
23006           production.m4, pyembed.m4, python.m4:
23007
23008         Update copyright information
23009
23010 2008-12-04 12:32  abd
23011
23012         * bin/appliskel/: CatalogResources.xml, SalomeApp.xml,
23013           getAppliPath.py, runRemote.sh, searchFreePort.sh, .bashrc, envd,
23014           killCurrentPort, runAppli, runConsole, runParam, runSession,
23015           runTests:
23016
23017         Update copyright information
23018
23019 2008-12-04 08:04  abd
23020
23021         * salome_adm/unix/: Makefile.am, SALOMEconfig.ref.in,
23022           make_common_starter.am:
23023
23024         Update copyright information
23025
23026 2008-12-04 08:01  abd
23027
23028         * resources/CatalogDataType.xml, resources/CatalogResources.xml.in,
23029           resources/KERNELCatalog.xml.in, resources/Makefile.am,
23030           resources/channel.cfg, salome_adm/Makefile.am:
23031
23032         Update copyright information
23033
23034 2008-12-04 07:57  abd
23035
23036         * idl/: Calcium_Ports.idl, DSC_Engines.idl, DSC_Engines.xml,
23037           Logger.idl, Makefile.am, Palm_Ports.idl, SALOMEDS.idl,
23038           SALOMEDS_Attributes.idl, SALOME_Comm.idl, SALOME_Component.idl,
23039           SALOME_Component.xml, SALOME_ContainerManager.idl,
23040           SALOME_Exception.idl, SALOME_Exception.xml,
23041           SALOME_GenericObj.idl, SALOME_MPIContainer.idl,
23042           SALOME_MPIObject.idl, SALOME_ModuleCatalog.idl, SALOME_Ports.idl,
23043           SALOME_Ports.xml, SALOME_Registry.idl,
23044           SALOME_RessourcesCatalog.idl, SALOME_Session.idl,
23045           SALOME_TestComponent.idl, SALOME_TestMPIComponent.idl,
23046           SALOME_TestModuleCatalog.idl, TestNotif.idl, TypeData.idl,
23047           nstest.idl:
23048
23049         Update copyright information
23050
23051 2008-12-04 07:48  abd
23052
23053         * doc/: Makefile.am, txt2html.sh,
23054           configuration_examples/example_prerequis.sh, salome/Makefile.am,
23055           salome/tui/Makefile.am, salome/tui/pythfilter.py:
23056
23057         Update copyright information
23058
23059 2008-12-04 07:18  abd
23060
23061         * bin/: Makefile.am, NSparam.py, addToKillList.py, appli_clean.sh,
23062           appli_gen.py, appli_install.sh, config_appli.xml, createAppli.sh,
23063           envSalome.py, killSalome.py, killSalomeWithPort.py,
23064           launchConfigureParser.py, launchSalome.py, nameserver.py,
23065           orbmodule.py, runNS.py, runNS.sh, runSalome, runSalome.csh,
23066           runSalome.ksh, runSalome.py, salomeConsole.py, salome_session.py,
23067           salome_utils.py, server.py, setenv.py, showNS.py,
23068           shutdownSalome.py, virtual_salome.py, waitContainers.py,
23069           waitNS.py, waitNS.sh, runIDLparser:
23070
23071         Update copyright information
23072
23073 2008-12-04 07:13  abd
23074
23075         * KERNEL_version.h.in, Makefile.am, README.FIRST.txt,
23076           build_configure, clean_configure, configure.ac,
23077           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
23078           DEPRECATED/make_config.in:
23079
23080         Update copyright information
23081
23082 2008-12-01 17:03  adam
23083
23084         * salome_adm/cmake_files/am2cmake.py:
23085
23086         Do not add executable if no source is present
23087         Do not add subdir if dir == .
23088
23089 2008-12-01 16:52  adam
23090
23091         * salome_adm/cmake_files/am2cmake.py:
23092
23093         Adding some cas libs
23094
23095 2008-12-01 16:50  adam
23096
23097         * salome_adm/cmake_files/am2cmake.py:
23098
23099         If the  is stick on the previous word, we have to add a space ...
23100
23101 2008-12-01 16:48  adam
23102
23103         * salome_adm/cmake_files/am2cmake.py:
23104
23105         Mutualize cmake inclusions
23106
23107 2008-12-01 16:43  adam
23108
23109         * salome_adm/cmake_files/FindLIBXML2.cmake:
23110
23111         MED reference LIBXML_CPPFLAGS ...
23112
23113 2008-12-01 15:00  abd
23114
23115         * src/TestContainer/: TestContainer.cxx, TestLogger.cxx:
23116
23117         Fix compilation errors on Win32 platform:
23118         Using standard WIN32 preprocessor definition instead WNT (defined by Open CASCADE)
23119
23120 2008-12-01 12:07  vsr
23121
23122         * bin/waitNS.sh:
23123
23124         Update copyright information
23125
23126 2008-11-28 14:23  rnv
23127
23128         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
23129
23130         Dump Python Extension.
23131
23132 2008-11-27 09:24  vsr
23133
23134         * bin/appliskel/README:
23135
23136         Update copyright information
23137
23138 2008-11-27 07:16  vsr
23139
23140         * README.FIRST.txt, bin/launchConfigureParser.py,
23141           bin/salome_utils.py, bin/shutdownSalome.py,
23142           bin/waitContainers.py, bin/waitNS.py, bin/appliskel/.bashrc,
23143           idl/DSC_Engines.xml, idl/SALOME_Component.xml,
23144           idl/SALOME_Exception.xml, idl/SALOME_Ports.xml,
23145           salome_adm/unix/DEPRECATED/depend.in,
23146           src/DSC/DSC_Basic/DSC_Basic.hxx,
23147           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
23148           src/ModuleGenerator/README, src/ModuleGenerator/testIDLparser.in,
23149           src/SALOMEDS/README_attributes:
23150
23151         Update copyright information
23152
23153 2008-11-26 13:48  abd
23154
23155         * bin/appliskel/: envd, getAppliPath.py, killCurrentPort, runAppli,
23156           runConsole, runParam, runRemote.sh, runSession, runTests,
23157           searchFreePort.sh:
23158
23159         Update copyright information
23160
23161 2008-11-26 13:44  abd
23162
23163         * src/: Utils/Makefile.am, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
23164           Utils/SALOME_Utils.hxx, Utils/SALOME_utilities.py,
23165           Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
23166           Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
23167           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
23168           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
23169           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
23170           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
23171           Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
23172           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
23173           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
23174           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
23175           Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.cxx,
23176           Utils/Utils_Timer.hxx, Utils/duplicate.cxx,
23177           Utils/Test/Makefile.am, Utils/Test/TestUtils.cxx,
23178           Utils/Test/TestUtils.py, Utils/Test/UtilsTest.cxx,
23179           Utils/Test/UtilsTest.hxx, win32pm/setup.py, win32pm/win32pm.c:
23180
23181         Update copyright information
23182
23183 2008-11-26 13:40  abd
23184
23185         * src/: SALOMETraceCollector/Test/Makefile.am,
23186           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
23187           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
23188           SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
23189           SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
23190           TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
23191           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
23192           TestContainer/SALOME_TestComponentPy.py,
23193           TestContainer/SALOME_TestComponent_i.cxx,
23194           TestContainer/SALOME_TestComponent_i.hxx,
23195           TestContainer/TestComponentPy.py,
23196           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
23197           TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
23198           TestMPIContainer/TestMPIComponentEngine.cxx,
23199           TestMPIContainer/TestMPIComponentEngine.hxx,
23200           TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
23201           UnitTests/UnitTests.cxx, UnitTests/UnitTests.py:
23202
23203         Update copyright information
23204
23205 2008-11-26 13:37  abd
23206
23207         * src/: SALOMEDSImpl/Makefile.am,
23208           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
23209           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
23210           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
23211           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
23212           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
23213           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
23214           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
23215           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
23216           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
23217           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
23218           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
23219           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
23220           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
23221           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
23222           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
23223           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
23224           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
23225           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
23226           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
23227           SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
23228           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
23229           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
23230           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
23231           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
23232           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
23233           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
23234           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
23235           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
23236           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
23237           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
23238           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
23239           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
23240           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
23241           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
23242           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
23243           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
23244           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
23245           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
23246           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
23247           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
23248           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
23249           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
23250           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
23251           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
23252           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
23253           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
23254           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
23255           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
23256           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
23257           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
23258           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
23259           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
23260           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
23261           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
23262           SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
23263           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
23264           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
23265           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
23266           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
23267           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
23268           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
23269           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
23270           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
23271           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
23272           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
23273           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
23274           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
23275           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
23276           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
23277           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
23278           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
23279           SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
23280           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
23281           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
23282           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
23283           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
23284           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
23285           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
23286           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
23287           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
23288           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
23289           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
23290           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
23291           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
23292           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
23293           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
23294           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
23295           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
23296           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
23297           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
23298           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
23299           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
23300           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
23301           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
23302           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
23303           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
23304           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
23305           SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
23306           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
23307           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
23308           SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
23309           SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
23310           SALOMELocalTrace/BaseTraceCollector.cxx,
23311           SALOMELocalTrace/BaseTraceCollector.hxx,
23312           SALOMELocalTrace/FileTraceCollector.cxx,
23313           SALOMELocalTrace/FileTraceCollector.hxx,
23314           SALOMELocalTrace/LocalTraceBufferPool.cxx,
23315           SALOMELocalTrace/LocalTraceBufferPool.hxx,
23316           SALOMELocalTrace/LocalTraceCollector.cxx,
23317           SALOMELocalTrace/LocalTraceCollector.hxx,
23318           SALOMELocalTrace/Makefile.am,
23319           SALOMELocalTrace/SALOME_LocalTrace.hxx,
23320           SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
23321           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
23322           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
23323           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
23324           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
23325           SALOMETraceCollector/Makefile.am,
23326           SALOMETraceCollector/SALOMETraceCollector.cxx,
23327           SALOMETraceCollector/SALOMETraceCollector.hxx,
23328           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
23329           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
23330
23331         Update copyright information
23332
23333 2008-11-26 13:32  abd
23334
23335         * src/SALOMEDSClient/: Makefile.am, SALOMEDSClient.hxx,
23336           SALOMEDSClient_AttributeComment.hxx,
23337           SALOMEDSClient_AttributeDrawable.hxx,
23338           SALOMEDSClient_AttributeExpandable.hxx,
23339           SALOMEDSClient_AttributeExternalFileDef.hxx,
23340           SALOMEDSClient_AttributeFileType.hxx,
23341           SALOMEDSClient_AttributeFlags.hxx,
23342           SALOMEDSClient_AttributeGraphic.hxx,
23343           SALOMEDSClient_AttributeIOR.hxx,
23344           SALOMEDSClient_AttributeInteger.hxx,
23345           SALOMEDSClient_AttributeLocalID.hxx,
23346           SALOMEDSClient_AttributeName.hxx,
23347           SALOMEDSClient_AttributeOpened.hxx,
23348           SALOMEDSClient_AttributeParameter.hxx,
23349           SALOMEDSClient_AttributePersistentRef.hxx,
23350           SALOMEDSClient_AttributePixMap.hxx,
23351           SALOMEDSClient_AttributePythonObject.hxx,
23352           SALOMEDSClient_AttributeReal.hxx,
23353           SALOMEDSClient_AttributeSelectable.hxx,
23354           SALOMEDSClient_AttributeSequenceOfInteger.hxx,
23355           SALOMEDSClient_AttributeSequenceOfReal.hxx,
23356           SALOMEDSClient_AttributeString.hxx,
23357           SALOMEDSClient_AttributeStudyProperties.hxx,
23358           SALOMEDSClient_AttributeTableOfInteger.hxx,
23359           SALOMEDSClient_AttributeTableOfReal.hxx,
23360           SALOMEDSClient_AttributeTableOfString.hxx,
23361           SALOMEDSClient_AttributeTarget.hxx,
23362           SALOMEDSClient_AttributeTextColor.hxx,
23363           SALOMEDSClient_AttributeTextHighlightColor.hxx,
23364           SALOMEDSClient_AttributeTreeNode.hxx,
23365           SALOMEDSClient_AttributeUserID.hxx,
23366           SALOMEDSClient_ChildIterator.hxx,
23367           SALOMEDSClient_ClientFactory.cxx,
23368           SALOMEDSClient_ClientFactory.hxx,
23369           SALOMEDSClient_GenericAttribute.hxx,
23370           SALOMEDSClient_IParameters.hxx, SALOMEDSClient_SComponent.hxx,
23371           SALOMEDSClient_SComponentIterator.hxx,
23372           SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
23373           SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
23374           SALOMEDSClient_UseCaseBuilder.hxx,
23375           SALOMEDSClient_UseCaseIterator.hxx,
23376           SALOMEDSClient_definitions.hxx:
23377
23378         Update copyright information
23379
23380 2008-11-26 12:51  abd
23381
23382         * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx, SALOMEDS.hxx,
23383           SALOMEDS_AttLong_i.cxx, SALOMEDS_AttLong_i.hxx,
23384           SALOMEDS_AttReal_i.cxx, SALOMEDS_AttributeComment.cxx,
23385           SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
23386           SALOMEDS_AttributeComment_i.hxx, SALOMEDS_AttributeDrawable.cxx,
23387           SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
23388           SALOMEDS_AttributeDrawable_i.hxx,
23389           SALOMEDS_AttributeExpandable.cxx,
23390           SALOMEDS_AttributeExpandable.hxx,
23391           SALOMEDS_AttributeExpandable_i.cxx,
23392           SALOMEDS_AttributeExpandable_i.hxx,
23393           SALOMEDS_AttributeExternalFileDef.cxx,
23394           SALOMEDS_AttributeExternalFileDef.hxx,
23395           SALOMEDS_AttributeExternalFileDef_i.cxx,
23396           SALOMEDS_AttributeExternalFileDef_i.hxx,
23397           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
23398           SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags.cxx,
23399           SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeFlags_i.cxx,
23400           SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic.cxx,
23401           SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeGraphic_i.cxx,
23402           SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.cxx,
23403           SALOMEDS_AttributeIOR.hxx, SALOMEDS_AttributeIOR_i.hxx,
23404           SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
23405           SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID.hxx,
23406           SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeLocalID_i.hxx,
23407           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName.hxx,
23408           SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeName_i.hxx,
23409           SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened.hxx,
23410           SALOMEDS_AttributeOpened_i.cxx, SALOMEDS_AttributeOpened_i.hxx,
23411           SALOMEDS_AttributeParameter.cxx, SALOMEDS_AttributeParameter.hxx,
23412           SALOMEDS_AttributeParameter_i.cxx,
23413           SALOMEDS_AttributeParameter_i.hxx,
23414           SALOMEDS_AttributePersistentRef.cxx,
23415           SALOMEDS_AttributePersistentRef.hxx,
23416           SALOMEDS_AttributePersistentRef_i.cxx,
23417           SALOMEDS_AttributePersistentRef_i.hxx,
23418           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.cxx,
23419           SALOMEDS_AttributePixMap_i.hxx,
23420           SALOMEDS_AttributePythonObject.cxx,
23421           SALOMEDS_AttributePythonObject_i.cxx, SALOMEDS_AttributeReal.cxx,
23422           SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeReal_i.cxx,
23423           SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
23424           SALOMEDS_AttributeSelectable.hxx,
23425           SALOMEDS_AttributeSelectable_i.cxx,
23426           SALOMEDS_AttributeSelectable_i.hxx,
23427           SALOMEDS_AttributeSequenceOfInteger.cxx,
23428           SALOMEDS_AttributeSequenceOfInteger.hxx,
23429           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
23430           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
23431           SALOMEDS_AttributeSequenceOfReal.cxx,
23432           SALOMEDS_AttributeSequenceOfReal.hxx,
23433           SALOMEDS_AttributeSequenceOfReal_i.cxx,
23434           SALOMEDS_AttributeSequenceOfReal_i.hxx,
23435           SALOMEDS_AttributeString.cxx, SALOMEDS_AttributeString.hxx,
23436           SALOMEDS_AttributeString_i.cxx, SALOMEDS_AttributeString_i.hxx,
23437           SALOMEDS_AttributeStudyProperties.cxx,
23438           SALOMEDS_AttributeStudyProperties.hxx,
23439           SALOMEDS_AttributeStudyProperties_i.cxx,
23440           SALOMEDS_AttributeStudyProperties_i.hxx,
23441           SALOMEDS_AttributeTableOfInteger.cxx,
23442           SALOMEDS_AttributeTableOfInteger.hxx,
23443           SALOMEDS_AttributeTableOfInteger_i.cxx,
23444           SALOMEDS_AttributeTableOfInteger_i.hxx,
23445           SALOMEDS_AttributeTableOfReal.cxx,
23446           SALOMEDS_AttributeTableOfReal.hxx,
23447           SALOMEDS_AttributeTableOfReal_i.cxx,
23448           SALOMEDS_AttributeTableOfReal_i.hxx,
23449           SALOMEDS_AttributeTableOfString.cxx,
23450           SALOMEDS_AttributeTableOfString.hxx,
23451           SALOMEDS_AttributeTableOfString_i.cxx,
23452           SALOMEDS_AttributeTableOfString_i.hxx,
23453           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
23454           SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
23455           SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
23456           SALOMEDS_AttributeTextColor_i.cxx,
23457           SALOMEDS_AttributeTextColor_i.hxx,
23458           SALOMEDS_AttributeTextHighlightColor.cxx,
23459           SALOMEDS_AttributeTextHighlightColor.hxx,
23460           SALOMEDS_AttributeTextHighlightColor_i.cxx,
23461           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode_i.cxx,
23462           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
23463           SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
23464           SALOMEDS_BasicAttributeFactory.cxx,
23465           SALOMEDS_BasicAttributeFactory.hxx,
23466           SALOMEDS_BasicAttribute_i.hxx, SALOMEDS_Callback_i.hxx,
23467           SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator.hxx,
23468           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
23469           SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
23470           SALOMEDS_Defines.hxx, SALOMEDS_Driver_i.cxx,
23471           SALOMEDS_Driver_i.hxx, SALOMEDS_GenericAttribute.hxx,
23472           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
23473           SALOMEDS_IParameters.cxx, SALOMEDS_SComponent.cxx,
23474           SALOMEDS_SComponentIterator.cxx,
23475           SALOMEDS_SComponentIterator_i.cxx,
23476           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.hxx,
23477           SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx,
23478           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
23479           SALOMEDS_Server.cxx, SALOMEDS_Study.cxx, SALOMEDS_Study.hxx,
23480           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx,
23481           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
23482           SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager_i.cxx,
23483           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
23484           SALOMEDS_Study_i.hxx, SALOMEDS_TMPFile_i.cxx,
23485           SALOMEDS_TMPFile_i.hxx, SALOMEDS_UseCaseBuilder.cxx,
23486           SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
23487           SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
23488           SALOMEDS_UseCaseIterator.hxx, SALOMEDS_UseCaseIterator_i.cxx,
23489           SALOMEDS_UseCaseIterator_i.hxx, SALOMEDS_AttReal_i.hxx,
23490           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
23491           SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeLocalID.cxx,
23492           SALOMEDS_AttributePixMap.hxx, SALOMEDS_AttributePythonObject.hxx,
23493           SALOMEDS_AttributePythonObject_i.hxx,
23494           SALOMEDS_AttributeTextHighlightColor_i.hxx,
23495           SALOMEDS_AttributeTreeNode.hxx, SALOMEDS_AttributeUserID.hxx,
23496           SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_BasicAttribute_i.cxx,
23497           SALOMEDS_GenericAttribute.cxx, SALOMEDS_IParameters.hxx,
23498           SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.hxx,
23499           SALOMEDS_SComponent_i.cxx, SALOMEDS_StudyManager.hxx,
23500           SALOME_DriverPy.py, Test/Makefile.am, Test/SALOMEDSTest.cxx,
23501           Test/SALOMEDSTest.hxx, Test/SALOMEDSTest_AttributeComment.cxx,
23502           Test/SALOMEDSTest_AttributeDrawable.cxx,
23503           Test/SALOMEDSTest_AttributeExpandable.cxx,
23504           Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
23505           Test/SALOMEDSTest_AttributeFileType.cxx,
23506           Test/SALOMEDSTest_AttributeFlags.cxx,
23507           Test/SALOMEDSTest_AttributeGraphic.cxx,
23508           Test/SALOMEDSTest_AttributeIOR.cxx,
23509           Test/SALOMEDSTest_AttributeInteger.cxx,
23510           Test/SALOMEDSTest_AttributeLocalID.cxx,
23511           Test/SALOMEDSTest_AttributeName.cxx,
23512           Test/SALOMEDSTest_AttributeOpened.cxx,
23513           Test/SALOMEDSTest_AttributeParameter.cxx,
23514           Test/SALOMEDSTest_AttributePersistentRef.cxx,
23515           Test/SALOMEDSTest_AttributePixMap.cxx,
23516           Test/SALOMEDSTest_AttributePythonObject.cxx,
23517           Test/SALOMEDSTest_AttributeReal.cxx,
23518           Test/SALOMEDSTest_AttributeSelectable.cxx,
23519           Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
23520           Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
23521           Test/SALOMEDSTest_AttributeStudyProperties.cxx,
23522           Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
23523           Test/SALOMEDSTest_AttributeTableOfReal.cxx,
23524           Test/SALOMEDSTest_AttributeTableOfString.cxx,
23525           Test/SALOMEDSTest_AttributeTarget.cxx,
23526           Test/SALOMEDSTest_AttributeTextColor.cxx,
23527           Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
23528           Test/SALOMEDSTest_AttributeTreeNode.cxx,
23529           Test/SALOMEDSTest_AttributeUserID.cxx,
23530           Test/SALOMEDSTest_ChildIterator.cxx,
23531           Test/SALOMEDSTest_SComponent.cxx,
23532           Test/SALOMEDSTest_SComponentIterator.cxx,
23533           Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
23534           Test/SALOMEDSTest_StudyBuilder.cxx,
23535           Test/SALOMEDSTest_StudyManager.cxx,
23536           Test/SALOMEDSTest_UseCase.cxx, Test/TestSALOMEDS.cxx,
23537           Test/TestSALOMEDS.py:
23538
23539         Update copyright information
23540
23541 2008-11-26 12:39  abd
23542
23543         * src/: ParallelContainer/Makefile.am,
23544           ParallelContainer/Parallel_Salome_file_i.cxx,
23545           ParallelContainer/Parallel_Salome_file_i.hxx,
23546           ParallelContainer/SALOME_ParallelComponent_i.cxx,
23547           ParallelContainer/SALOME_ParallelComponent_i.hxx,
23548           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
23549           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
23550           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
23551           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
23552           ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
23553           ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
23554           ParallelContainer/SALOME_ParallelContainer_i.cxx,
23555           ParallelContainer/SALOME_ParallelContainer_i.hxx,
23556           Registry/Makefile.am, Registry/RegistryConnexion.cxx,
23557           Registry/RegistryConnexion.hxx, Registry/RegistryService.cxx,
23558           Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
23559           Registry/SALOME_Registry_Server.cxx,
23560           ResourcesManager/Makefile.am,
23561           ResourcesManager/ResourcesManager.cxx,
23562           ResourcesManager/ResourcesManager.hxx,
23563           ResourcesManager/ResourcesManager_Defs.hxx,
23564           ResourcesManager/SALOME_LoadRateManager.cxx,
23565           ResourcesManager/SALOME_LoadRateManager.hxx,
23566           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
23567           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
23568           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
23569           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
23570           ResourcesManager/SALOME_ResourcesManager.cxx,
23571           ResourcesManager/SALOME_ResourcesManager.hxx:
23572
23573         Update copyright information
23574
23575 2008-11-26 12:35  abd
23576
23577         * src/: NamingService/Makefile.am,
23578           NamingService/NamingService_WaitForServerReadiness.cxx,
23579           NamingService/NamingService_WaitForServerReadiness.hxx,
23580           NamingService/SALOME_NamingService.cxx,
23581           NamingService/SALOME_NamingService.hxx,
23582           NamingService/SALOME_NamingService.i,
23583           NamingService/SALOME_NamingServicePy.py,
23584           NamingService/SALOME_NamingService_defs.hxx,
23585           NamingService/ServiceUnreachable.cxx,
23586           NamingService/ServiceUnreachable.hxx,
23587           NamingService/Test/Makefile.am,
23588           NamingService/Test/NamingServiceTest.cxx,
23589           NamingService/Test/NamingServiceTest.hxx,
23590           NamingService/Test/TestNamingService.cxx,
23591           NamingService/Test/TestNamingService.py,
23592           Notification/CosNotifyShorthands.h, Notification/Makefile.am,
23593           Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
23594           Notification/NOTIFICATION_Consumer.cxx,
23595           Notification/NOTIFICATION_Consumer.hxx,
23596           Notification/NOTIFICATION_Supplier.cxx,
23597           Notification/NOTIFICATION_Supplier.hxx,
23598           Notification/SALOME_NOTIFICATION.hxx:
23599
23600         Update copyright information
23601
23602 2008-11-26 12:32  abd
23603
23604         * src/: ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
23605           ModuleGenerator/tests/AddComponent.idl,
23606           ModuleGenerator/tests/SubComponent.idl,
23607           ModuleGenerator/tests/Truc2Component.idl,
23608           ModuleGenerator/tests/TrucComponent.idl,
23609           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
23610           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
23611           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
23612           NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
23613           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
23614           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
23615           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
23616
23617         Update copyright information
23618
23619 2008-11-26 12:28  abd
23620
23621         * src/: Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
23622           Logger/SALOME_Logger_Server.hxx,
23623           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
23624           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
23625           Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
23626           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
23627           MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
23628           MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
23629           ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
23630           ModuleCatalog/SALOME_ModuleCatalog.hxx,
23631           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
23632           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
23633           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
23634           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
23635           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
23636           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
23637           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
23638           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
23639           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
23640           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
23641           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
23642           ModuleCatalog/SALOME_TestModuleCatalog.py,
23643           ModuleCatalog/TestModuleCatalog.py:
23644
23645         Update copyright information
23646
23647 2008-11-26 12:25  abd
23648
23649         * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
23650           Launcher/Launcher.cxx, Launcher/Launcher.hxx,
23651           Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
23652           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
23653           Launcher/SALOME_Launcher_Handler.cxx,
23654           Launcher/SALOME_Launcher_Handler.hxx,
23655           Launcher/SALOME_Launcher_Parser.cxx,
23656           Launcher/SALOME_Launcher_Parser.hxx,
23657           Launcher/SALOME_Launcher_defs.hxx,
23658           LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
23659           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
23660           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
23661           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
23662           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
23663           LifeCycleCORBA/TestContainerManager.cxx,
23664           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
23665           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
23666           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
23667           LifeCycleCORBA/Test/Makefile.am,
23668           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
23669           LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
23670           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
23671           LifeCycleCORBA_SWIG/Makefile.am,
23672           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
23673           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
23674           LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
23675           LifeCycleCORBA_SWIG/Test/Makefile.am,
23676           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py:
23677
23678         Update copyright information
23679
23680 2008-11-26 12:21  abd
23681
23682         * src/: HDFPersist/HDFOI.hxx, HDFPersist/HDFascii.cc,
23683           HDFPersist/HDFascii.hxx, HDFPersist/HDFattrClose.c,
23684           HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
23685           HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
23686           HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
23687           HDFPersist/HDFattribute.cc, HDFPersist/HDFattribute.hxx,
23688           HDFPersist/HDFcontainerObject.cc,
23689           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
23690           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
23691           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
23692           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
23693           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
23694           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
23695           HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
23696           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
23697           HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
23698           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
23699           HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
23700           HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
23701           HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
23702           HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
23703           HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
23704           HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
23705           HDFPersist/HDFinternalObject.cc,
23706           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
23707           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
23708           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
23709           HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
23710           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
23711           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
23712           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
23713           KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
23714           KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
23715           KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
23716           KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
23717           KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
23718           KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
23719           KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
23720           KERNEL_PY/salome_version.py:
23721
23722         Update copyright information
23723
23724 2008-11-26 12:13  abd
23725
23726         * src/: DSC/DSC_User/Datastream/Calcium/Calcium.c,
23727           DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
23728           DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
23729           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
23730           DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
23731           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
23732           DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
23733           DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
23734           DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
23735           DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
23736           DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
23737           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
23738           DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
23739           DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
23740           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
23741           DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
23742           DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
23743           DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
23744           DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
23745           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
23746           DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
23747           DSC/DSC_User/Datastream/Calcium/Makefile.am,
23748           DSC/DSC_User/Datastream/Calcium/calcium.h,
23749           DSC/DSC_User/Datastream/Calcium/calcium.hf,
23750           DSC/DSC_User/Datastream/Calcium/calciumE.h,
23751           DSC/DSC_User/Datastream/Calcium/calciumP.h,
23752           DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
23753           DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
23754           DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
23755           DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
23756           DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
23757           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
23758           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
23759           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
23760           DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
23761           DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
23762           DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
23763           DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
23764           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
23765           DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
23766           DSC/DSC_User/Datastream/Calcium/calciumf.c,
23767           DSC/DSC_User/Datastream/Calcium/fortoc.h,
23768           DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
23769           DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
23770           DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
23771           DSC/DSC_User/Datastream/Calcium/version.h,
23772           DSC/DSC_User/Datastream/Palm/Makefile.am,
23773           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
23774           DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
23775           DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
23776           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
23777           DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
23778           DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
23779           DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
23780           DSC/ParallelDSC/ParallelDSC_i.hxx, GenericObj/Makefile.am,
23781           GenericObj/SALOME_GenericObj_i.cc,
23782           GenericObj/SALOME_GenericObj_i.hh:
23783
23784         Update copyright information
23785
23786 2008-11-26 11:59  abd
23787
23788         * src/DSC/DSC_User/: DSC_Exception.hxx, base_port.cxx,
23789           base_port.hxx, port_factory.hxx, provides_port.cxx, Makefile.am,
23790           Superv_Component_i.cxx, Superv_Component_i.hxx,
23791           provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
23792           uses_port.hxx, Basic/Makefile.am, Basic/basic_port_factory.cxx,
23793           Basic/basic_port_factory.hxx, Basic/data_short_port_provides.cxx,
23794           Basic/data_short_port_provides.hxx,
23795           Basic/data_short_port_uses.cxx, Basic/data_short_port_uses.hxx,
23796           Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
23797           Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
23798           Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
23799           Datastream/DisplayPair.hxx, Datastream/FindKeyPredicate.hxx,
23800           Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
23801           Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
23802           Datastream/Makefile.am, Datastream/ProcessTimeIntervalTraits.hxx,
23803           Datastream/fake.cc, Datastream/testAdjacentFunctor.cxx,
23804           Datastream/testAdjacentPredicate.cxx:
23805
23806         Update copyright information
23807
23808 2008-11-26 11:54  abd
23809
23810         * src/: DF/DF_Application.cxx, DF/DF_Application.hxx,
23811           DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
23812           DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
23813           DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
23814           DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
23815           DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
23816           DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
23817           DSC/DSC_Basic/ConnectionManager_i.hxx,
23818           DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
23819           DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
23820           DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
23821           DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
23822           DSC/DSC_Basic/PortProperties_i.hxx,
23823           DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
23824           DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
23825           DSC/DSC_Python/dsccalcium.py:
23826
23827         Update copyright information
23828
23829 2008-11-26 11:50  abd
23830
23831         * src/Container/: Component_i.cxx, Container_i.cxx,
23832           Container_init_python.cxx, SALOME_ComponentPy.py,
23833           SALOME_Component_i.hxx, SALOME_Container.cxx,
23834           SALOME_Container.py, SALOME_ContainerManager.cxx,
23835           SALOME_ContainerManager.hxx, SALOME_ContainerPy.py,
23836           SALOME_Container_SignalsHandler.cxx, SALOME_Container_i.hxx,
23837           SALOME_FileRef_i.cxx, SALOME_FileTransfer_i.cxx,
23838           SALOME_FileTransfer_i.hxx, Salome_file_i.cxx, Salome_file_i.hxx,
23839           Container_init_python.hxx, Makefile.am, SALOME_Container.hxx,
23840           SALOME_FileRef_i.hxx, TestSalome_file.cxx:
23841
23842         Update copyright information
23843
23844 2008-11-26 11:47  abd
23845
23846         * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
23847           Communication/MatrixClient.hxx,
23848           Communication/MultiCommException.cxx,
23849           Communication/MultiCommException.hxx, Communication/Receiver.cxx,
23850           Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
23851           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
23852           Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
23853           Communication/SALOMEMultiComm.hxx,
23854           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
23855           Communication/SALOME_Communication.hxx,
23856           Communication/SALOME_Matrix_i.cxx,
23857           Communication/SALOME_Matrix_i.hxx,
23858           Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
23859           Communication/libSALOME_Comm.i, Communication_SWIG/Makefile.am,
23860           Communication_SWIG/libSALOME_Comm.i:
23861
23862         Update copyright information
23863
23864 2008-11-26 11:26  abd
23865
23866         * src/Basics/: BasicsGenericDestructor.cxx,
23867           BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
23868           Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
23869           Makefile.am, SALOME_Basics.hxx, Test/BasicMainTest.hxx,
23870           Test/Makefile.am:
23871
23872         Update copyright information
23873
23874 2008-11-26 11:21  abd
23875
23876         * salome_adm/unix/config_files/Makefile.am,
23877           salome_adm/unix/config_files/ac_cc_warnings.m4,
23878           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
23879           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
23880           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
23881           salome_adm/unix/config_files/ac_cxx_option.m4,
23882           salome_adm/unix/config_files/ac_cxx_template_options.m4,
23883           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
23884           salome_adm/unix/config_files/ac_cxx_warnings.m4,
23885           salome_adm/unix/config_files/ac_linker_options.m4,
23886           salome_adm/unix/config_files/acx_pthread.m4,
23887           salome_adm/unix/config_files/check_Kernel.m4,
23888           salome_adm/unix/config_files/check_Salome.m4,
23889           salome_adm/unix/config_files/check_boost.m4,
23890           salome_adm/unix/config_files/check_cas.m4,
23891           salome_adm/unix/config_files/check_corba.m4,
23892           salome_adm/unix/config_files/check_cppunit.m4,
23893           salome_adm/unix/config_files/check_f77.m4,
23894           salome_adm/unix/config_files/check_hdf5.m4,
23895           salome_adm/unix/config_files/check_htmlgen.m4,
23896           salome_adm/unix/config_files/check_java.m4,
23897           salome_adm/unix/config_files/check_lam.m4,
23898           salome_adm/unix/config_files/check_libxml.m4,
23899           salome_adm/unix/config_files/check_local.m4,
23900           salome_adm/unix/config_files/check_lsf.m4,
23901           salome_adm/unix/config_files/check_mpi.m4,
23902           salome_adm/unix/config_files/check_mpich.m4,
23903           salome_adm/unix/config_files/check_omniorb.m4,
23904           salome_adm/unix/config_files/check_openmpi.m4,
23905           salome_adm/unix/config_files/check_openpbs.m4,
23906           salome_adm/unix/config_files/check_paco++.m4,
23907           salome_adm/unix/config_files/check_sockets.m4,
23908           salome_adm/unix/config_files/check_swig.m4,
23909           salome_adm/unix/config_files/check_withihm.m4,
23910           salome_adm/unix/config_files/enable_pthreads.m4,
23911           salome_adm/unix/config_files/production.m4,
23912           salome_adm/unix/config_files/pyembed.m4,
23913           salome_adm/unix/config_files/python.m4,
23914           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
23915           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
23916           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
23917           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
23918           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
23919           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
23920           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
23921           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
23922           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
23923           src/Makefile.am:
23924
23925         Update copyright information
23926
23927 2008-11-26 11:03  abd
23928
23929         * salome_adm/unix/: Doxyfile, F77config.h.in, Makefile.am,
23930           SALOMEconfig.ref.in, make_common_starter.am, DEPRECATED/Doxyfile,
23931           DEPRECATED/F77config.h.in, DEPRECATED/config.h.in,
23932           DEPRECATED/envScript.in, DEPRECATED/make_commence.in,
23933           DEPRECATED/make_conclude.in, DEPRECATED/make_module.in,
23934           DEPRECATED/make_omniorb.in:
23935
23936         Update copyright information
23937
23938 2008-11-26 10:58  abd
23939
23940         * idl/Calcium_Ports.idl, idl/DSC_Engines.idl, idl/Logger.idl,
23941           idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
23942           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
23943           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
23944           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
23945           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
23946           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Ports.idl,
23947           idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
23948           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
23949           idl/SALOME_TestMPIComponent.idl,
23950           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
23951           idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
23952           salome_adm/Makefile.am:
23953
23954         Update copyright information
23955
23956 2008-11-26 10:54  abd
23957
23958         * doc/: Makefile.am, txt2html.sh,
23959           configuration_examples/example_prerequis.sh, salome/Makefile.am,
23960           salome/tui/Makefile.am, salome/tui/pythfilter.py:
23961
23962         Update copyright information
23963
23964 2008-11-26 10:53  abd
23965
23966         * bin/: Makefile.am, NSparam.py, addToKillList.py, appli_clean.sh,
23967           appli_gen.py, appli_install.sh, createAppli.sh, envSalome.py,
23968           killSalome.py, killSalomeWithPort.py, launchConfigureParser.py,
23969           launchSalome.py, nameserver.py, orbmodule.py, runIDLparser.in,
23970           runNS.py, runNS.sh, runSalome, runSalome.csh, runSalome.ksh,
23971           runSalome.py, salomeConsole.py, salome_session.py,
23972           salome_utils.py, server.py, setenv.py, showNS.py,
23973           shutdownSalome.py, virtual_salome.py, waitContainers.py,
23974           waitNS.py, waitNS.sh:
23975
23976         Update copyrights information
23977
23978 2008-11-26 10:34  abd
23979
23980         * KERNEL_version.h.in, Makefile.am, build_configure,
23981           clean_configure, configure.ac, DEPRECATED/Makefile.in,
23982           DEPRECATED/configure.in.base, DEPRECATED/make_config.in:
23983
23984         Update copyrights information
23985
23986 2008-11-26 08:50  rnv
23987
23988         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
23989
23990         Fix bug with save/open study.
23991
23992 2008-11-25 14:53  rnv
23993
23994         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
23995
23996         Dump Python extension
23997
23998 2008-11-25 10:53  adam
23999
24000         * salome_adm/cmake_files/am2cmake.py:
24001
24002         [E.A.] GEOM compatibility
24003
24004 2008-11-25 10:50  adam
24005
24006         * salome_adm/cmake_files/am2cmake.py:
24007
24008         [E.A.] Copy the swig'ed foo.dll into foo_d.pyd in order that python
24009         can import them on windows. It works only for python in debug mode.
24010         It will be improved in the future.
24011
24012 2008-11-25 10:31  dmv
24013
24014         * idl/Logger.idl, src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
24015           src/Logger/SALOME_Logger_Server.hxx,
24016           src/Logger/SALOME_Logger_Server_main.cxx:
24017
24018         IPAL20326 SALOME_Logger_Server is not killed
24019
24020 2008-11-24 13:39  ouv
24021
24022         * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
24023           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
24024           src/SALOMEDS/SALOMEDS_Study_i.cxx,
24025           src/SALOMEDS/SALOMEDS_Study_i.hxx,
24026           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
24027           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
24028           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
24029           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
24030
24031         Dump Python extension
24032
24033 2008-11-20 16:55  adam
24034
24035         * salome_adm/cmake_files/am2cmake.py:
24036
24037         [E.A.] For other modules thna KERNEL, we need to replace the  by /
24038         to compile correctly the idl files at install stage
24039
24040 2008-11-20 16:51  adam
24041
24042         * salome_adm/cmake_files/am2cmake.py:
24043
24044         [E.A.] Initialize correctly SUBDIRS otherwise for the particuliar
24045         case where SUBDIRS is declared in an enclosed if, the cmake compilation
24046         fails ...
24047
24048 2008-11-20 16:43  adam
24049
24050         * salome_adm/cmake_files/am2cmake.py:
24051
24052         [E.A.] Install the adm_local/cmake_files
24053
24054 2008-11-20 16:41  adam
24055
24056         * salome_adm/cmake_files/am2cmake.py:
24057
24058         [E.A.] Use the NOGDI compilation flags on windows for 3 libraries
24059
24060 2008-11-19 18:15  rnv
24061
24062         * src/SALOMEDSImpl/: SALOMEDSImpl_GenericVariable.cxx,
24063           SALOMEDSImpl_GenericVariable.hxx,
24064           SALOMEDSImpl_ScalarVariable.cxx, SALOMEDSImpl_ScalarVariable.hxx,
24065           SALOMEDSImpl_Study.cxx:
24066
24067         Now study declared as being modifyed after change variables.
24068
24069 2008-11-18 11:01  vsr
24070
24071         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
24072
24073         Fix problem with notifd process killing on SALOME session shutdowning.
24074
24075 2008-11-17 16:34  rnv
24076
24077         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
24078           src/SALOMEDS/SALOMEDS_Study.hxx,
24079           src/SALOMEDS/SALOMEDS_Study_i.cxx,
24080           src/SALOMEDS/SALOMEDS_Study_i.hxx,
24081           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
24082           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
24083           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
24084
24085         ParseVariables() method added in the Study.
24086
24087 2008-11-17 15:27  vsr
24088
24089         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
24090
24091         Fix problem with notifd process killing on SALOME session shutdowning.
24092
24093 2008-11-17 13:11  abd
24094
24095         * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
24096
24097         BUG 0020048
24098         Problem with compilation on Win32 Platform.
24099         Removing of invalid import of symbols from executable.
24100
24101 2008-11-17 12:57  abd
24102
24103         * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
24104
24105         BUG 0020048
24106         Problem with compilation on Win32 Platform.
24107         Removing of invalid import of symbols from executable.
24108
24109 2008-11-14 12:43  vsr
24110
24111         * src/Logger/Makefile.am:
24112
24113         0020047: [win32] Logger/Makefile.am patch
24114
24115 2008-11-14 12:39  vsr
24116
24117         * src/ResourcesManager/Makefile.am:
24118
24119         0020046: [win32] ResourcesManager/Makefile.am patch
24120
24121 2008-11-14 09:10  rnv
24122
24123         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Tool.cxx,
24124           SALOMEDSImpl_Tool.hxx:
24125
24126         Dump Python extension.
24127
24128 2008-11-13 14:05  ouv
24129
24130         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
24131           SALOMEDSImpl_Study.hxx:
24132
24133         Dump Python extension
24134
24135 2008-11-12 18:01  adam
24136
24137         * salome_adm/cmake_files/FindPYTHON.cmake:
24138
24139         Use PYTHON_EXECUTABLE variable instead of python ...
24140
24141 2008-11-12 17:19  ouv
24142
24143         * src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
24144           src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
24145           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
24146           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
24147           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
24148           src/SALOMEDS/SALOMEDS_Study_i.cxx,
24149           src/SALOMEDS/SALOMEDS_Study_i.hxx,
24150           src/SALOMEDSClient/SALOMEDSClient_Study.hxx, idl/SALOMEDS.idl:
24151
24152         Dump Python extension
24153
24154 2008-11-07 16:48  rnv
24155
24156         * src/KERNEL_PY/salome_notebook.py:
24157
24158         isVariable() method added in the notebook.
24159
24160 2008-11-06 11:26  prascle
24161
24162         * src/: Launcher/Launcher.cxx,
24163           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24164           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
24165           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
24166           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
24167
24168         merge from tag mergeto_V4_1_0_maintainance_20081106
24169
24170 2008-11-06 07:00  ptv
24171
24172         * configure.ac:
24173
24174         add runIDLparser, bacause in current version bin directory has runIDLparser.in file
24175
24176 2008-11-05 14:14  rnv
24177
24178         * src/: SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
24179           SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
24180           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
24181           SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
24182           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
24183           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
24184           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
24185           SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study_i.cxx:
24186
24187         1. Dump notebook variables in the Study script.
24188
24189         2. Use a std::vector for storage notebook vasiables instead of a std::map.
24190
24191 2008-11-04 15:55  ribes
24192
24193         * src/: Launcher/Launcher.cxx,
24194           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24195           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
24196           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
24197           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
24198
24199         - Adding to CatalogResources to new fields:
24200         batchQueue   -> specify the batch queue
24201         userCommands -> adds these commands to the Salomé generated batch script
24202
24203 2008-11-01 13:51  abd
24204
24205         * src/Launcher/SALOME_Launcher.hxx:
24206
24207         Fix compilation problem on Win32 platform.
24208         fix method semantics: const CORBA::Long -> CORBA::Long
24209
24210 2008-10-31 15:05  ribes
24211
24212         * Makefile.am, configure.ac, bin/appli_clean.sh,
24213           idl/SALOME_ContainerManager.idl, resources/Makefile.am,
24214           src/Makefile.am, src/Basics/Basics_DirUtils.cxx,
24215           src/Basics/Basics_Utils.cxx,
24216           src/Container/SALOME_ContainerManager.cxx,
24217           src/Container/Salome_file_i.hxx,
24218           src/Container/TestSalome_file.cxx, src/DF/testDF.cxx,
24219           src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
24220           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
24221           src/Launcher/SALOME_Launcher.cxx,
24222           src/Launcher/SALOME_Launcher.hxx,
24223           src/Launcher/SALOME_Launcher_Handler.cxx,
24224           src/Launcher/SALOME_Launcher_Handler.hxx,
24225           src/Launcher/SALOME_Launcher_Parser.cxx,
24226           src/Launcher/SALOME_Launcher_Parser.hxx,
24227           src/Logger/SALOME_Logger_Server.hxx,
24228           src/Logger/SALOME_Logger_Server_main.cxx,
24229           src/MPIContainer/MPIContainer_i.cxx,
24230           src/ResourcesManager/Makefile.am,
24231           src/ResourcesManager/ResourcesManager.cxx,
24232           src/ResourcesManager/ResourcesManager.hxx,
24233           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24234           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
24235           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
24236           src/ResourcesManager/SALOME_ResourcesManager.cxx,
24237           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
24238           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
24239           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
24240           src/TestMPIContainer/TestMPIContainer.cxx:
24241
24242         - mergefrom_BR_For40_DSC_10081031
24243
24244 2008-10-31 14:34  ribes
24245
24246         * configure.ac, bin/launchConfigureParser.py, bin/runSalome.py:
24247
24248         [no log message]
24249
24250 2008-10-31 14:32  ribes
24251
24252         * src/: Container/SALOME_ContainerManager.cxx,
24253           Launcher/Launcher.cxx,
24254           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24255           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
24256           ResourcesManager/SALOME_ResourcesManager.cxx:
24257
24258         - Adding support gcc-4.3.2
24259         - Bug-- in ContainerManager
24260         - Adding support for prun machines
24261
24262 2008-10-30 11:09  vsr
24263
24264         * src/TestContainer/Makefile.am:
24265
24266         Fix problem with 'make distcheck' step
24267
24268 2008-10-30 10:51  abd
24269
24270         * bin/runSalome.py:
24271
24272         BUG 0020024: a --gdb-session option to runSalome ...
24273         possibility for execution of xterm with gdb during salome starting.
24274
24275         fix error during merging
24276
24277 2008-10-30 10:21  abd
24278
24279         * bin/: launchConfigureParser.py, runSalome.py:
24280
24281         BUG 0020024: a --gdb-session option to runSalome ...
24282         possibility for execution of xterm with gdb during salome starting.
24283
24284 2008-10-29 15:45  abd
24285
24286         * bin/: launchConfigureParser.py, runSalome.py:
24287
24288         BUG 0020024: a --gdb-session option to runSalome ...
24289         possibility for execution of xterm with gdb during salome starting.
24290
24291 2008-10-29 11:33  secher
24292
24293         * src/: Container/SALOME_ContainerManager.cxx,
24294           MPIContainer/MPIContainer_i.cxx,
24295           TestMPIContainer/TestMPIContainer.cxx:
24296
24297         take account of Kernel_Utils
24298
24299 2008-10-29 10:28  adam
24300
24301         * salome_adm/cmake_files/am2cmake.py:
24302
24303         [E.A.] Improve the way that multilines are detected. It was
24304         \
24305         , now it is \s*
24306          to fix a Makefile.am with a line with
24307
24308          i.e. 0 or more space after the
24309
24310 2008-10-29 10:24  adam
24311
24312         * salome_adm/cmake_files/: FindPYTHON.cmake, am2cmake.py:
24313
24314         [E.A.] Fix the python2.5 problem only.
24315
24316 2008-10-29 10:08  abd
24317
24318         * src/: Container/Makefile.am, LifeCycleCORBA/Makefile.am,
24319           LifeCycleCORBA/Test/Makefile.am, SALOMEDSImpl/Makefile.am,
24320           SALOMEDSImpl/Test/Makefile.am, UnitTests/Makefile.am:
24321
24322         Fix linkage problem under GCC 4:
24323         addition of libSalomeHDFPersist.so
24324
24325 2008-10-29 10:05  abd
24326
24327         * configure.ac, salome_adm/unix/make_common_starter.am:
24328
24329         BUG 0020023: A contribution to compile KERNEL with cmake
24330         This integration adds support of cross-platform cmake compilation for KERNEL module.
24331         WARNING. current version supports Python 2.5 only
24332
24333 2008-10-29 09:52  mnt
24334
24335         * configure.ac:
24336
24337         Changing version to 5.1.0
24338
24339 2008-10-29 09:12  mnt
24340
24341         * configure.ac:
24342
24343         Changing version to 4.1.4
24344
24345 2008-10-28 15:18  abd
24346
24347         * build_cmake, salome_adm/Makefile.am,
24348           salome_adm/cmake_files/FindBOOST.cmake,
24349           salome_adm/cmake_files/FindCPPUNIT.cmake,
24350           salome_adm/cmake_files/FindHDF5.cmake,
24351           salome_adm/cmake_files/FindKERNEL.cmake,
24352           salome_adm/cmake_files/FindLIBXML2.cmake,
24353           salome_adm/cmake_files/FindOMNIORB.cmake,
24354           salome_adm/cmake_files/FindPLATFORM.cmake,
24355           salome_adm/cmake_files/FindPTHREADS.cmake,
24356           salome_adm/cmake_files/FindPYTHON.cmake,
24357           salome_adm/cmake_files/FindSWIG.cmake,
24358           salome_adm/cmake_files/Makefile.am,
24359           salome_adm/cmake_files/am2cmake.py,
24360           salome_adm/cmake_files/install_python_from_idl.cmake:
24361
24362         BUG 0020023: A contribution to compile KERNEL with cmake
24363         This integration adds support of cross-platform cmake compilation for KERNEL module.
24364         WARNING. current version supports Python 2.5 only
24365
24366 2008-10-28 12:27  rnv
24367
24368         * src/: SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
24369           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
24370           SALOMEDSClient/SALOMEDSClient_Study.hxx:
24371
24372         Start Dump Python extension task.
24373
24374 2008-10-28 12:24  rnv
24375
24376         * src/SALOMEDSImpl/Makefile.am,
24377           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
24378           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
24379           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/salome_notebook.py,
24380           idl/SALOMEDS.idl:
24381
24382         Start Dump Python extension task.
24383
24384 2008-10-28 12:20  rnv
24385
24386         * src/SALOMEDSImpl/: SALOMEDSImpl_GenericVariable.cxx,
24387           SALOMEDSImpl_GenericVariable.hxx,
24388           SALOMEDSImpl_ScalarVariable.cxx, SALOMEDSImpl_ScalarVariable.hxx,
24389           SALOMEDSImpl_Study.cxx:
24390
24391         Start Dump Python extension task.
24392
24393 2008-10-24 15:16  prascle
24394
24395         * configure.ac, bin/Makefile.am:
24396
24397         PR: problem in merge configure.ac and make distcheck
24398
24399 2008-10-24 11:20  prascle
24400
24401         * bin/Makefile.am:
24402
24403         PR: repair make distcheck
24404
24405 2008-10-24 08:01  prascle
24406
24407         * Makefile.am, configure.ac, bin/appli_clean.sh,
24408           idl/SALOME_ContainerManager.idl, resources/Makefile.am,
24409           src/Makefile.am, src/Launcher/BatchTest.cxx,
24410           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
24411           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
24412           src/Launcher/SALOME_Launcher.hxx,
24413           src/Launcher/SALOME_Launcher_Handler.cxx,
24414           src/Launcher/SALOME_Launcher_Handler.hxx,
24415           src/Launcher/SALOME_Launcher_Parser.cxx,
24416           src/Launcher/SALOME_Launcher_Parser.hxx,
24417           src/ResourcesManager/Makefile.am,
24418           src/ResourcesManager/ResourcesManager.cxx,
24419           src/ResourcesManager/ResourcesManager.hxx,
24420           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24421           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
24422           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
24423           src/ResourcesManager/SALOME_ResourcesManager.cxx:
24424
24425         merge from branch BR41_BS tag after_merge_V4_1_0_maintainance_20080908
24426
24427 2008-10-22 15:23  ribes
24428
24429         * bin/Makefile.am, bin/NSparam.py, bin/addToKillList.py,
24430           bin/killSalome.py, bin/killSalomeWithPort.py, bin/runSalome.py,
24431           bin/salome_session.py, bin/salome_utilities.py,
24432           bin/salome_utils.py, bin/virtual_salome.py,
24433           salome_adm/unix/Makefile.am, src/Makefile.am,
24434           src/Basics/BasicsGenericDestructor.cxx,
24435           src/Basics/BasicsGenericDestructor.hxx,
24436           src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
24437           src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
24438           src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
24439           src/Communication/SALOMEMultiComm.cxx,
24440           src/Communication/SALOME_Comm_i.cxx,
24441           src/Communication/SALOME_Comm_i.hxx,
24442           src/Communication/SALOME_Communication.hxx,
24443           src/Communication_SWIG/libSALOME_Comm.i,
24444           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
24445           src/Container/Container_init_python.cxx,
24446           src/Container/Container_init_python.hxx,
24447           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
24448           src/Container/SALOME_Container.cxx,
24449           src/Container/SALOME_Container.hxx,
24450           src/Container/SALOME_Container.py,
24451           src/Container/SALOME_ContainerManager.cxx,
24452           src/Container/SALOME_ContainerPy.py,
24453           src/Container/SALOME_Container_i.hxx,
24454           src/Container/SALOME_FileRef_i.cxx,
24455           src/Container/Salome_file_i.cxx, src/DF/DF_definitions.hxx,
24456           src/DF/testDF.cxx, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
24457           src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
24458           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_User/DSC_Exception.hxx,
24459           src/DSC/DSC_User/Superv_Component_i.cxx,
24460           src/DSC/DSC_User/Superv_Component_i.hxx,
24461           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
24462           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
24463           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
24464           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
24465           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
24466           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
24467           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
24468           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
24469           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
24470           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
24471           src/GenericObj/SALOME_GenericObj_i.cc,
24472           src/GenericObj/SALOME_GenericObj_i.hh,
24473           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
24474           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.hxx,
24475           src/HDFPersist/HDFcontainerObject.hxx,
24476           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
24477           src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFexception.hxx,
24478           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
24479           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
24480           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFinternalObject.cc,
24481           src/HDFPersist/HDFinternalObject.hxx,
24482           src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
24483           src/KERNEL_PY/batchmode_salome.py, src/Launcher/BatchTest.cxx,
24484           src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
24485           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
24486           src/Launcher/SALOME_Launcher.cxx,
24487           src/Launcher/SALOME_Launcher.hxx,
24488           src/Launcher/SALOME_LauncherServer.cxx,
24489           src/Launcher/SALOME_Launcher_defs.hxx,
24490           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
24491           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
24492           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
24493           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
24494           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
24495           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
24496           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
24497           src/Logger/SALOME_Logger_Server.cxx,
24498           src/Logger/SALOME_Logger_Server.hxx,
24499           src/Logger/SALOME_Logger_Server_main.cxx,
24500           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
24501           src/MPIContainer/MPIContainer_i.cxx,
24502           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
24503           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
24504           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
24505           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
24506           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
24507           src/ModuleGenerator/IDLparser.py,
24508           src/ModuleGenerator/testIDLparser.in,
24509           src/ModuleGenerator/tests/AddComponent.idl,
24510           src/ModuleGenerator/tests/SubComponent.idl,
24511           src/ModuleGenerator/tests/test1.sh,
24512           src/ModuleGenerator/tests/test1b.sh,
24513           src/ModuleGenerator/tests/test2.sh,
24514           src/ModuleGenerator/tests/test3.sh,
24515           src/ModuleGenerator/tests/test4.sh,
24516           src/ModuleGenerator/tests/test5.sh,
24517           src/NOTIFICATION_SWIG/NOTIFICATION.i,
24518           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
24519           src/NamingService/Makefile.am,
24520           src/NamingService/NamingService_WaitForServerReadiness.cxx,
24521           src/NamingService/SALOME_NamingService.hxx,
24522           src/NamingService/SALOME_NamingService_defs.hxx,
24523           src/NamingService/ServiceUnreachable.hxx,
24524           src/Notification/SALOME_NOTIFICATION.hxx,
24525           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
24526           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
24527           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
24528           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
24529           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
24530           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
24531           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
24532           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
24533           src/Registry/RegistryConnexion.cxx,
24534           src/Registry/RegistryService.cxx,
24535           src/Registry/RegistryService.hxx,
24536           src/Registry/SALOME_Registry.hxx,
24537           src/Registry/SALOME_Registry_Server.cxx,
24538           src/ResourcesManager/Makefile.am,
24539           src/ResourcesManager/ResourcesManager.cxx,
24540           src/ResourcesManager/ResourcesManager.hxx,
24541           src/ResourcesManager/ResourcesManager_Defs.hxx,
24542           src/ResourcesManager/SALOME_LoadRateManager.hxx,
24543           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
24544           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
24545           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
24546           src/ResourcesManager/SALOME_ResourcesManager.cxx,
24547           src/ResourcesManager/SALOME_ResourcesManager.hxx,
24548           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
24549           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
24550           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
24551           src/SALOMEDS/SALOMEDS_Defines.hxx,
24552           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
24553           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
24554           src/SALOMEDS/SALOMEDS_SObject.cxx,
24555           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
24556           src/SALOMEDS/SALOMEDS_Server.cxx,
24557           src/SALOMEDS/SALOMEDS_Study.cxx,
24558           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
24559           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
24560           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
24561           src/SALOMEDS/SALOMEDS_Study_i.cxx,
24562           src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDS/Test/Makefile.am,
24563           src/SALOMEDS/Test/TestSALOMEDS.cxx, src/SALOMEDSImpl/Makefile.am,
24564           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
24565           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
24566           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
24567           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
24568           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
24569           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
24570           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
24571           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
24572           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
24573           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
24574           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
24575           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
24576           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
24577           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
24578           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
24579           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
24580           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
24581           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
24582           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
24583           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
24584           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
24585           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
24586           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
24587           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
24588           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
24589           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
24590           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
24591           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
24592           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
24593           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
24594           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
24595           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
24596           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
24597           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
24598           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
24599           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
24600           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
24601           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
24602           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
24603           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
24604           src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
24605           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
24606           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
24607           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
24608           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
24609           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
24610           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
24611           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
24612           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
24613           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
24614           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
24615           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
24616           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
24617           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
24618           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
24619           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
24620           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
24621           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
24622           src/SALOMELocalTrace/BaseTraceCollector.cxx,
24623           src/SALOMELocalTrace/FileTraceCollector.cxx,
24624           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
24625           src/SALOMELocalTrace/LocalTraceCollector.cxx,
24626           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
24627           src/SALOMELocalTrace/utilities.h,
24628           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
24629           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
24630           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
24631           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
24632           src/TestContainer/Makefile.am,
24633           src/TestContainer/SALOME_TestComponent_i.cxx,
24634           src/TestContainer/TestContainer.cxx,
24635           src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/Makefile.am,
24636           src/Utils/OpUtil.hxx, src/Utils/SALOME_Utils.hxx,
24637           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
24638           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
24639           src/Utils/Utils_SALOME_Exception.cxx,
24640           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
24641           src/Utils/Utils_Timer.hxx, src/win32pm/setup.py,
24642           src/win32pm/win32pm.c:
24643
24644         - merge + bugs for gcc-4.3.2
24645
24646 2008-10-15 15:15  vsr
24647
24648         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
24649           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
24650           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
24651           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
24652           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
24653           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
24654           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
24655           SALOMELocalTrace/LocalTraceBufferPool.cxx, DF/testDF.cxx:
24656
24657         Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
24658
24659 2008-10-15 15:10  vsr
24660
24661         * src/: Container/Salome_file_i.hxx, Container/TestSalome_file.cxx,
24662           Logger/SALOME_Logger_Server.hxx,
24663           Logger/SALOME_Logger_Server_main.cxx:
24664
24665         Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
24666
24667 2008-10-15 15:04  vsr
24668
24669         * src/Basics/: Basics_DirUtils.cxx, Basics_Utils.cxx:
24670
24671         Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
24672
24673 2008-10-15 12:41  vsr
24674
24675         * src/Utils/Utils_SALOME_Exception.hxx:
24676
24677         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24678
24679 2008-10-15 12:24  vsr
24680
24681         * src/TestContainer/: TestContainer.cxx, TestLogger.cxx:
24682
24683         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24684
24685 2008-10-15 12:19  vsr
24686
24687         * src/TestContainer/: SALOME_TestComponent.hxx,
24688           SALOME_TestComponent_i.hxx:
24689
24690         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24691
24692 2008-10-15 12:07  vsr
24693
24694         * src/SALOMEDSClient/Makefile.am:
24695
24696         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24697
24698 2008-10-15 11:56  vsr
24699
24700         * src/ResourcesManager/ResourcesManager.cxx:
24701
24702         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24703
24704 2008-10-15 11:52  vsr
24705
24706         * src/NOTIFICATION_SWIG/Makefile.am:
24707
24708         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24709
24710 2008-10-15 11:46  vsr
24711
24712         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
24713           SALOME_ModuleCatalog_Client.cxx, SALOME_ModuleCatalog_impl.cxx:
24714
24715         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24716
24717 2008-10-15 11:26  vsr
24718
24719         * src/Logger/: Makefile.am, SALOME_Logger_Server.cxx,
24720           SALOME_Logger_Server_main.cxx:
24721
24722         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24723
24724 2008-10-15 11:11  vsr
24725
24726         * src/: LifeCycleCORBA/TestContainerManager.cxx,
24727           Basics/Basics_DirUtils.cxx, Basics/Basics_DirUtils.hxx:
24728
24729         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24730
24731 2008-10-15 09:32  vsr
24732
24733         * src/Launcher/: Launcher.cxx, Makefile.am:
24734
24735         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24736
24737 2008-10-15 09:27  vsr
24738
24739         * src/HDFPersist/Makefile.am:
24740
24741         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24742
24743 2008-10-15 09:23  vsr
24744
24745         * src/GenericObj/Makefile.am:
24746
24747         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24748
24749 2008-10-15 09:19  vsr
24750
24751         * src/DF/testDF.cxx:
24752
24753         Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
24754
24755 2008-10-10 12:14  abd
24756
24757         * src/: TestContainer/Makefile.am,
24758           TestContainer/SALOME_TestComponent_i.cxx,
24759           TestContainer/TestContainer.cxx,
24760           TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.am,
24761           Utils/OpUtil.cxx, Utils/OpUtil.hxx, Utils/SALOME_Utils.hxx,
24762           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
24763           Utils/Utils_Mutex.cxx, Utils/Utils_SALOME_Exception.cxx,
24764           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx,
24765           Utils/Utils_Timer.hxx:
24766
24767         Merging from V4_1_0_maintainance for porting on Win32 Platform
24768
24769 2008-10-10 12:11  abd
24770
24771         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
24772           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
24773           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
24774           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
24775           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
24776           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
24777           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
24778           SALOMELocalTrace/BaseTraceCollector.cxx,
24779           SALOMELocalTrace/FileTraceCollector.cxx,
24780           SALOMELocalTrace/LocalTraceBufferPool.cxx,
24781           SALOMELocalTrace/LocalTraceCollector.cxx,
24782           SALOMELocalTrace/SALOME_LocalTrace.hxx,
24783           SALOMETraceCollector/SALOMETraceCollector.cxx,
24784           SALOMETraceCollector/SALOMETraceCollector.hxx,
24785           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
24786           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx:
24787
24788         Merging from V4_1_0_maintainance for porting on Win32 Platform
24789
24790 2008-10-10 12:07  abd
24791
24792         * src/: Registry/RegistryConnexion.cxx,
24793           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
24794           Registry/SALOME_Registry.hxx,
24795           Registry/SALOME_Registry_Server.cxx,
24796           ResourcesManager/Makefile.am,
24797           ResourcesManager/ResourcesManager.cxx,
24798           ResourcesManager/SALOME_ResourcesManager.cxx,
24799           SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cxx,
24800           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
24801           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
24802           SALOMEDS/SALOMEDS_Defines.hxx,
24803           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
24804           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
24805           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
24806           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
24807           SALOMEDS/SALOMEDS_StudyManager.cxx,
24808           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
24809           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
24810           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
24811           SALOMEDS/Test/Makefile.am, SALOMEDS/Test/TestSALOMEDS.cxx:
24812
24813         Merging from V4_1_0_maintainance for porting on Win32 Platform
24814
24815 2008-10-10 11:59  abd
24816
24817         * src/: NamingService/Makefile.am,
24818           NamingService/NamingService_WaitForServerReadiness.cxx,
24819           NamingService/SALOME_NamingService.hxx,
24820           NamingService/SALOME_NamingService_defs.hxx,
24821           NamingService/ServiceUnreachable.hxx,
24822           Notification/SALOME_NOTIFICATION.hxx,
24823           ParallelContainer/SALOME_ParallelComponent_i.cxx,
24824           ParallelContainer/SALOME_ParallelComponent_i.hxx,
24825           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
24826           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
24827           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
24828           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
24829           ParallelContainer/SALOME_ParallelContainer_i.cxx,
24830           ParallelContainer/SALOME_ParallelContainer_i.hxx:
24831
24832         Merging from V4_1_0_maintainance for porting on Win32 Platform
24833
24834 2008-10-10 11:56  abd
24835
24836         * src/: LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
24837           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
24838           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
24839           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
24840           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
24841           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
24842           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
24843           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
24844           Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx,
24845           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
24846           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
24847           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
24848           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
24849           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
24850
24851         Merging from V4_1_0_maintainance for porting on Win32 Platform
24852
24853 2008-10-10 11:53  abd
24854
24855         * src/: DSC/DSC_User/Basic/basic_port_factory.cxx,
24856           DSC/DSC_User/Basic/basic_port_factory.hxx,
24857           DSC/DSC_User/Datastream/DataIdFilter.hxx,
24858           DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
24859           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
24860           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
24861           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
24862           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
24863           DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
24864           GenericObj/SALOME_GenericObj_i.cc,
24865           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFascii.cc,
24866           HDFPersist/HDFconvert.cc, HDFPersist/HDFconvert.hxx,
24867           HDFPersist/HDFfile.cc, HDFPersist/HDFinternalObject.cc,
24868           Launcher/Launcher.cxx, Launcher/Makefile.am:
24869
24870         Merging from V4_1_0_maintainance for porting on Win32 Platform
24871
24872 2008-10-10 11:49  abd
24873
24874         * src/: Communication/SALOMEMultiComm.cxx,
24875           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
24876           Communication/SALOME_Communication.hxx,
24877           Container/Component_i.cxx, Container/Container_i.cxx,
24878           Container/Container_init_python.cxx,
24879           Container/Container_init_python.hxx, Container/Makefile.am,
24880           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
24881           Container/SALOME_Container.hxx,
24882           Container/SALOME_ContainerManager.cxx,
24883           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
24884           Container/Salome_file_i.cxx, DF/DF_definitions.hxx,
24885           DF/testDF.cxx, DSC/DSC_Basic/DSC_Basic.hxx,
24886           DSC/DSC_User/DSC_Exception.hxx,
24887           DSC/DSC_User/Superv_Component_i.cxx,
24888           DSC/DSC_User/Superv_Component_i.hxx:
24889
24890         Merging from V4_1_0_maintainance for porting on Win32 Platform
24891
24892 2008-10-10 11:40  abd
24893
24894         * src/Basics/: BasicsGenericDestructor.cxx,
24895           BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
24896           Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
24897           Makefile.am, SALOME_Basics.hxx:
24898
24899         Merging from V4_1_0_maintainance for porting on Win32 Platform
24900
24901 2008-10-10 11:14  abd
24902
24903         * src/Basics/Basics_DirUtils.cxx:
24904
24905         Fix win32 compilation problem
24906
24907 2008-10-09 19:32  caremoli
24908
24909         * src/Container/: Container_i.cxx, SALOME_Container.py,
24910           SALOME_ContainerPy.py:
24911
24912         CCAR: remove ambiguous prints and catch exceptions on destroy components
24913
24914 2008-10-09 12:43  abd
24915
24916         * src/Container/SALOME_ContainerManager.cxx:
24917
24918         Remove temporary directory if it becomes empty after deleting of tmp script file
24919
24920 2008-10-09 12:39  abd
24921
24922         * src/Basics/: Basics_DirUtils.cxx, Basics_DirUtils.hxx:
24923
24924         Implementations of common functions in Kernel_Utils namespace:
24925         -GetDirByPath: parse in path string a valid directory name
24926         -IsEmptyDir: detect of empty directory status
24927
24928 2008-10-08 17:19  prascle
24929
24930         * src/Container/SALOME_ContainerManager.cxx:
24931
24932         PR: This one must no be used very often...
24933
24934 2008-10-08 17:13  prascle
24935
24936         * src/Basics/Basics_DirUtils.cxx:
24937
24938         PR: debug from A. BORODIN
24939
24940 2008-10-07 20:08  caremoli
24941
24942         * src/: DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
24943           NamingService/SALOME_NamingService_defs.hxx:
24944
24945         CCAR: small bugs after big changes in KERNEL
24946
24947 2008-10-07 13:26  abd
24948
24949         * src/: Container/Component_i.cxx, HDFPersist/HDFinternalObject.cc,
24950           Launcher/Launcher.cxx, ResourcesManager/ResourcesManager.cxx:
24951
24952         Fix compilation errors on Win32 platform
24953
24954 2008-10-07 13:22  abd
24955
24956         * src/: Basics/Basics_DirUtils.cxx,
24957           Communication/SALOMEMultiComm.cxx:
24958
24959         Fix compilation errors on Win32 platform
24960
24961 2008-10-06 10:08  prascle
24962
24963         * src/Makefile.am:
24964
24965         PR: Needed by Bernard Secher. to check if any problem detected.
24966
24967 2008-10-03 14:38  vsv
24968
24969         * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
24970
24971         Merge with VISU 2008
24972
24973 2008-10-03 12:42  abd
24974
24975         * src/: Utils/Makefile.am, Utils/OpUtil.hxx,
24976           Utils/SALOME_Utils.hxx, Utils/Utils_ExceptHandlers.hxx,
24977           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
24978           Utils/Utils_Mutex.cxx, Utils/Utils_SALOME_Exception.cxx,
24979           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx,
24980           Utils/Utils_Timer.hxx, Notification/SALOME_NOTIFICATION.hxx,
24981           DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
24982           DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
24983           DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx:
24984
24985         Win32 Porting.
24986         Correction of Export/Import defines for Win32 platform.
24987         Using WIN32 standard define instead WNT define of OpenCascade library.
24988         Using Basics instead Utils library.
24989         Removed "using namespace std" from header files.
24990
24991 2008-10-03 12:36  abd
24992
24993         * src/: TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
24994           TestContainer/Makefile.am,
24995           TestContainer/SALOME_TestComponent_i.cxx,
24996           TestContainer/TestContainer.cxx,
24997           TestMPIContainer/TestMPIContainer.cxx:
24998
24999         Win32 Porting.
25000         Correction of Export/Import defines for Win32 platform.
25001         Using WIN32 standard define instead WNT define of OpenCascade library.
25002         Using Basics instead Utils library.
25003         Removed "using namespace std" from header files.
25004
25005 2008-10-03 12:26  abd
25006
25007         * src/: SALOMEDSImpl/Makefile.am,
25008           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
25009           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
25010           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
25011           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
25012           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
25013           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
25014           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
25015           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
25016           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
25017           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
25018           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
25019           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
25020           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
25021           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
25022           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
25023           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
25024           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
25025           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
25026           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
25027           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
25028           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
25029           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
25030           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
25031           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
25032           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
25033           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
25034           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
25035           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
25036           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
25037           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
25038           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
25039           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
25040           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
25041           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
25042           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
25043           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
25044           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
25045           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
25046           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
25047           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
25048           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
25049           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
25050           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
25051           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
25052           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
25053           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
25054           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
25055           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
25056           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
25057           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
25058           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
25059           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
25060           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
25061           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
25062           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
25063           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
25064           SALOMELocalTrace/BaseTraceCollector.cxx,
25065           SALOMELocalTrace/FileTraceCollector.cxx,
25066           SALOMELocalTrace/LocalTraceBufferPool.cxx,
25067           SALOMELocalTrace/LocalTraceCollector.cxx,
25068           SALOMELocalTrace/SALOME_LocalTrace.hxx,
25069           SALOMELocalTrace/utilities.h,
25070           SALOMETraceCollector/SALOMETraceCollector.cxx,
25071           SALOMETraceCollector/SALOMETraceCollector.hxx,
25072           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx:
25073
25074         Win32 Porting.
25075         Correction of Export/Import defines for Win32 platform.
25076         Using WIN32 standard define instead WNT define of OpenCascade library.
25077         Using Basics instead Utils library.
25078         Removed "using namespace std" from header files.
25079
25080 2008-10-03 12:25  abd
25081
25082         * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
25083           SALOMEDSImpl_GenericAttribute.hxx:
25084
25085         Win32 Porting.
25086         Correction of Export/Import defines for Win32 platform.
25087         Using WIN32 standard define instead WNT define of OpenCascade library.
25088         Using Basics instead Utils library.
25089         Removed "using namespace std" from header files.
25090         Using std:string instead char* for fix bug of std::string::c_str() on local std::string object
25091
25092 2008-10-03 12:22  abd
25093
25094         * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx,
25095           SALOMEDS_AttributeStudyProperties.cxx,
25096           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_Defines.hxx,
25097           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
25098           SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.cxx,
25099           SALOMEDS_Server.cxx, SALOMEDS_Study.cxx,
25100           SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager_i.cxx,
25101           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
25102           SALOMEDS_Study_i.hxx, Test/Makefile.am, Test/TestSALOMEDS.cxx:
25103
25104         Win32 Porting.
25105         Correction of Export/Import defines for Win32 platform.
25106         Using WIN32 standard define instead WNT define of OpenCascade library.
25107         Using Basics instead Utils library.
25108         Removed "using namespace std" from header files.
25109
25110 2008-10-03 12:18  abd
25111
25112         * src/: ParallelContainer/SALOME_ParallelComponent_i.cxx,
25113           ParallelContainer/SALOME_ParallelComponent_i.hxx,
25114           ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
25115           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
25116           ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
25117           ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
25118           ParallelContainer/SALOME_ParallelContainer_i.cxx,
25119           ParallelContainer/SALOME_ParallelContainer_i.hxx,
25120           Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
25121           Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
25122           Registry/SALOME_Registry_Server.cxx,
25123           ResourcesManager/Makefile.am,
25124           ResourcesManager/ResourcesManager.cxx,
25125           ResourcesManager/ResourcesManager.hxx,
25126           ResourcesManager/ResourcesManager_Defs.hxx,
25127           ResourcesManager/SALOME_LoadRateManager.hxx,
25128           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
25129           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
25130           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
25131           ResourcesManager/SALOME_ResourcesManager.cxx,
25132           ResourcesManager/SALOME_ResourcesManager.hxx:
25133
25134         Win32 Porting.
25135         Correction of Export/Import defines for Win32 platform.
25136         Using WIN32 standard define instead WNT define of OpenCascade library.
25137         Using Basics instead Utils library.
25138         Removed "using namespace std" from header files.
25139
25140 2008-10-03 12:07  abd
25141
25142         * src/NamingService/: Makefile.am,
25143           NamingService_WaitForServerReadiness.cxx,
25144           SALOME_NamingService.hxx, SALOME_NamingService_defs.hxx,
25145           ServiceUnreachable.hxx:
25146
25147         Win32 Porting.
25148         Correction of Export/Import defines for Win32 platform.
25149         Using WIN32 standard define instead WNT define of OpenCascade library.
25150         Using Basics instead Utils library.
25151         Removed "using namespace std" from header files.
25152
25153 2008-10-03 11:46  abd
25154
25155         * src/: ModuleCatalog/SALOME_ModuleCatalog.hxx,
25156           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
25157           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
25158           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
25159           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
25160           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
25161
25162         Win32 Porting.
25163         Correction of Export/Import defines for Win32 platform.
25164         Using WIN32 standard define instead WNT define of OpenCascade library.
25165         Using Basics instead Utils library.
25166         Removed "using namespace std" from header files.
25167
25168 2008-10-03 11:34  abd
25169
25170         * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
25171           Launcher/Launcher.cxx, Launcher/Launcher.hxx,
25172           Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
25173           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
25174           Launcher/SALOME_Launcher_defs.hxx,
25175           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
25176           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
25177           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
25178           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
25179           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
25180           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
25181           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
25182           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
25183           Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx:
25184
25185         Win32 Porting.
25186         Correction of Export/Import defines for Win32 platform.
25187         Using WIN32 standard define instead WNT define of OpenCascade library.
25188         Using Basics instead Utils library.
25189         Removed "using namespace std" from header files.
25190
25191 2008-10-03 11:28  abd
25192
25193         * src/HDFPersist/: HDFascii.cc, HDFascii.hxx, HDFattribute.hxx,
25194           HDFcontainerObject.hxx, HDFconvert.cc, HDFconvert.hxx,
25195           HDFdataset.hxx, HDFexception.hxx, HDFexplorer.hxx, HDFexport.hxx,
25196           HDFfile.cc, HDFfile.hxx, HDFgroup.hxx, HDFinternalObject.cc,
25197           HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx:
25198
25199         Win32 Porting.
25200         Correction of Export/Import defines for Win32 platform.
25201         Using WIN32 standard define instead WNT define of OpenCascade library.
25202         Using Basics instead Utils library.
25203         Removed "using namespace std" from header files.
25204
25205 2008-10-03 11:23  abd
25206
25207         * src/: DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
25208           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
25209           DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
25210           GenericObj/SALOME_GenericObj_i.cc,
25211           GenericObj/SALOME_GenericObj_i.hh:
25212
25213         Win32 Porting.
25214         Correction of Export/Import defines for Win32 platform.
25215         Using WIN32 standard define instead WNT define of OpenCascade library.
25216         Using Basics instead Utils library.
25217         Removed "using namespace std" from header files.
25218
25219 2008-10-03 11:15  abd
25220
25221         * src/DSC/DSC_User/: DSC_Exception.hxx, Superv_Component_i.hxx,
25222           Basic/basic_port_factory.cxx, Basic/basic_port_factory.hxx,
25223           Datastream/DataIdFilter.hxx:
25224
25225         Win32 Porting.
25226         Correction of Export/Import defines for Win32 platform.
25227         Using WIN32 standard define instead WNT define of OpenCascade library.
25228         Using Basics instead Utils library.
25229         Removed "using namespace std" from header files.
25230
25231 2008-10-03 11:12  abd
25232
25233         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
25234           Container/Container_init_python.cxx,
25235           Container/Container_init_python.hxx, Container/Makefile.am,
25236           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
25237           Container/SALOME_Container.hxx,
25238           Container/SALOME_ContainerManager.cxx,
25239           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
25240           Container/Salome_file_i.cxx, DF/DF_definitions.hxx,
25241           DF/testDF.cxx, DSC/DSC_Basic/ConnectionManager_i.cxx,
25242           DSC/DSC_Basic/DSC_Basic.hxx:
25243
25244         Win32 Porting.
25245         Correction of Export/Import defines for Win32 platform.
25246         Using WIN32 standard define instead WNT define of OpenCascade library.
25247         Using Basics instead Utils library.
25248
25249 2008-10-03 11:08  abd
25250
25251         * src/Communication/: SALOMEMultiComm.cxx, SALOME_Comm_i.cxx,
25252           SALOME_Comm_i.hxx, SALOME_Communication.hxx:
25253
25254         Win32 Porting.
25255         Correction of Export/Import defines for Win32 platform.
25256         Using WIN32 standard define instead WNT define of OpenCascade library.
25257
25258 2008-10-03 10:59  abd
25259
25260         * src/Basics/: BasicsGenericDestructor.cxx,
25261           BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
25262           Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
25263           Makefile.am, SALOME_Basics.hxx:
25264
25265         Win32 Porting.
25266         Moved common functionality (independent on CORBA) from Utils package (dependent on CORBA) to Basics package and introduced Kernel_Utils namespace for use it
25267
25268 2008-10-03 10:52  abd
25269
25270         * src/: Makefile.am, win32pm/setup.py, win32pm/win32pm.c:
25271
25272         Win32 Porting.
25273         Adding of win32pm package for support of process management by PIDs on Win32 platform
25274
25275 2008-10-03 10:50  abd
25276
25277         * bin/: Makefile.am, NSparam.py, addToKillList.py,
25278           killSalomeWithPort.py, runSalome.py, salome_session.py,
25279           salome_utilities.py, salome_utils.py:
25280
25281         Win32 Porting
25282         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)
25283
25284 2008-10-03 10:41  abd
25285
25286         * bin/killSalome.py:
25287
25288         Win32 Porting
25289         Replace symbol 'd' by "####" because first conflicts with other symbols in directory path on Win32 system
25290
25291 2008-10-01 13:57  secher
25292
25293         * src/Makefile.am:
25294
25295         who have commented this lines?
25296
25297 2008-10-01 05:35  vsr
25298
25299         * src/HDFPersist/: HDFattrWrite.c:
25300
25301         Issue 0019992: Compile KERNEL in -Werror mode
25302
25303 2008-09-30 13:31  vsr
25304
25305         * src/ResourcesManager/: ResourcesManager.cxx:
25306
25307         Issue 0019990: Compile KERNEL in -Werror mode
25308
25309 2008-09-29 11:29  secher
25310
25311         * bin/shutdownSalome.py:
25312
25313         correct conflict
25314
25315 2008-09-26 17:16  caremoli
25316
25317         * src/: Container/Component_i.cxx,
25318           Container/SALOME_Component_i.hxx, DSC/DSC_Basic/DSC_i.cxx,
25319           DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_User/Superv_Component_i.cxx,
25320           DSC/DSC_User/Superv_Component_i.hxx,
25321           DSC/DSC_User/Datastream/Calcium/Calcium.cxx:
25322
25323         CCAR :
25324         INTERFACE CHANGE : add a boolean parameter regist with default value true to one Component constructor
25325
25326         It was needed to avoid calling registry two times for a python superv_component
25327         Registry was called in the python constructor and in the corba proxy (class PySupervCompo)
25328         that is used to implement DSC ports for python component.
25329         As regist value is true by default there is no impact on other parts of KERNEL or of modules.
25330
25331 2008-09-26 17:03  caremoli
25332
25333         * src/Container/SALOME_ContainerManager.cxx:
25334
25335         CCAR: catch CORBA::Exception in shutdownServers when trying to _narrow the container
25336         (_narrow can throw a CORBA::TRANSIENT in some cases)
25337         shutdown did not go to the end when a container was killed before without deregistering
25338         in naming service
25339
25340 2008-09-26 16:57  caremoli
25341
25342         * src/ResourcesManager/: Makefile.am,
25343           SALOME_ResourcesCatalog_Handler.cxx, SALOME_ResourcesManager.cxx:
25344
25345         CCAR: initialize isMPI and nb_component_nodes in GetMachineParameters
25346               add an entry with the real machine name when name is "localhost"
25347
25348 2008-09-26 16:49  caremoli
25349
25350         * src/: Communication_SWIG/libSALOME_Comm.i,
25351           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
25352           NOTIFICATION_SWIG/NOTIFICATION.i:
25353
25354         CCAR: add autodocumentation to swig modules (%feature("autodoc","1"))
25355         et remove problems with overloaded methods (typecheck typemap with precedence)
25356
25357 2008-09-26 09:54  caremoli
25358
25359         * src/ModuleGenerator/: IDLparser.py, testIDLparser.in,
25360           tests/AddComponent.idl, tests/SubComponent.idl, tests/test1.sh,
25361           tests/test1b.sh, tests/test2.sh, tests/test3.sh, tests/test4.sh,
25362           tests/test5.sh:
25363
25364         CCAR: update IDLparser.py with developments for YACS (mainly, DataTypes description
25365         and new Superv_Component interface for SALOME components)
25366         Not all definitions are converted to DataTypes YACS, only local definitions (main file)
25367         that are :
25368          - unbounded sequences
25369          - non recursive structs (and non forward ones also)
25370          - interfaces that are not derivation from SALOME components
25371
25372         The tests have been updated :
25373          - add some idl files in tests to be able to run tests only in KERNEL_BUILD
25374          - adjust some paths (very old SALOME 1 ??) to run with KERNEL only
25375
25376 2008-09-26 09:42  caremoli
25377
25378         * bin/virtual_salome.py:
25379
25380         CCAR: add idl/salome directory in SALOME application generation
25381
25382 2008-09-25 13:32  vsr
25383
25384         * src/KERNEL_PY/: batchmode_salome.py:
25385
25386         0019985: comment print myStudyId in batchmode_salome.py
25387
25388 2008-09-25 13:14  vsr
25389
25390         * salome_adm/unix/: Makefile.am:
25391
25392         0019984: add -f option to salome_adm/unix/Makefile.am
25393
25394 2008-09-19 19:17  caremoli
25395
25396         * bin/virtual_salome.py:
25397
25398         CCAR: in Salome application generation, try to detect the python version
25399         used for modules and application installation independently from the version
25400         of the python interpreter used.
25401
25402 2008-09-18 13:48  mkr
25403
25404         * bin/: launchConfigureParser.py, runSalome.py:
25405
25406         TestRecorder support.
25407
25408 2008-09-18 05:12  vsr
25409
25410         * doc/salome/tui/Makefile.am:
25411
25412         Implement 'make dist' and 'make distcheck' steps
25413
25414 2008-09-15 13:39  akl
25415
25416         * src/: Communication/MatrixClient.hxx,
25417           Communication/MultiCommException.hxx,
25418           Communication/ReceiverFactory.hxx,
25419           Communication/SALOMEMultiComm.hxx,
25420           Communication/SALOME_Comm_i.hxx, Communication/SenderFactory.hxx,
25421           Container/Container_init_python.hxx,
25422           Container/SALOME_Component_i.hxx,
25423           Container/SALOME_ContainerManager.hxx,
25424           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.hxx,
25425           Container/SALOME_FileTransfer_i.hxx, Container/Salome_file_i.hxx,
25426           DSC/DSC_Basic/ConnectionManager_i.hxx,
25427           DSC/DSC_Basic/DSC_Callbacks.hxx, DSC/DSC_Basic/DSC_i.hxx,
25428           DSC/DSC_Basic/PortProperties_i.hxx, DSC/DSC_User/Makefile.am,
25429           DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
25430           DSC/DSC_User/Datastream/Calcium/Makefile.am,
25431           DSC/DSC_User/Datastream/Calcium/calcium.h,
25432           DSC/DSC_User/Datastream/Calcium/calciumE.h,
25433           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
25434           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
25435           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
25436           NOTIFICATION_SWIG/Makefile.am, Notification/NOTIFICATION.hxx,
25437           Notification/NOTIFICATION_Consumer.hxx,
25438           Notification/NOTIFICATION_Supplier.hxx,
25439           Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
25440           SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
25441           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
25442           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
25443           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
25444           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx, Utils/OpUtil.hxx,
25445           Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.hxx,
25446           Utils/Utils_Mutex.cxx:
25447
25448         Integration of 0019971: A patch for cmake compilation.
25449
25450 2008-09-15 12:39  secher
25451
25452         * src/Container/SALOME_ContainerPy.py:
25453
25454         conflict not detected by tkcvs!!!!
25455
25456 2008-09-11 05:33  vsr
25457
25458         * salome_adm/unix/config_files/check_htmlgen.m4:
25459
25460         Implement 'make dist' and 'make distcheck' steps support
25461
25462 2008-09-09 15:53  vsv
25463
25464         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
25465           SALOMEDSImpl_AttributeTableOfReal.cxx,
25466           SALOMEDSImpl_AttributeTableOfString.cxx:
25467
25468         [no log message]
25469
25470 2008-09-09 15:02  secher
25471
25472         * src/: Launcher/Launcher.cxx,
25473           ResourcesManager/ResourcesManager.cxx:
25474
25475         manage messages
25476
25477 2008-09-08 16:28  secher
25478
25479         * Makefile.am, bin/Makefile.am, bin/NSparam.py,
25480           bin/addToKillList.py, bin/envSalome.py, bin/killSalome.py,
25481           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
25482           bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
25483           bin/runSalome.py, bin/salome_session.py, bin/salome_utilities.py,
25484           bin/setenv.py, idl/Makefile.am, salome_adm/unix/Makefile.am,
25485           salome_adm/unix/SALOMEconfig.ref.in,
25486           salome_adm/unix/config_files/check_cas.m4,
25487           src/Basics/BasicsGenericDestructor.cxx,
25488           src/Communication_SWIG/libSALOME_Comm.i,
25489           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
25490           src/Container/Container_init_python.hxx,
25491           src/Container/SALOME_ComponentPy.py,
25492           src/Container/SALOME_Container.cxx,
25493           src/Container/SALOME_Container.py,
25494           src/Container/SALOME_ContainerManager.cxx,
25495           src/Container/SALOME_Container_SignalsHandler.cxx,
25496           src/Container/SALOME_FileRef_i.cxx,
25497           src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
25498           src/DSC/DSC_Python/calcium.i,
25499           src/DSC/DSC_User/Datastream/fake.cc,
25500           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
25501           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
25502           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
25503           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
25504           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
25505           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
25506           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
25507           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
25508           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
25509           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
25510           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
25511           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
25512           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
25513           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
25514           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
25515           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
25516           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
25517           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
25518           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
25519           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
25520           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
25521           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
25522           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
25523           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
25524           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
25525           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
25526           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
25527           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
25528           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
25529           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
25530           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
25531           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
25532           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
25533           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
25534           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
25535           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
25536           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
25537           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
25538           src/DSC/DSC_User/Datastream/Calcium/version.h,
25539           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
25540           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
25541           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
25542           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.hxx,
25543           src/HDFPersist/HDFobjectIdentify.c, src/HDFPersist/hdfi.h,
25544           src/Launcher/Makefile.am, src/Launcher/SALOME_LauncherServer.cxx,
25545           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
25546           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
25547           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
25548           src/Logger/SALOME_Trace.hxx,
25549           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
25550           src/NamingService/SALOME_NamingService.cxx,
25551           src/NamingService/SALOME_NamingServicePy.py,
25552           src/NamingService/Test/NamingServiceTest.cxx,
25553           src/Registry/RegistryService.cxx,
25554           src/Registry/RegistryService.hxx,
25555           src/Registry/SALOME_Registry_Server.cxx,
25556           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
25557           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
25558           src/SALOMEDS/SALOMEDS.cxx,
25559           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
25560           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
25561           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
25562           src/SALOMEDS/SALOMEDS_SObject.cxx,
25563           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
25564           src/SALOMEDS/SALOMEDS_Study.cxx,
25565           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
25566           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
25567           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
25568           src/SALOMEDS/SALOMEDS_Study_i.cxx,
25569           src/SALOMEDS/Test/SALOMEDSTest.cxx,
25570           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
25571           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
25572           src/SALOMELocalTrace/FileTraceCollector.cxx,
25573           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
25574           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
25575           src/SALOMELocalTrace/LocalTraceCollector.cxx,
25576           src/SALOMELocalTrace/utilities.h,
25577           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
25578           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
25579           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
25580           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
25581           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
25582           src/TestContainer/SALOME_TestComponent_i.cxx,
25583           src/TestContainer/TestContainer.cxx,
25584           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
25585           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
25586           src/Utils/Utils_Identity.cxx,
25587           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
25588           src/Utils/Test/UtilsTest.cxx:
25589
25590         after merge with V4_1_0_maintainance
25591
25592 2008-09-08 08:55  vsr
25593
25594         * src/ResourcesManager/: ResourcesManager.cxx:
25595
25596         Remove debug output from terminal. Avoid using "utilities.h" in standalone (non-CORBA) classes (requested by B.Sécher via mail)
25597
25598 2008-09-08 08:35  vsr
25599
25600         * src/Launcher/: Launcher.cxx, SALOME_LauncherServer.cxx:
25601
25602         Remove debug output from terminal. Avoid using "utilities.h" in standalone (non-CORBA) classes (requested by B.Sécher via mail)
25603
25604 2008-09-05 13:27  vsr
25605
25606         * src/: ModuleGenerator/Makefile.am, NOTIFICATION_SWIG/Makefile.am:
25607
25608         Improve build procedure to support 'make dist' and 'make distcheck' steps
25609
25610 2008-09-05 13:24  vsr
25611
25612         * doc/salome/tui/Makefile.am, idl/Makefile.am,
25613           salome_adm/unix/config_files/Makefile.am, src/Makefile.am,
25614           src/Communication_SWIG/Makefile.am,
25615           src/DSC/DSC_Python/Makefile.am,
25616           src/LifeCycleCORBA_SWIG/Makefile.am:
25617
25618         Improve build procedure to support 'make dist' and 'make distcheck' steps
25619
25620 2008-09-05 13:21  vsr
25621
25622         * doc/: Makefile.am, salome/Makefile.am:
25623
25624         Improve build procedure to support 'make dist' and 'make distcheck' steps
25625
25626 2008-09-05 13:06  vsr
25627
25628         * src/HDFPersist/HDFobject.hxx:
25629
25630         Issue 0019963 : replace <HDFexport.hxx> byq "HDFexport.hxx"
25631
25632 2008-09-05 13:03  vsr
25633
25634         * src/HDFPersist/: HDFexception.hxx, HDFobject.hxx:
25635
25636         Issue 0019963 : replace <HDFexport.hxx> by "HDFexport.hxx"
25637
25638 2008-09-05 08:26  vsr
25639
25640         * src/Communication/: Receiver.cxx, libSALOME_Comm.i:
25641
25642         Remove obsolete files
25643
25644 2008-09-05 08:23  vsr
25645
25646         * salome_adm/unix/config_files/: ac_cc_warnings.m4,
25647           check_Salome.m4, check_java.m4:
25648
25649         Remove obsolete files
25650
25651 2008-09-05 08:20  vsr
25652
25653         * src/: SALOMEDS/Makefile.am, SALOMEDS/README_attributes,
25654           SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
25655           SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
25656           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
25657           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
25658           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
25659           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx, Utils/SalomeString.hxx,
25660           Utils/Utils_SignalsHandler.h,
25661           ModuleCatalog/SALOME_TestModuleCatalog.py:
25662
25663         Remove obsolete files
25664
25665 2008-09-04 16:10  vsr
25666
25667         * resources/Makefile.am:
25668
25669         Remove obsolete files
25670
25671 2008-09-04 15:45  vsr
25672
25673         * configure.ac:
25674
25675         Remove obsolete files
25676
25677 2008-09-04 15:43  abd
25678
25679         * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
25680           Launcher/Launcher.cxx, Launcher/Launcher.hxx,
25681           Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
25682           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_Launcher_defs.hxx,
25683           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
25684           Utils/Utils_ExceptHandlers.hxx:
25685
25686         Porting functionality on Win32 Platform
25687
25688 2008-09-04 13:30  vsr
25689
25690         * salome_adm/unix/: Doxyfile, F77config.h.in, sstream.in:
25691
25692         Remove obsolete files
25693
25694 2008-09-04 13:07  vsr
25695
25696         * resources/: Tools_en.xml, Tools_fr.xml, config:
25697
25698         Remove obsolete files
25699
25700 2008-09-04 10:15  vsr
25701
25702         * bin/Makefile.am, bin/runIDLparser, bin/runIDLparser.in,
25703           bin/salome_utilities.py, configure.ac:
25704
25705         Improve build procedure to support 'make dist' and 'make distcheck' steps
25706
25707 2008-09-02 14:38  ribes
25708
25709         * Makefile.am, bin/killSalome.py, bin/runSalome.py, bin/setenv.py,
25710           idl/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
25711           salome_adm/unix/config_files/check_cas.m4,
25712           src/Communication_SWIG/libSALOME_Comm.i,
25713           src/Container/Container_i.cxx,
25714           src/Container/Container_init_python.hxx,
25715           src/Container/SALOME_Container.cxx,
25716           src/Container/SALOME_Container_SignalsHandler.cxx,
25717           src/Container/SALOME_FileRef_i.cxx,
25718           src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
25719           src/DSC/DSC_Python/calcium.i,
25720           src/DSC/DSC_User/Datastream/fake.cc,
25721           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
25722           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
25723           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
25724           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
25725           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
25726           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
25727           src/HDFPersist/hdfi.h, src/Launcher/Launcher.cxx,
25728           src/Launcher/Makefile.am,
25729           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
25730           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
25731           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
25732           src/Logger/SALOME_Trace.hxx,
25733           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
25734           src/NamingService/SALOME_NamingService.cxx,
25735           src/NamingService/Test/NamingServiceTest.cxx,
25736           src/Registry/RegistryService.cxx,
25737           src/ResourcesManager/ResourcesManager.cxx,
25738           src/SALOMEDS/SALOMEDS.cxx,
25739           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
25740           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
25741           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
25742           src/SALOMEDS/SALOMEDS_SObject.cxx,
25743           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
25744           src/SALOMEDS/SALOMEDS_Study.cxx,
25745           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
25746           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
25747           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
25748           src/SALOMEDS/SALOMEDS_Study_i.cxx,
25749           src/SALOMEDS/Test/SALOMEDSTest.cxx,
25750           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
25751           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
25752           src/SALOMELocalTrace/FileTraceCollector.cxx,
25753           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
25754           src/SALOMELocalTrace/LocalTraceCollector.cxx,
25755           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
25756           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
25757           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
25758           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
25759           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
25760           src/TestContainer/SALOME_TestComponent_i.cxx,
25761           src/TestContainer/TestContainer.cxx,
25762           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
25763           src/Utils/Utils_Identity.cxx,
25764           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
25765           src/Utils/Test/UtilsTest.cxx:
25766
25767         - mergefrom_V4_1_0_maintainance_20080901
25768
25769 2008-08-29 08:33  dmv
25770
25771         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
25772
25773         Bug IPAL19893 4.x: debug information is in terminal
25774
25775 2008-08-28 11:39  abd
25776
25777         * src/ResourcesManager/ResourcesManager_Defs.hxx:
25778
25779         Fix compilation problems on Win32 platform
25780
25781 2008-08-28 11:18  abd
25782
25783         * bin/NSparam.py, bin/addToKillList.py, bin/killSalome.py,
25784           bin/killSalomeWithPort.py, bin/runSalome.py,
25785           bin/salome_session.py, src/Container/Container_i.cxx,
25786           src/Container/SALOME_ContainerManager.cxx,
25787           src/Container/Salome_file_i.cxx,
25788           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
25789           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
25790           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
25791           src/Launcher/SALOME_Launcher.cxx,
25792           src/Launcher/SALOME_Launcher.hxx,
25793           src/Launcher/SALOME_LauncherServer.cxx,
25794           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
25795           src/ResourcesManager/Makefile.am,
25796           src/ResourcesManager/ResourcesManager.cxx,
25797           src/ResourcesManager/ResourcesManager.hxx,
25798           src/ResourcesManager/SALOME_LoadRateManager.hxx,
25799           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
25800           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
25801           src/ResourcesManager/SALOME_ResourcesManager.cxx,
25802           src/ResourcesManager/SALOME_ResourcesManager.hxx,
25803           src/SALOMELocalTrace/utilities.h, src/Utils/OpUtil.cxx,
25804           src/Utils/OpUtil.hxx, bin/Makefile.am, bin/salome_utils.py:
25805
25806         Fix compilation problems on Win32 platform
25807
25808 2008-08-26 12:53  dmv
25809
25810         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
25811
25812         Bug IPAL19893 4.x: debug information is in terminal.
25813
25814 2008-08-25 16:56  vsv
25815
25816         * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
25817
25818         [no log message]
25819
25820 2008-08-15 11:52  dmv
25821
25822         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
25823
25824         Bug IPAL19893 4.x: debug information is in terminal.
25825
25826 2008-08-15 11:42  dmv
25827
25828         * src/: ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
25829           SALOMELocalTrace/LocalTraceCollector.cxx:
25830
25831         Rollback a part of integration to BR_QT4_Dev2 11.08.2008:
25832         IPAL 19893: debug information is in terminal.
25833
25834 2008-08-15 11:24  dmv
25835
25836         * bin/: envSalome.py, setenv.py:
25837
25838         Rollback a part of integration to BR_QT4_Dev2 11.08.2008:
25839         Bug IPAL20202 Qt4 porting: it is impossible to start application with "-t" option.
25840
25841 2008-08-12 12:43  dmv
25842
25843         * bin/setenv.py:
25844
25845         0019954: Pb in setenv.py
25846
25847 2008-08-12 12:39  dmv
25848
25849         * bin/setenv.py:
25850
25851         0019954: Pb in setenv.py
25852
25853 2008-08-11 12:16  dmv
25854
25855         * src/: Launcher/SALOME_LauncherServer.cxx,
25856           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
25857           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
25858           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
25859           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
25860           SALOMELocalTrace/FileTraceCollector.cxx,
25861           SALOMELocalTrace/LocalTraceBufferPool.cxx,
25862           SALOMELocalTrace/LocalTraceCollector.cxx:
25863
25864         Bug IPAL19893 4.x: debug information is in terminal.
25865
25866 2008-08-11 10:39  dmv
25867
25868         * bin/: envSalome.py, setenv.py:
25869
25870         Bug IPAL20202 Qt4 porting: it is impossible to start application with "-t" option.
25871
25872 2008-08-08 09:18  abd
25873
25874         * src/win32pm/: setup.py, win32pm.c:
25875
25876         Merging with BR_WPdev_For_5_0
25877
25878 2008-08-08 09:11  abd
25879
25880         * src/: Container/Container_i.cxx, Container/SALOME_Container.cxx,
25881           ResourcesManager/SALOME_ResourcesManager.hxx:
25882
25883         Merging with BR_WPdev_For_5_0
25884
25885 2008-08-08 09:07  abd
25886
25887         * src/: SALOMEDSImpl/Makefile.am,
25888           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
25889           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
25890           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
25891           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
25892           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
25893           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
25894           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
25895           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
25896           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
25897           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
25898           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
25899           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
25900           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
25901           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
25902           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
25903           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
25904           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
25905           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
25906           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
25907           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
25908           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
25909           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
25910           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
25911           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
25912           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
25913           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
25914           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
25915           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
25916           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
25917           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
25918           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
25919           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
25920           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
25921           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
25922           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
25923           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
25924           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
25925           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
25926           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
25927           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
25928           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
25929           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
25930           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
25931           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
25932           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
25933           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
25934           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
25935           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
25936           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
25937           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
25938           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
25939           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
25940           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
25941           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
25942           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
25943           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
25944           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
25945           TOOLSDS/SALOMEDS_Tool.cxx, Utils/OpUtil.cxx, Utils/OpUtil.hxx:
25946
25947         Merging with BR_WPdev_For_5_0
25948
25949 2008-08-08 08:53  abd
25950
25951         * src/SALOMEDS/: SALOMEDS_GenericAttribute_i.cxx,
25952           SALOMEDS_StudyManager_i.cxx:
25953
25954         Merging with BR_WPdev_For_5_0
25955
25956 2008-08-08 08:49  abd
25957
25958         * src/: ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
25959           NamingService/SALOME_NamingService.hxx:
25960
25961         Merging with BR_WPdev_For_5_0
25962
25963 2008-08-08 08:41  abd
25964
25965         * src/HDFPersist/: HDFascii.cc, HDFascii.hxx, HDFattribute.hxx,
25966           HDFcontainerObject.hxx, HDFconvert.hxx, HDFdataset.hxx,
25967           HDFexception.hxx, HDFexplorer.hxx, HDFexport.hxx, HDFfile.hxx,
25968           HDFgroup.hxx, HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx:
25969
25970         Merging with BR_WPdev_For_5_0
25971
25972 2008-08-04 14:54  abd
25973
25974         * src/win32pm/: setup.py, win32pm.c:
25975
25976         Add win32pm package to the KERNEL sources
25977
25978 2008-08-01 09:21  vsr
25979
25980         * salome_adm/unix/config_files/: check_cas.m4:
25981
25982         Fix error in check CASCADE procedure (in AC_TRY_LINK)
25983
25984 2008-07-31 06:01  vsr
25985
25986         * bin/: runSalome.py:
25987
25988         Fix issue 0019952: problem with symbolic link creation
25989
25990 2008-07-31 05:47  vsr
25991
25992         * bin/: killSalome.py:
25993
25994         Fix pb with killSalome script: exception is raised at os.listdir() if /tmp/logs/${USER} directory does not exist.
25995
25996 2008-07-30 14:05  ouv
25997
25998         * bin/setenv.py:
25999
26000         Feature 0016551: EDF PAL 501: To add a second trihedron always visible and with constant size
26001
26002 2008-07-29 12:04  vsr
26003
26004         * Makefile.am, bin/killSalome.py, bin/nameserver.py, bin/runNS.py,
26005           idl/Makefile.am, salome_adm/unix/Makefile.am,
26006           salome_adm/unix/SALOMEconfig.ref.in,
26007           salome_adm/unix/config_files/check_cas.m4,
26008           src/Communication_SWIG/libSALOME_Comm.i,
26009           src/Container/Container_i.cxx,
26010           src/Container/Container_init_python.hxx,
26011           src/Container/SALOME_Container.cxx,
26012           src/Container/SALOME_Container_SignalsHandler.cxx,
26013           src/Container/SALOME_FileRef_i.cxx,
26014           src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
26015           src/DSC/DSC_Python/calcium.i,
26016           src/DSC/DSC_User/Datastream/fake.cc,
26017           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
26018           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
26019           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
26020           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
26021           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
26022           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
26023           src/HDFPersist/hdfi.h, src/Launcher/Launcher.cxx,
26024           src/Launcher/Makefile.am,
26025           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
26026           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
26027           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
26028           src/Logger/SALOME_Trace.hxx,
26029           src/NamingService/SALOME_NamingService.cxx,
26030           src/NamingService/Test/NamingServiceTest.cxx,
26031           src/Registry/RegistryService.cxx,
26032           src/ResourcesManager/ResourcesManager.cxx,
26033           src/SALOMEDS/SALOMEDS.cxx,
26034           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
26035           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
26036           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
26037           src/SALOMEDS/SALOMEDS_SObject.cxx,
26038           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
26039           src/SALOMEDS/SALOMEDS_Study.cxx,
26040           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
26041           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
26042           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
26043           src/SALOMEDS/SALOMEDS_Study_i.cxx,
26044           src/SALOMEDS/Test/SALOMEDSTest.cxx,
26045           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
26046           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
26047           src/SALOMELocalTrace/FileTraceCollector.cxx,
26048           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
26049           src/SALOMELocalTrace/LocalTraceCollector.cxx,
26050           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
26051           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
26052           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
26053           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
26054           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
26055           src/TestContainer/SALOME_TestComponent_i.cxx,
26056           src/TestContainer/TestContainer.cxx,
26057           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
26058           src/Utils/Utils_Identity.cxx,
26059           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
26060           src/Utils/Test/UtilsTest.cxx:
26061
26062         merge from V4_1_0_maintainance branch (from tag mergeto_BR_QT4_Dev2_29Jul08)
26063
26064 2008-07-28 09:45  dmv
26065
26066         * src/Launcher/: Launcher.cxx, Makefile.am:
26067
26068         Bug IPAL19893 4.x: debug information is in terminal.
26069
26070 2008-07-21 14:42  dmv
26071
26072         * src/ResourcesManager/ResourcesManager.cxx:
26073
26074         Bug IPAL19893 4.x: debug information is in terminal.
26075
26076 2008-07-18 15:07  ribes
26077
26078         * src/: Container/Salome_file_i.hxx, Container/TestSalome_file.cxx,
26079           DF/testDF.cxx, Logger/SALOME_Logger_Server.hxx,
26080           Logger/SALOME_Logger_Server_main.cxx,
26081           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
26082           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
26083           SALOMELocalTrace/LocalTraceBufferPool.cxx,
26084           TOOLSDS/SALOMEDS_Tool.cxx:
26085
26086         - Patch for GCC 4.3
26087
26088 2008-07-18 14:58  ribes
26089
26090         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
26091
26092         - Use _DEBUG and not _MYDEBUG
26093
26094 2008-07-18 11:16  ribes
26095
26096         * configure.ac, bin/Makefile.am, bin/NSparam.py,
26097           bin/addToKillList.py, bin/envSalome.py, bin/killSalome.py,
26098           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
26099           bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
26100           bin/runSalome.py, bin/salome_session.py, bin/salome_utilities.py,
26101           bin/setenv.py, bin/shutdownSalome.py,
26102           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
26103           salome_adm/unix/Makefile.am,
26104           salome_adm/unix/config_files/check_lsf.m4,
26105           salome_adm/unix/config_files/check_withihm.m4,
26106           src/Basics/BasicsGenericDestructor.cxx,
26107           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
26108           src/Container/SALOME_ComponentPy.py,
26109           src/Container/SALOME_Component_i.hxx,
26110           src/Container/SALOME_Container.py,
26111           src/Container/SALOME_ContainerManager.cxx,
26112           src/Container/SALOME_ContainerManager.hxx,
26113           src/Container/SALOME_ContainerPy.py, src/DSC/DSC_Basic/DSC_i.cxx,
26114           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Python/calcium.i,
26115           src/DSC/DSC_User/Superv_Component_i.cxx,
26116           src/DSC/DSC_User/Superv_Component_i.hxx,
26117           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
26118           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
26119           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
26120           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
26121           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
26122           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
26123           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
26124           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
26125           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
26126           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
26127           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
26128           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
26129           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
26130           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
26131           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
26132           src/Launcher/Launcher.cxx,
26133           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
26134           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
26135           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
26136           src/NOTIFICATION_SWIG/Makefile.am,
26137           src/NamingService/SALOME_NamingServicePy.py,
26138           src/Registry/RegistryService.hxx,
26139           src/Registry/SALOME_Registry_Server.cxx,
26140           src/ResourcesManager/ResourcesManager.cxx,
26141           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
26142           src/ResourcesManager/SALOME_ResourcesManager.cxx,
26143           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
26144           src/SALOMELocalTrace/utilities.h,
26145           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
26146           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
26147
26148         - Boucherie
26149
26150 2008-07-18 10:36  ribes
26151
26152         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
26153
26154         - Replace MYDEBUG by DEBUG
26155
26156 2008-07-17 13:09  jfa
26157
26158         * Makefile.am, idl/Makefile.am,
26159           salome_adm/unix/SALOMEconfig.ref.in,
26160           salome_adm/unix/config_files/check_cas.m4,
26161           src/Communication_SWIG/libSALOME_Comm.i,
26162           src/Container/Container_i.cxx,
26163           src/Container/Container_init_python.hxx,
26164           src/Container/SALOME_Container.cxx,
26165           src/Container/SALOME_Container_SignalsHandler.cxx,
26166           src/Container/SALOME_FileRef_i.cxx,
26167           src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
26168           src/DSC/DSC_Python/calcium.i,
26169           src/DSC/DSC_User/Datastream/fake.cc,
26170           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
26171           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
26172           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
26173           src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
26174           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
26175           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
26176           src/HDFPersist/hdfi.h,
26177           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
26178           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
26179           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
26180           src/Logger/SALOME_Trace.hxx,
26181           src/NamingService/SALOME_NamingService.cxx,
26182           src/NamingService/Test/NamingServiceTest.cxx,
26183           src/Registry/RegistryService.cxx, src/SALOMEDS/SALOMEDS.cxx,
26184           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
26185           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
26186           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
26187           src/SALOMEDS/SALOMEDS_SObject.cxx,
26188           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
26189           src/SALOMEDS/SALOMEDS_Study.cxx,
26190           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
26191           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
26192           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
26193           src/SALOMEDS/SALOMEDS_Study_i.cxx,
26194           src/SALOMEDS/Test/SALOMEDSTest.cxx,
26195           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
26196           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
26197           src/SALOMELocalTrace/FileTraceCollector.cxx,
26198           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
26199           src/SALOMELocalTrace/LocalTraceCollector.cxx,
26200           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
26201           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
26202           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
26203           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
26204           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
26205           src/TestContainer/SALOME_TestComponent_i.cxx,
26206           src/TestContainer/TestContainer.cxx,
26207           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
26208           src/Utils/Utils_Identity.cxx,
26209           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
26210           src/Utils/Test/UtilsTest.cxx:
26211
26212         Bug 0019869: Compile KERNEL in Werror mode. Integrating KERNEL_SRC_20080710.patch.
26213
26214 2008-07-17 08:28  abd
26215
26216         * src/: Container/Container_i.cxx, Container/SALOME_Container.cxx,
26217           Container/SALOME_Container.hxx,
26218           Container/SALOME_ContainerManager.cxx,
26219           Container/Salome_file_i.cxx,
26220           DSC/DSC_Basic/ConnectionManager_i.cxx, HDFPersist/HDFascii.cc,
26221           HDFPersist/HDFascii.hxx, HDFPersist/HDFattribute.hxx,
26222           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.hxx,
26223           HDFPersist/HDFdataset.hxx, HDFPersist/HDFexception.hxx,
26224           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
26225           HDFPersist/HDFfile.hxx, HDFPersist/HDFgroup.hxx,
26226           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.cc,
26227           HDFPersist/HDFobject.hxx, Launcher/BatchLight_BatchManager.cxx,
26228           Launcher/BatchLight_BatchManager_PBS.cxx,
26229           Launcher/BatchLight_BatchManager_SLURM.cxx,
26230           Launcher/BatchLight_Job.cxx, Launcher/SALOME_Launcher.cxx,
26231           Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
26232           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
26233           NamingService/SALOME_NamingService.hxx,
26234           ResourcesManager/SALOME_ResourcesManager.cxx,
26235           ResourcesManager/SALOME_ResourcesManager.hxx,
26236           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
26237           SALOMEDSImpl/Makefile.am,
26238           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
26239           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
26240           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
26241           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
26242           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
26243           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
26244           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
26245           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
26246           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
26247           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
26248           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
26249           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
26250           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
26251           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
26252           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
26253           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
26254           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
26255           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
26256           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
26257           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
26258           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
26259           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
26260           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
26261           SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
26262           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
26263           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
26264           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
26265           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
26266           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
26267           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
26268           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
26269           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
26270           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
26271           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
26272           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
26273           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
26274           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
26275           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
26276           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
26277           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
26278           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
26279           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
26280           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
26281           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
26282           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
26283           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
26284           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
26285           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
26286           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
26287           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
26288           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
26289           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
26290           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
26291           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
26292           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
26293           TOOLSDS/SALOMEDS_Tool.cxx, Utils/OpUtil.cxx, Utils/OpUtil.hxx:
26294
26295         Executable version on Windows Platform
26296
26297 2008-07-09 06:44  vsr
26298
26299         * bin/: killSalome.py, nameserver.py, runNS.py:
26300
26301         Issue 0019872: fix pb of killing SALOME processes (files in /tmp/logs/${USER} directory are removed unconditionally).
26302
26303 2008-07-08 13:20  vsr
26304
26305         * salome_adm/unix/Makefile.am:
26306
26307         Improve Makefile: regenerate SALOMEconfig.h file when SALOMEconfig.ref.in is changed
26308
26309 2008-07-08 09:44  vsr
26310
26311         * configure.ac:
26312
26313         improve configure.ac : XVERSION
26314
26315 2008-07-08 09:42  vsr
26316
26317         * configure.ac, src/KERNEL_PY/salome_test.py:
26318
26319         Merge from BR_QT4_Dev1
26320
26321 2008-07-08 08:25  caremoli
26322
26323         *
26324           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx:
26325
26326         CCAR: remove wakeupWaiting in CalciumGenericProvidesPort. It's already done in disconnect
26327
26328 2008-07-08 05:26  vsr
26329
26330         * configure.ac:
26331
26332         Fix pb of reconfigure (error on re-generating top-level Makefile)
26333
26334 2008-07-07 14:51  caremoli
26335
26336         * src/DSC/DSC_Python/calcium.i:
26337
26338         CCAR: improve python wrapping for DSC components : add is_connected and
26339         convert CORBA C++ exception to CORBA python exception
26340
26341 2008-07-07 14:39  caremoli
26342
26343         * src/Container/SALOME_ContainerManager.cxx:
26344
26345         CCAR: restore previous behaviour : if a component has no catalog but a python
26346         module or a dynamic lib is conforming accept it.
26347
26348 2008-07-07 12:31  vsr
26349
26350         * bin/salome_utilities.py:
26351
26352         Issue 0019916: avoid deprecation warning
26353
26354 2008-07-07 12:19  vsr
26355
26356         * bin/: addToKillList.py, killSalome.py, killSalomeWithPort.py,
26357           salome_utilities.py:
26358
26359         * Issue 0019872: use dot-prefixed pidict files
26360
26361 2008-07-07 11:50  dmv
26362
26363         * src/ResourcesManager/ResourcesManager.cxx:
26364
26365         Bug IPAL18631 REGRESS of logger - nothing apperared in log file in the IAPP-002 test scenario checkpoints
26366
26367 2008-07-07 11:11  dmv
26368
26369         * src/ResourcesManager/ResourcesManager.cxx:
26370
26371         Bug IPAL18631 REGRESS of logger - nothing apperared in log file in the IAPP-002 test scenario checkpoints
26372
26373 2008-07-07 09:55  vsr
26374
26375         * bin/: NSparam.py, addToKillList.py, envSalome.py, killSalome.py,
26376           killSalomeWithPort.py, runSalome.py, salome_session.py,
26377           salome_utilities.py, setenv.py:
26378
26379         * Issue 0019872: use dot-prefixed pidict files
26380         * Improve other SALOME scripts
26381
26382 2008-07-03 09:25  vsr
26383
26384         * configure.ac, bin/Makefile.am:
26385
26386         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.
26387
26388 2008-07-02 12:58  vsr
26389
26390         * bin/salome_utilities.py:
26391
26392         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.
26393
26394 2008-07-02 12:58  vsr
26395
26396         * bin/Makefile.am:
26397
26398         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).
26399
26400 2008-06-30 16:08  fayolle
26401
26402         * src/DSC/DSC_User/Datastream/Calcium/: CalciumCxxInterface.hxx,
26403           CalciumInterface.hxx, CalciumPortTraits.hxx, Copy2CorbaSpace.hxx:
26404
26405
26406         CORRECTIONS API C++ UTILISATEUR
26407
26408 2008-06-30 16:03  fayolle
26409
26410         *
26411           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx:
26412
26413         [no log message]
26414
26415 2008-06-27 16:03  secher
26416
26417         * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
26418           Launcher/SALOME_Launcher.cxx,
26419           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
26420           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
26421           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
26422           ResourcesManager/SALOME_ResourcesManager.cxx:
26423
26424         add Sun Grid Engine batch manager
26425
26426 2008-06-23 09:52  secher
26427
26428         * src/: Launcher/BatchTest.cxx,
26429           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
26430
26431         a few little debugging
26432
26433 2008-06-19 12:42  dmv
26434
26435         * src/SALOMELocalTrace/: LocalTraceBufferPool.hxx, utilities.h:
26436
26437         IPAL 18631 Remove Extra Messages from the Terminal in case of Release Mode
26438
26439 2008-06-19 11:12  vsr
26440
26441         * bin/: runSalome.py, salome_utilities.py:
26442
26443         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.
26444
26445 2008-06-08 15:18  caremoli
26446
26447         * bin/shutdownSalome.py, src/Registry/RegistryService.hxx,
26448           src/Registry/SALOME_Registry_Server.cxx,
26449           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
26450           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
26451
26452         CCAR: solve some problems during shutdown
26453         - singletons are deleted at exit (atexit function is called at the beginning of programs)
26454         but order is important. Trace singleton must be destroyed last because MESSAGE
26455         and others are called in destructor of other singletons.
26456         So I have enforced local trace initialization in ATEXIT_ class from Utils directory
26457
26458         - Improve Registry shutdown (called _remove_ref to delete RegistryService object)
26459         - add a delay between shutdown servers and kill omninames in shutdownSalome.py
26460
26461 2008-06-06 19:25  caremoli
26462
26463         * src/Basics/BasicsGenericDestructor.cxx:
26464
26465         CCAR: correction of DESTRUCTOR_OF in the end of Registry Server (seems to recurse ??)
26466
26467 2008-06-06 17:49  caremoli
26468
26469         * src/Container/: SALOME_ComponentPy.py, SALOME_Container.py:
26470
26471         CCAR: remove thrown exceptions in shutdown servers with python components
26472
26473 2008-06-06 15:57  caremoli
26474
26475         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
26476           Container/SALOME_ContainerManager.cxx,
26477           Container/SALOME_ContainerPy.py,
26478           DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
26479           NamingService/SALOME_NamingServicePy.py:
26480
26481         CCAR: some corrections in :
26482         - disconnection of CALCIUM ports
26483         - shutdown of Python container
26484         - shutdown of C++ container
26485         - launching of standalone component
26486
26487 2008-06-06 13:14  vsr
26488
26489         * bin/nameserver.py:
26490
26491         Issue 19871: add missing path to omniNameErrors.log file
26492
26493 2008-06-05 13:47  secher
26494
26495         * configure.ac, bin/runSalome.py, idl/SALOME_ContainerManager.idl,
26496           idl/SALOME_ModuleCatalog.idl,
26497           salome_adm/unix/config_files/check_lsf.m4,
26498           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
26499           src/Container/SALOME_Component_i.hxx,
26500           src/Container/SALOME_ContainerManager.cxx,
26501           src/Container/SALOME_ContainerManager.hxx,
26502           src/Container/SALOME_ContainerPy.py, src/DSC/DSC_Basic/DSC_i.cxx,
26503           src/DSC/DSC_Basic/DSC_i.hxx,
26504           src/DSC/DSC_User/Superv_Component_i.cxx,
26505           src/DSC/DSC_User/Superv_Component_i.hxx,
26506           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
26507           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
26508           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
26509           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
26510           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
26511           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
26512           src/Launcher/SALOME_Launcher.hxx,
26513           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
26514           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
26515           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
26516           src/NOTIFICATION_SWIG/Makefile.am,
26517           src/ResourcesManager/ResourcesManager.cxx,
26518           src/ResourcesManager/ResourcesManager.hxx,
26519           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
26520           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
26521           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
26522           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
26523           src/ResourcesManager/SALOME_ResourcesManager.cxx,
26524           src/ResourcesManager/SALOME_ResourcesManager.hxx:
26525
26526         after merge with V4_1_3rc1
26527
26528 2008-06-05 10:18  prascle
26529
26530         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
26531
26532         PR: Patch from Bernard Secher
26533
26534 2008-06-04 18:48  prascle
26535
26536         * bin/nameserver.py, bin/orbmodule.py, bin/runSalome.py,
26537           src/Container/SALOME_ContainerPy.py,
26538           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
26539
26540         PR: use of verbose test for Python prints
26541
26542 2008-06-04 12:43  secher
26543
26544         * Makefile.am, configure.ac, resources/Makefile.am,
26545           src/Makefile.am, src/Launcher/Makefile.am,
26546           src/ResourcesManager/Makefile.am,
26547           src/ResourcesManager/ResourcesManager.cxx,
26548           src/ResourcesManager/ResourcesManager.hxx:
26549
26550         add --with-onlylauncher configure option to build kernel with only Batch, ResourceManager and Launcher
26551
26552 2008-06-03 15:25  secher
26553
26554         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
26555           src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
26556           src/Launcher/SALOME_Launcher.hxx:
26557
26558         improvement of API launcher
26559
26560 2008-06-03 10:39  vsr
26561
26562         * bin/launchConfigureParser.py:
26563
26564         Issue 0019776: fix pb of running SALOME after installing modules in 'without GUI' mode.
26565
26566 2008-06-02 08:55  mnt
26567
26568         * configure.ac:
26569
26570         Changing version to 4.1.3
26571
26572 2008-06-01 18:50  caremoli
26573
26574         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
26575           Container/SALOME_Component_i.hxx, DSC/DSC_Basic/DSC_i.cxx,
26576           DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_User/Superv_Component_i.cxx,
26577           DSC/DSC_User/Superv_Component_i.hxx,
26578           DSC/DSC_User/Datastream/Calcium/Calcium.cxx:
26579
26580         CCAR: add an experimental feature : standalone component
26581         A standalone component is implemented in an executable that is launched
26582         by the container. The create_component_instance has been modified : after
26583         trying to load a shared lib or a python module, it tries to launch the
26584         executable component.exe.
26585
26586         This development is between tags CCARexeccompoStart and CCARexeccompoEnd
26587
26588 2008-05-30 17:03  caremoli
26589
26590         * bin/runSalome.py:
26591
26592         CCAR: revert setting PYTHONINSPECT to the end of runSalome (must not be set
26593         when launching servers)
26594
26595 2008-05-30 11:02  caremoli
26596
26597         * idl/SALOME_ModuleCatalog.idl,
26598           src/Container/SALOME_ContainerManager.cxx,
26599           src/Container/SALOME_ContainerManager.hxx,
26600           src/Container/SALOME_ContainerPy.py,
26601           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
26602           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
26603           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
26604           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
26605           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
26606
26607         CCAR: add traces to CALCIUM ports, some debug in ModuleCatalog
26608               add CEXE option to component catalog to be able to specify a specific container
26609               executable for special component
26610               some debug in python container
26611
26612 2008-05-29 14:15  secher
26613
26614         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
26615           src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
26616           src/Launcher/SALOME_Launcher.cxx,
26617           src/Launcher/SALOME_Launcher.hxx,
26618           src/Launcher/SALOME_Launcher_Handler.cxx,
26619           src/Launcher/SALOME_Launcher_Handler.hxx,
26620           src/Launcher/SALOME_Launcher_Parser.cxx,
26621           src/Launcher/SALOME_Launcher_Parser.hxx:
26622
26623         first version of launching executable from xml file
26624
26625 2008-05-29 12:13  prascle
26626
26627         * bin/config_appli.xml, bin/shutdownSalome.py,
26628           idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
26629           src/Container/SALOME_ContainerManager.cxx,
26630           src/Container/SALOME_ContainerManager.hxx,
26631           src/Launcher/BatchLight_BatchManager.cxx,
26632           src/Launcher/BatchLight_BatchManager.hxx,
26633           src/Launcher/BatchLight_BatchManager_PBS.cxx,
26634           src/Launcher/BatchLight_BatchManager_PBS.hxx,
26635           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
26636           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
26637           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
26638           src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
26639           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
26640           src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
26641           src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
26642           src/Launcher/SALOME_Launcher.hxx,
26643           src/LifeCycleCORBA/TestContainerManager.cxx,
26644           src/ResourcesManager/Makefile.am,
26645           src/ResourcesManager/ResourcesManager.cxx,
26646           src/ResourcesManager/ResourcesManager.hxx,
26647           src/ResourcesManager/SALOME_LoadRateManager.cxx,
26648           src/ResourcesManager/SALOME_LoadRateManager.hxx,
26649           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
26650           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
26651           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
26652           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
26653           src/ResourcesManager/SALOME_ResourcesManager.cxx,
26654           src/ResourcesManager/SALOME_ResourcesManager.hxx:
26655
26656         merge from branch BR_For40_DSC tag mergeto_V4_1_0_maintainance_29may08
26657
26658 2008-05-28 14:30  ribes
26659
26660         * src/Launcher/: BatchLight_BatchTest.cxx,
26661           BatchLight_BatchTest.hxx, BatchTest.cxx, BatchTest.hxx,
26662           Makefile.am, SALOME_Launcher.cxx, SALOME_Launcher.hxx:
26663
26664         - BatchLight_BatchTest -> BatchTest
26665
26666 2008-05-28 09:51  ribes
26667
26668         * bin/config_appli.xml, bin/shutdownSalome.py,
26669           idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
26670           src/Container/SALOME_ContainerManager.cxx,
26671           src/Container/SALOME_ContainerManager.hxx,
26672           src/Launcher/BatchLight_BatchManager.cxx,
26673           src/Launcher/BatchLight_BatchManager.hxx,
26674           src/Launcher/BatchLight_BatchManager_PBS.cxx,
26675           src/Launcher/BatchLight_BatchManager_PBS.hxx,
26676           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
26677           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
26678           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
26679           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
26680           src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
26681           src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
26682           src/Launcher/SALOME_Launcher.hxx,
26683           src/LifeCycleCORBA/TestContainerManager.cxx,
26684           src/ResourcesManager/Makefile.am,
26685           src/ResourcesManager/ResourcesManager.cxx,
26686           src/ResourcesManager/ResourcesManager.hxx,
26687           src/ResourcesManager/SALOME_LoadRateManager.cxx,
26688           src/ResourcesManager/SALOME_LoadRateManager.hxx,
26689           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
26690           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
26691           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
26692           src/ResourcesManager/SALOME_ResourcesManager.cxx,
26693           src/ResourcesManager/SALOME_ResourcesManager.hxx:
26694
26695         - New Launcher with some patches for EDF PBS configuration
26696         - Batch resources are now in a different list
26697
26698 2008-05-23 16:19  ribes
26699
26700         * src/Container/SALOME_ContainerManager.cxx:
26701
26702         - Bu when using SALOME_BATCH
26703
26704 2008-05-23 09:25  secher
26705
26706         * bin/shutdownSalome.py, src/Launcher/Launcher.cxx:
26707
26708         use of new killing method
26709
26710 2008-05-22 17:27  caremoli
26711
26712         * bin/runSalome.py, salome_adm/unix/config_files/check_lsf.m4,
26713           src/Launcher/BatchLight_BatchManager_PBS.cxx,
26714           src/NOTIFICATION_SWIG/Makefile.am:
26715
26716         CCAR: small modifications on LSF Batch class and on --pinter arg
26717
26718 2008-05-22 11:22  secher
26719
26720         * configure.ac, bin/setenv.py, bin/virtual_salome.py,
26721           doc/salome/salome_application.dox, idl/SALOME_Session.idl,
26722           salome_adm/unix/config_files/ac_linker_options.m4,
26723           salome_adm/unix/config_files/check_withihm.m4,
26724           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
26725           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
26726           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
26727           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
26728           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
26729           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
26730           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
26731           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
26732           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
26733           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
26734           src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
26735           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
26736           src/KERNEL_PY/salome_shared_modules.py,
26737           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
26738           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
26739           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
26740           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
26741           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
26742
26743         merging with V4_1_0_maintainenance
26744
26745 2008-05-22 10:23  jfa
26746
26747         * salome_adm/unix/config_files/check_withihm.m4:
26748
26749         Implement --with[out]-gui option for SMESH plugins.
26750
26751 2008-05-21 18:34  fayolle
26752
26753         * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
26754
26755         [no log message]
26756
26757 2008-05-21 18:30  fayolle
26758
26759         * src/DSC/DSC_User/Datastream/Calcium/: Copy2UserSpace.hxx,
26760           calciumf.c:
26761
26762         [no log message]
26763
26764 2008-05-21 16:58  fayolle
26765
26766         * src/DSC/DSC_User/Datastream/: Calcium/Calcium.c,
26767           Calcium/CalciumCxxInterface.hxx,
26768           Calcium/CalciumGenericProvidesPort.hxx,
26769           Calcium/CalciumInterface.hxx, Calcium/CalciumPortTraits.hxx,
26770           Calcium/Copy2CorbaSpace.hxx, Calcium/Copy2UserSpace.hxx,
26771           Calcium/Makefile.am, Calcium/calcium.h, Calcium/calciumE.h,
26772           CorbaTypeManipulator.hxx:
26773
26774         [no log message]
26775
26776 2008-05-21 16:00  secher
26777
26778         * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
26779           src/Launcher/Launcher.hxx,
26780           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
26781
26782         management of batch parameters like walltime, maxramsize and batch directory
26783
26784 2008-05-20 12:10  ribes
26785
26786         * src/Launcher/: BatchLight_BatchManager.cxx,
26787           BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
26788           BatchLight_BatchTest.cxx, BatchLight_BatchTest.hxx,
26789           BatchLight_Job.cxx, BatchLight_Job.hxx:
26790
26791         - Adding home to PBS command file
26792
26793 2008-05-20 11:24  ribes
26794
26795         * src/Launcher/: BatchLight_BatchTest.cxx,
26796           BatchLight_BatchTest.hxx:
26797
26798         - Bug--, set home to the PBS file
26799
26800 2008-05-20 10:15  jfa
26801
26802         * idl/SALOME_Session.idl:
26803
26804         NPAL19734: Missing method in SALOME_Session.idl
26805
26806 2008-05-15 16:26  ribes
26807
26808         * idl/SALOME_ContainerManager.idl,
26809           src/Launcher/SALOME_Launcher.cxx,
26810           src/Launcher/SALOME_Launcher.hxx:
26811
26812         - Separate batch test from CORBA method submitSalomeJob
26813         - Add testBatch to Launcher
26814
26815 2008-05-15 14:36  vsr
26816
26817         * src/SALOMEDS/Test/Makefile.am:
26818
26819         Fix a compilation pb on SL4.2
26820
26821 2008-05-14 17:05  mnt
26822
26823         * configure.ac:
26824
26825         Update Salome version to 3.2.10
26826
26827 2008-05-14 16:55  ribes
26828
26829         * configure.ac, bin/setenv.py, bin/virtual_salome.py,
26830           doc/salome/salome_application.dox,
26831           salome_adm/unix/config_files/ac_linker_options.m4,
26832           src/KERNEL_PY/salome_shared_modules.py,
26833           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
26834           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
26835           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
26836           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
26837           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
26838
26839         Merger branche V4_1_0_maintainance
26840
26841 2008-05-14 16:14  ribes
26842
26843         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
26844           SALOME_ResourcesCatalog_Handler.hxx, SALOME_ResourcesManager.cxx,
26845           SALOME_ResourcesManager.hxx:
26846
26847         Patch for bach clusters
26848
26849 2008-05-14 15:42  secher
26850
26851         * idl/SALOME_ContainerManager.idl,
26852           src/Launcher/BatchLight_BatchManager.cxx,
26853           src/Launcher/BatchLight_BatchManager.hxx,
26854           src/Launcher/BatchLight_BatchManager_PBS.cxx,
26855           src/Launcher/BatchLight_BatchManager_PBS.hxx,
26856           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
26857           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
26858           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
26859           src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
26860           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx:
26861
26862         first version of launcher with use of inified batchmanager
26863
26864 2008-05-13 15:17  vsr
26865
26866         * configure.ac:
26867
26868         Change version to 3.2.10
26869
26870 2008-05-08 10:42  abd
26871
26872         * src/: Container/Container_i.cxx, Launcher/BatchLight_Job.cxx,
26873           Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx,
26874           ResourcesManager/SALOME_ResourcesManager.cxx,
26875           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
26876           Utils/OpUtil.cxx, Utils/OpUtil.hxx:
26877
26878         Correct compilation under Win32 platform
26879
26880 2008-04-28 15:41  mnt
26881
26882         * configure.ac:
26883
26884         Changing version number to 5.0.0
26885
26886 2008-04-28 08:18  abd
26887
26888         * configure.ac, bin/Makefile.am, bin/appli_clean.sh,
26889           bin/appli_gen.py, bin/appli_install.sh,
26890           bin/launchConfigureParser.py, bin/runSalome.py,
26891           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
26892           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
26893           bin/appliskel/runAppli, bin/appliskel/runConsole,
26894           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
26895           bin/appliskel/runTests, doc/salome/Makefile.am,
26896           doc/salome/tui/Makefile.am, idl/Makefile.am,
26897           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
26898           salome_adm/unix/SALOMEconfig.ref.in,
26899           salome_adm/unix/make_common_starter.am,
26900           salome_adm/unix/config_files/check_hdf5.m4,
26901           salome_adm/unix/config_files/check_omniorb.m4,
26902           salome_adm/unix/config_files/check_swig.m4,
26903           src/Communication_SWIG/Makefile.am,
26904           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
26905           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
26906           src/Container/SALOME_Container.cxx,
26907           src/Container/SALOME_ContainerManager.cxx,
26908           src/Container/SALOME_ContainerPy.py,
26909           src/Container/SALOME_Container_i.hxx, src/DF/Makefile.am,
26910           src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
26911           src/DSC/DSC_Basic/DSC_interface.hxx,
26912           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
26913           src/DSC/DSC_Python/dsccalcium.py, src/DSC/DSC_User/Makefile.am,
26914           src/DSC/DSC_User/Superv_Component_i.cxx,
26915           src/DSC/DSC_User/Superv_Component_i.hxx,
26916           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
26917           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
26918           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
26919           src/DSC/DSC_User/Datastream/GenericPort.hxx,
26920           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
26921           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
26922           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
26923           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
26924           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
26925           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
26926           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
26927           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
26928           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
26929           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
26930           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
26931           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
26932           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
26933           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
26934           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
26935           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
26936           src/KERNEL_PY/Makefile.am,
26937           src/Launcher/BatchLight_BatchManager.cxx,
26938           src/Launcher/BatchLight_BatchManager.hxx,
26939           src/Launcher/BatchLight_BatchManager_PBS.cxx,
26940           src/Launcher/BatchLight_BatchManager_PBS.hxx,
26941           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
26942           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
26943           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
26944           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
26945           src/Launcher/SALOME_Launcher.hxx,
26946           src/LifeCycleCORBA_SWIG/Makefile.am,
26947           src/Logger/SALOME_Logger_Server.hxx,
26948           src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
26949           src/NamingService/NamingService_WaitForServerReadiness.cxx,
26950           src/NamingService/Test/NamingServiceTest.cxx,
26951           src/Notification/CosNotifyShorthands.h,
26952           src/Notification/Makefile.am,
26953           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
26954           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
26955           src/ResourcesManager/SALOME_ResourcesManager.cxx,
26956           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Driver_i.hxx,
26957           src/SALOMEDS/Test/Makefile.am, src/SALOMEDSImpl/Makefile.am,
26958           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
26959           src/TestContainer/Makefile.am, src/Utils/Makefile.am,
26960           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
26961           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
26962           src/Utils/Test/Makefile.am:
26963
26964         Correct compilation on Linux
26965
26966 2008-04-25 15:43  secher
26967
26968         * src/Launcher/: Launcher.cxx, Makefile.am, MpiImpl.cxx,
26969           MpiImpl.hxx:
26970
26971         add new classes in batch manager to emulate PBS and LSF clients
26972
26973 2008-04-25 11:49  srn
26974
26975         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
26976           SALOMEDSImpl_AttributeTableOfReal.cxx,
26977           SALOMEDSImpl_AttributeTableOfString.cxx:
26978
26979         Bug IPAL19426, fixed methods Save/Load
26980
26981 2008-04-25 10:03  vsr
26982
26983         * configure.ac:
26984
26985         Change version number : 5.0.0
26986
26987 2008-04-24 12:55  srn
26988
26989         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
26990           SALOMEDSImpl_AttributeTableOfReal.cxx,
26991           SALOMEDSImpl_AttributeTableOfString.cxx:
26992
26993         BugID: IPAL19426 Fixed methods Save/Load
26994
26995 2008-04-24 12:04  secher
26996
26997         * src/: Launcher/BatchLight_BatchManager.cxx,
26998           Launcher/BatchLight_BatchManager.hxx,
26999           Launcher/BatchLight_BatchManager_PBS.cxx,
27000           Launcher/BatchLight_BatchManager_PBS.hxx,
27001           Launcher/BatchLight_BatchManager_SLURM.cxx,
27002           Launcher/BatchLight_BatchManager_SLURM.hxx,
27003           Launcher/BatchLight_Job.cxx, Launcher/BatchLight_Job.hxx,
27004           Launcher/Launcher.cxx, Launcher/Launcher.hxx,
27005           Launcher/Makefile.am, Launcher/MpiImpl.cxx, Launcher/MpiImpl.hxx,
27006           ResourcesManager/Makefile.am,
27007           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
27008           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
27009
27010         move buildSalomeCouplingScript from BatchLigth classes to Launcher
27011
27012 2008-04-21 13:24  abd
27013
27014         * src/: HDFPersist/HDFascii.cc,
27015           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
27016           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
27017           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
27018           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
27019           TOOLSDS/SALOMEDS_Tool.cxx:
27020
27021         Fix run-time errors during debug of Windows version
27022
27023 2008-04-21 13:23  abd
27024
27025         * src/DSC/DSC_Basic/ConnectionManager_i.cxx:
27026
27027         Windows version debug
27028
27029 2008-04-21 13:22  abd
27030
27031         * src/DF/DF_Attribute.cxx:
27032
27033         Infinite circle during work on windows version
27034
27035 2008-04-18 16:11  prascle
27036
27037         * doc/salome/salome_application.dox:
27038
27039         PR: some doc corrections
27040
27041 2008-04-18 12:00  secher
27042
27043         * src/Launcher/: BatchLight_BatchManager.cxx,
27044           BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
27045           BatchLight_BatchManager_PBS.hxx,
27046           BatchLight_BatchManager_SLURM.cxx,
27047           BatchLight_BatchManager_SLURM.hxx, BatchLight_Job.cxx,
27048           BatchLight_Job.hxx, Launcher.cxx, Launcher.hxx, Makefile.am,
27049           MpiImpl.cxx, MpiImpl.hxx, SALOME_Launcher.cxx,
27050           SALOME_Launcher.hxx:
27051
27052         create a pure c++ launcher implementation
27053
27054 2008-04-17 10:03  secher
27055
27056         * src/: Container/Makefile.am,
27057           Container/SALOME_ContainerManager.cxx,
27058           LifeCycleCORBA/TestContainerManager.cxx,
27059           ResourcesManager/Makefile.am,
27060           ResourcesManager/ResourcesManager.cxx,
27061           ResourcesManager/ResourcesManager.hxx,
27062           ResourcesManager/SALOME_LoadRateManager.cxx,
27063           ResourcesManager/SALOME_LoadRateManager.hxx,
27064           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
27065           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
27066           ResourcesManager/SALOME_ResourcesManager.cxx,
27067           ResourcesManager/SALOME_ResourcesManager.hxx:
27068
27069         create a pure c++ resourcesManager implementation
27070
27071 2008-04-17 00:46  prascle
27072
27073         * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
27074           SALOME_LifeCycleCORBA.hxx:
27075
27076         PR: bug 18556
27077
27078 2008-04-16 14:51  mnt
27079
27080         * src/KERNEL_PY/salome_shared_modules.py:
27081
27082         Update for install Salome libraries to lib folder instead of lib64 on 64-bit platform
27083
27084 2008-04-16 14:49  mnt
27085
27086         * salome_adm/unix/config_files/ac_linker_options.m4:
27087
27088         Update for install Salome libraries to lib folder instead of lib 64 on 64-bit platform
27089
27090 2008-04-16 14:46  mnt
27091
27092         * bin/: setenv.py, virtual_salome.py:
27093
27094         Update for install Salome libraries on 64-bit platform to lib folder instead of lib64
27095
27096 2008-04-16 10:05  mnt
27097
27098         * configure.ac:
27099
27100         Changing version to 4.1.2
27101
27102 2008-04-15 19:02  caremoli
27103
27104         * bin/appliskel/runRemote.sh, resources/KERNELCatalog.xml.in,
27105           src/Container/SALOME_ContainerManager.cxx,
27106           src/Container/Salome_file_i.cxx,
27107           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
27108           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
27109           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
27110           src/ResourcesManager/SALOME_ResourcesManager.cxx,
27111           src/SALOMEDSImpl/Test/Makefile.am:
27112
27113         CCAR: update from maintenance branch
27114
27115 2008-04-11 15:40  secher
27116
27117         * bin/config_appli.xml, src/Container/SALOME_ContainerManager.cxx,
27118           src/Container/SALOME_ContainerManager.hxx,
27119           src/ResourcesManager/SALOME_ResourcesManager.cxx,
27120           src/ResourcesManager/SALOME_ResourcesManager.hxx:
27121
27122         move building command to launch containers from resources manager to containers manager
27123
27124 2008-04-04 14:22  ouv
27125
27126         * src/KERNEL_PY/salome_test.py:
27127
27128         Roll back to revision 1.7.8.1
27129
27130 2008-04-04 12:38  abd
27131
27132         * src/TOOLSDS/SALOMEDS_Tool.cxx:
27133
27134         first executable version
27135
27136 2008-04-04 12:30  abd
27137
27138         * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFconvert.hxx,
27139           HDFPersist/HDFexport.hxx, HDFPersist/HDFobject.cc,
27140           Launcher/BatchLight_BatchManager.cxx,
27141           Launcher/BatchLight_BatchManager_PBS.cxx,
27142           Launcher/BatchLight_BatchManager_SLURM.cxx,
27143           Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx,
27144           Launcher/SALOME_LauncherServer.cxx,
27145           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
27146           ResourcesManager/SALOME_ResourcesManager.hxx,
27147           SALOMEDSImpl/Makefile.am,
27148           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
27149           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
27150           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
27151           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
27152           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
27153           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
27154           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
27155           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
27156           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
27157           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
27158           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
27159           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
27160           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
27161           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
27162           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
27163           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
27164           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
27165           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
27166           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
27167           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
27168           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
27169           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
27170           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
27171           SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
27172           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
27173           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
27174           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
27175           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
27176           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
27177           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
27178           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
27179           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
27180           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
27181           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
27182           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
27183           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
27184           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
27185           SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
27186           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
27187           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
27188           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
27189           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
27190           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
27191           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
27192           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
27193           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
27194           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
27195           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
27196           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
27197           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
27198           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
27199           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
27200           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx:
27201
27202         first executable version
27203
27204 2008-04-04 12:26  abd
27205
27206         * src/: Container/SALOME_Container.cxx,
27207           Container/SALOME_Container.hxx,
27208           Container/SALOME_ContainerManager.cxx,
27209           Container/Salome_file_i.cxx, DF/DF_Label.hxx:
27210
27211         first executable version
27212
27213 2008-04-02 10:50  ouv
27214
27215         * src/KERNEL_PY/salome_test.py:
27216
27217         Bug IPAL19413 - Qt4 porting: import salome_test fails
27218
27219 2008-04-01 10:50  caremoli
27220
27221         * src/: Container/Salome_file_i.cxx,
27222           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
27223           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
27224
27225         CCAR: remove some traces
27226
27227 2008-03-28 09:10  caremoli
27228
27229         * bin/appliskel/runRemote.sh, resources/KERNELCatalog.xml.in,
27230           src/Container/SALOME_ContainerManager.cxx,
27231           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
27232           src/ResourcesManager/SALOME_ResourcesManager.cxx:
27233
27234         CCAR: change computer name in container log file name
27235         add exception catch in calcium interface
27236         add calcium types in catalog
27237         change specification of working dir in resources manager and runRemote.sh
27238
27239 2008-03-07 12:05  jfa
27240
27241         * src/SALOMEDSImpl/Test/Makefile.am:
27242
27243         Join delta from tag V4_1_1 till tag mergeto_V4_1_0_maintainance_07Mar2008.
27244
27245 2008-03-07 08:43  jfa
27246
27247         * COPYING, Makefile.am, clean_configure, configure.ac,
27248           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
27249           bin/Makefile.am, bin/NSparam.py, bin/addToKillList.py,
27250           bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
27251           bin/config_appli.xml, bin/envSalome.py, bin/killSalome.py,
27252           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
27253           bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
27254           bin/runNS.py, bin/runSalome, bin/runSalome.csh,
27255           bin/runSalome.ksh, bin/runSalome.py, bin/salomeConsole.py,
27256           bin/salome_session.py, bin/server.py, bin/setenv.py,
27257           bin/shutdownSalome.py, bin/virtual_salome.py,
27258           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
27259           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
27260           bin/appliskel/SalomeApp.xml, bin/appliskel/getAppliPath.py,
27261           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
27262           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
27263           bin/appliskel/runSession, bin/appliskel/runTests,
27264           bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
27265           doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
27266           doc/README.cluster-CCRT, doc/SALOME_Application.txt, doc/rst.css,
27267           doc/salome/Makefile.am, doc/salome/batch.dox,
27268           doc/salome/install.dox, doc/salome/kernel_resources.dox,
27269           doc/salome/kernel_services.dox, doc/salome/main.dox,
27270           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
27271           doc/salome/unittests.dox, doc/salome/version.texi,
27272           doc/salome/tui/Makefile.am, idl/Calcium_Ports.idl,
27273           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
27274           idl/Palm_Ports.idl, idl/SALOMEDS.idl,
27275           idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
27276           idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
27277           idl/SALOME_Exception.xml, idl/SALOME_ModuleCatalog.idl,
27278           idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
27279           idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
27280           resources/CatalogResources.xml.in,
27281           resources/KERNELCatalog.xml.in, resources/Makefile.am,
27282           salome_adm/Makefile.am, salome_adm/unix/Doxyfile,
27283           salome_adm/unix/F77config.h.in, salome_adm/unix/Makefile.am,
27284           salome_adm/unix/SALOMEconfig.ref.in,
27285           salome_adm/unix/make_common_starter.am,
27286           salome_adm/unix/pythonbe.py, salome_adm/unix/sstream.in,
27287           salome_adm/unix/DEPRECATED/make_commence.in,
27288           salome_adm/unix/DEPRECATED/make_conclude.in,
27289           salome_adm/unix/DEPRECATED/make_module.in,
27290           salome_adm/unix/DEPRECATED/make_omniorb.in,
27291           salome_adm/unix/config_files/Makefile.am,
27292           salome_adm/unix/config_files/ac_cc_warnings.m4,
27293           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
27294           salome_adm/unix/config_files/check_Salome.m4,
27295           salome_adm/unix/config_files/check_boost.m4,
27296           salome_adm/unix/config_files/check_cas.m4,
27297           salome_adm/unix/config_files/check_cppunit.m4,
27298           salome_adm/unix/config_files/check_hdf5.m4,
27299           salome_adm/unix/config_files/check_htmlgen.m4,
27300           salome_adm/unix/config_files/check_java.m4,
27301           salome_adm/unix/config_files/check_libxml.m4,
27302           salome_adm/unix/config_files/check_mpi.m4,
27303           salome_adm/unix/config_files/check_omniorb.m4,
27304           salome_adm/unix/config_files/check_opengl.m4,
27305           salome_adm/unix/config_files/check_openmpi.m4,
27306           salome_adm/unix/config_files/check_paco++.m4,
27307           salome_adm/unix/config_files/check_qt.m4,
27308           salome_adm/unix/config_files/check_swig.m4,
27309           salome_adm/unix/config_files/production.m4,
27310           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
27311           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
27312           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
27313           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
27314           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
27315           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
27316           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
27317           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
27318           src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
27319           src/Communication/MatrixClient.hxx,
27320           src/Communication/MultiCommException.hxx,
27321           src/Communication/ReceiverFactory.hxx,
27322           src/Communication/Receivers.cxx,
27323           src/Communication/SALOMEMultiComm.hxx,
27324           src/Communication/SALOME_Comm_i.cxx,
27325           src/Communication/SALOME_Comm_i.hxx,
27326           src/Communication/SALOME_Communication.hxx,
27327           src/Communication/SALOME_Matrix_i.cxx,
27328           src/Communication/SALOME_Matrix_i.hxx,
27329           src/Communication/SenderFactory.hxx,
27330           src/Communication_SWIG/Makefile.am,
27331           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
27332           src/Container/Container_init_python.cxx,
27333           src/Container/Container_init_python.hxx,
27334           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
27335           src/Container/SALOME_Component_i.hxx,
27336           src/Container/SALOME_Container.cxx,
27337           src/Container/SALOME_Container.hxx,
27338           src/Container/SALOME_Container.py,
27339           src/Container/SALOME_ContainerManager.cxx,
27340           src/Container/SALOME_ContainerManager.hxx,
27341           src/Container/SALOME_ContainerManagerServer.cxx,
27342           src/Container/SALOME_ContainerPy.py,
27343           src/Container/SALOME_Container_SignalsHandler.cxx,
27344           src/Container/SALOME_Container_i.hxx,
27345           src/Container/SALOME_FileRef_i.cxx,
27346           src/Container/SALOME_FileRef_i.hxx,
27347           src/Container/SALOME_FileTransfer_i.cxx,
27348           src/Container/SALOME_FileTransfer_i.hxx,
27349           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
27350           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
27351           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
27352           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
27353           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
27354           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
27355           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
27356           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
27357           src/DSC/DSC.dox, src/DSC/Makefile.am,
27358           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
27359           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
27360           src/DSC/DSC_Basic/DSC_Basic.hxx,
27361           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
27362           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
27363           src/DSC/DSC_Basic/DSC_interface.hxx,
27364           src/DSC/DSC_Basic/Makefile.am,
27365           src/DSC/DSC_Basic/PortProperties_i.cxx,
27366           src/DSC/DSC_Basic/PortProperties_i.hxx,
27367           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
27368           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
27369           src/DSC/DSC_Python/dsccalcium.py,
27370           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
27371           src/DSC/DSC_User/Superv_Component_i.cxx,
27372           src/DSC/DSC_User/Superv_Component_i.hxx,
27373           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
27374           src/DSC/DSC_User/port_factory.hxx,
27375           src/DSC/DSC_User/provides_port.cxx,
27376           src/DSC/DSC_User/provides_port.hxx,
27377           src/DSC/DSC_User/test_DSC_Exception.cxx,
27378           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
27379           src/DSC/DSC_User/Basic/Makefile.am,
27380           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
27381           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
27382           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
27383           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
27384           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
27385           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
27386           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
27387           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
27388           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
27389           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
27390           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
27391           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
27392           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
27393           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
27394           src/DSC/DSC_User/Datastream/GenericPort.hxx,
27395           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
27396           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
27397           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
27398           src/DSC/DSC_User/Datastream/Makefile.am,
27399           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
27400           src/DSC/DSC_User/Datastream/fake.cc,
27401           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
27402           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
27403           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
27404           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
27405           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
27406           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
27407           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
27408           src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
27409           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
27410           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
27411           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
27412           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
27413           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
27414           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
27415           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
27416           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
27417           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
27418           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
27419           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
27420           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
27421           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
27422           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
27423           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
27424           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
27425           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
27426           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
27427           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
27428           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
27429           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
27430           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
27431           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
27432           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
27433           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
27434           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
27435           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
27436           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
27437           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
27438           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
27439           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
27440           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
27441           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
27442           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
27443           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
27444           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
27445           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
27446           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
27447           src/DSC/DSC_User/Datastream/Calcium/version.h,
27448           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
27449           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
27450           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
27451           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
27452           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
27453           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
27454           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
27455           src/DSC/ParallelDSC/Makefile.am,
27456           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
27457           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
27458           src/GenericObj/Makefile.am,
27459           src/GenericObj/SALOME_GenericObj_i.cc,
27460           src/GenericObj/SALOME_GenericObj_i.hh,
27461           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
27462           src/HDFPersist/HDFattrGetSize.c,
27463           src/HDFPersist/HDFcontainerObject.cc,
27464           src/HDFPersist/HDFcontainerObject.hxx,
27465           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
27466           src/HDFPersist/HDFdatasetGetOrder.c,
27467           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFexport.hxx,
27468           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.cc,
27469           src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFinternalObject.cc,
27470           src/HDFPersist/HDFinternalObject.hxx,
27471           src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
27472           src/HDFPersist/HDFobjectIdentify.c,
27473           src/HDFPersist/HDFobjectType.c, src/HDFPersist/Makefile.am,
27474           src/HDFPersist/test1.c, src/KERNEL_PY/Help.py,
27475           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/batchmode_salome.py,
27476           src/KERNEL_PY/import_hook.py,
27477           src/KERNEL_PY/kernel_shared_modules.py,
27478           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
27479           src/KERNEL_PY/salome_iapp.py,
27480           src/KERNEL_PY/salome_shared_modules.py,
27481           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
27482           src/Launcher/BatchLight_BatchManager.cxx,
27483           src/Launcher/BatchLight_BatchManager.hxx,
27484           src/Launcher/BatchLight_BatchManager_PBS.cxx,
27485           src/Launcher/BatchLight_BatchManager_PBS.hxx,
27486           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
27487           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
27488           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
27489           src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
27490           src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
27491           src/Launcher/SALOME_Launcher.hxx,
27492           src/Launcher/SALOME_LauncherServer.cxx,
27493           src/LifeCycleCORBA/LifeCycleCORBA.py,
27494           src/LifeCycleCORBA/Makefile.am,
27495           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
27496           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
27497           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
27498           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
27499           src/LifeCycleCORBA/TestContainerManager.cxx,
27500           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
27501           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
27502           src/LifeCycleCORBA/Test/Makefile.am,
27503           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
27504           src/LifeCycleCORBA_SWIG/Makefile.am,
27505           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
27506           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
27507           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
27508           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
27509           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
27510           src/Logger/SALOME_Logger_Server_main.cxx,
27511           src/Logger/Test/Makefile.am, src/MPIContainer/Makefile.am,
27512           src/ModuleCatalog/Makefile.am,
27513           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
27514           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
27515           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
27516           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
27517           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
27518           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
27519           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
27520           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
27521           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
27522           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
27523           src/ModuleCatalog/TestModuleCatalog.py,
27524           src/ModuleGenerator/IDLparser.py,
27525           src/ModuleGenerator/Makefile.am,
27526           src/NOTIFICATION_SWIG/Makefile.am,
27527           src/NOTIFICATION_SWIG/NOTIFICATION.i,
27528           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
27529           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
27530           src/NamingService/Makefile.am,
27531           src/NamingService/NamingService_WaitForServerReadiness.cxx,
27532           src/NamingService/NamingService_WaitForServerReadiness.hxx,
27533           src/NamingService/SALOME_NamingService.cxx,
27534           src/NamingService/SALOME_NamingServicePy.py,
27535           src/NamingService/ServiceUnreachable.hxx,
27536           src/NamingService/Test/Makefile.am,
27537           src/NamingService/Test/NamingServiceTest.cxx,
27538           src/NamingService/Test/NamingServiceTest.hxx,
27539           src/NamingService/Test/TestNamingService.py,
27540           src/Notification/CosNotifyShorthands.h,
27541           src/Notification/Makefile.am, src/Notification/NOTIFICATION.hxx,
27542           src/Notification/NOTIFICATION_Consumer.cxx,
27543           src/Notification/NOTIFICATION_Consumer.hxx,
27544           src/Notification/NOTIFICATION_Supplier.hxx,
27545           src/Notification/SALOME_NOTIFICATION.hxx,
27546           src/ParallelContainer/Makefile.am,
27547           src/ParallelContainer/Parallel_Salome_file_i.cxx,
27548           src/ParallelContainer/Parallel_Salome_file_i.hxx,
27549           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
27550           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
27551           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
27552           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
27553           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
27554           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
27555           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
27556           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
27557           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
27558           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
27559           src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
27560           src/Registry/RegistryService.cxx,
27561           src/Registry/RegistryService.hxx,
27562           src/Registry/SALOME_Registry.hxx,
27563           src/Registry/SALOME_Registry_Server.cxx,
27564           src/ResourcesManager/Makefile.am,
27565           src/ResourcesManager/SALOME_LoadRateManager.cxx,
27566           src/ResourcesManager/SALOME_LoadRateManager.hxx,
27567           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
27568           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
27569           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
27570           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
27571           src/ResourcesManager/SALOME_ResourcesManager.cxx,
27572           src/ResourcesManager/SALOME_ResourcesManager.hxx,
27573           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
27574           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
27575           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
27576           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
27577           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
27578           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
27579           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
27580           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
27581           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
27582           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
27583           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
27584           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
27585           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
27586           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
27587           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
27588           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
27589           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
27590           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
27591           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
27592           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
27593           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
27594           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
27595           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
27596           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
27597           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
27598           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
27599           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
27600           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
27601           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
27602           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
27603           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
27604           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
27605           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
27606           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
27607           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
27608           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
27609           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
27610           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
27611           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
27612           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
27613           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
27614           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
27615           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
27616           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
27617           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
27618           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
27619           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
27620           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
27621           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
27622           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
27623           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
27624           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
27625           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
27626           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
27627           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
27628           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
27629           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
27630           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
27631           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
27632           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
27633           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
27634           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
27635           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
27636           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
27637           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
27638           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
27639           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
27640           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
27641           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
27642           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
27643           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
27644           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
27645           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
27646           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
27647           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
27648           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
27649           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
27650           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
27651           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
27652           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
27653           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
27654           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
27655           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
27656           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
27657           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
27658           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
27659           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
27660           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
27661           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
27662           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
27663           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
27664           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
27665           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
27666           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
27667           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
27668           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
27669           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
27670           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
27671           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
27672           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
27673           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
27674           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
27675           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
27676           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
27677           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
27678           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
27679           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
27680           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
27681           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
27682           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
27683           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
27684           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
27685           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
27686           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
27687           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
27688           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
27689           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
27690           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
27691           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
27692           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
27693           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
27694           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
27695           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
27696           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
27697           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
27698           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
27699           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
27700           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
27701           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
27702           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
27703           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
27704           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
27705           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
27706           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
27707           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
27708           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
27709           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
27710           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
27711           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
27712           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
27713           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
27714           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
27715           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
27716           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
27717           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
27718           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
27719           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
27720           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
27721           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
27722           src/SALOMEDS/SALOMEDS_Attributes.hxx,
27723           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
27724           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
27725           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
27726           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
27727           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
27728           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
27729           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
27730           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
27731           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
27732           src/SALOMEDS/SALOMEDS_Client.cxx,
27733           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
27734           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
27735           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
27736           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
27737           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
27738           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
27739           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
27740           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
27741           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
27742           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
27743           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
27744           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
27745           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
27746           src/SALOMEDS/SALOMEDS_Defines.hxx,
27747           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
27748           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
27749           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
27750           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
27751           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
27752           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
27753           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
27754           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
27755           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
27756           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
27757           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
27758           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
27759           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
27760           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
27761           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
27762           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
27763           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
27764           src/SALOMEDS/SALOMEDS_FileType.cdl,
27765           src/SALOMEDS/SALOMEDS_FileType.cxx,
27766           src/SALOMEDS/SALOMEDS_FileType.hxx,
27767           src/SALOMEDS/SALOMEDS_FileType.ixx,
27768           src/SALOMEDS/SALOMEDS_FileType.jxx,
27769           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
27770           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
27771           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
27772           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
27773           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
27774           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
27775           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
27776           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
27777           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
27778           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
27779           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
27780           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
27781           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
27782           src/SALOMEDS/SALOMEDS_IParameters.cxx,
27783           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
27784           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
27785           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
27786           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
27787           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
27788           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
27789           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
27790           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
27791           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
27792           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
27793           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
27794           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
27795           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
27796           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
27797           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
27798           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
27799           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
27800           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
27801           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
27802           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
27803           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
27804           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
27805           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
27806           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
27807           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
27808           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
27809           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
27810           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
27811           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
27812           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
27813           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
27814           src/SALOMEDS/SALOMEDS_SComponent.cxx,
27815           src/SALOMEDS/SALOMEDS_SComponent.hxx,
27816           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
27817           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
27818           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
27819           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
27820           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
27821           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
27822           src/SALOMEDS/SALOMEDS_SObject.cxx,
27823           src/SALOMEDS/SALOMEDS_SObject.hxx,
27824           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
27825           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
27826           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
27827           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
27828           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
27829           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
27830           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
27831           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
27832           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
27833           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
27834           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
27835           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
27836           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
27837           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
27838           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
27839           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
27840           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
27841           src/SALOMEDS/SALOMEDS_Server.cxx,
27842           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
27843           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
27844           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
27845           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
27846           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
27847           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
27848           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
27849           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
27850           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
27851           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
27852           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
27853           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
27854           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
27855           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
27856           src/SALOMEDS/SALOMEDS_Study_i.cxx,
27857           src/SALOMEDS/SALOMEDS_Study_i.hxx,
27858           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
27859           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
27860           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
27861           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
27862           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
27863           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
27864           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
27865           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
27866           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
27867           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
27868           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
27869           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
27870           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
27871           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
27872           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
27873           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
27874           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
27875           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
27876           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
27877           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
27878           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
27879           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
27880           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
27881           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
27882           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
27883           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
27884           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
27885           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
27886           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
27887           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
27888           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
27889           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
27890           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
27891           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
27892           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
27893           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
27894           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
27895           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
27896           src/SALOMEDS/Test/SALOMEDSTest.cxx,
27897           src/SALOMEDS/Test/SALOMEDSTest.hxx,
27898           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
27899           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
27900           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
27901           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
27902           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
27903           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
27904           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
27905           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
27906           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
27907           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
27908           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
27909           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
27910           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
27911           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
27912           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
27913           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
27914           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
27915           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
27916           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
27917           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
27918           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
27919           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
27920           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
27921           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
27922           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
27923           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
27924           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
27925           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
27926           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
27927           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
27928           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
27929           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
27930           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
27931           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
27932           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
27933           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
27934           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
27935           src/SALOMEDS/Test/TestSALOMEDS.cxx,
27936           src/SALOMEDSClient/Makefile.am,
27937           src/SALOMEDSClient/SALOMEDSClient.hxx,
27938           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
27939           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
27940           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
27941           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
27942           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
27943           src/SALOMEDSImpl/Makefile.am,
27944           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
27945           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
27946           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
27947           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
27948           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
27949           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
27950           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
27951           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
27952           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
27953           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
27954           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
27955           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
27956           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
27957           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
27958           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
27959           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
27960           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
27961           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
27962           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
27963           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
27964           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
27965           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
27966           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
27967           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
27968           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
27969           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
27970           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
27971           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
27972           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
27973           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
27974           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
27975           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
27976           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
27977           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
27978           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
27979           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
27980           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
27981           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
27982           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
27983           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
27984           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
27985           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
27986           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
27987           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
27988           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
27989           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
27990           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
27991           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
27992           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
27993           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
27994           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
27995           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
27996           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
27997           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
27998           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
27999           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
28000           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
28001           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
28002           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
28003           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
28004           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
28005           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
28006           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
28007           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
28008           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
28009           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
28010           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
28011           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
28012           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
28013           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
28014           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
28015           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
28016           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
28017           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
28018           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
28019           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
28020           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
28021           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
28022           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
28023           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
28024           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
28025           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
28026           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
28027           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
28028           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
28029           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
28030           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
28031           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
28032           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
28033           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
28034           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
28035           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
28036           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
28037           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
28038           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
28039           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
28040           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
28041           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
28042           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
28043           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
28044           src/SALOMELocalTrace/BaseTraceCollector.cxx,
28045           src/SALOMELocalTrace/BaseTraceCollector.hxx,
28046           src/SALOMELocalTrace/FileTraceCollector.cxx,
28047           src/SALOMELocalTrace/FileTraceCollector.hxx,
28048           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
28049           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
28050           src/SALOMELocalTrace/LocalTraceCollector.cxx,
28051           src/SALOMELocalTrace/LocalTraceCollector.hxx,
28052           src/SALOMELocalTrace/Makefile.am,
28053           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
28054           src/SALOMELocalTrace/utilities.h,
28055           src/SALOMELocalTrace/Test/Makefile.am,
28056           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
28057           src/SALOMETraceCollector/Makefile.am,
28058           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
28059           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
28060           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
28061           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
28062           src/SALOMETraceCollector/Test/Makefile.am,
28063           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
28064           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
28065           src/TestContainer/SALOME_TestComponentPy.py,
28066           src/TestContainer/SALOME_TestComponent_i.cxx,
28067           src/TestContainer/SALOME_TestComponent_i.hxx,
28068           src/TestContainer/TestComponentPy.py,
28069           src/TestContainer/TestContainer.cxx,
28070           src/TestContainer/TestLogger.cxx,
28071           src/TestMPIContainer/Makefile.am,
28072           src/TestMPIContainer/TestMPIComponentEngine.cxx,
28073           src/TestMPIContainer/TestMPIComponentEngine.hxx,
28074           src/TestMPIContainer/TestMPIContainer.cxx,
28075           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
28076           src/Utils/Makefile.am, src/Utils/OpUtil.hxx,
28077           src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
28078           src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.cxx,
28079           src/Utils/Utils_CommException.hxx,
28080           src/Utils/Utils_CorbaException.hxx,
28081           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
28082           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28083           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
28084           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
28085           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
28086           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
28087           src/Utils/Utils_SALOME_Exception.cxx,
28088           src/Utils/Utils_SALOME_Exception.hxx,
28089           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
28090           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
28091           src/Utils/Test/Makefile.am:
28092
28093         Join modifications from BR_Dev_For_4_0 tag V4_1_1.
28094
28095 2008-03-05 12:07  mnt
28096
28097         * src/SALOMEDSImpl/Test/Makefile.am:
28098
28099         Small update for SL4.2
28100
28101 2008-03-03 12:00  caremoli
28102
28103         * src/ParallelContainer/: SALOME_ParallelContainer_i.cxx,
28104           SALOME_ParallelContainer_i.hxx:
28105
28106         CCAR: add workingdir and logfilename in parallel container
28107
28108 2008-03-03 11:57  caremoli
28109
28110         * src/Container/Component_i.cxx:
28111
28112         CCAR: correct small problem on deleting connection and notification objects
28113
28114 2008-02-28 16:42  ribes
28115
28116         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
28117           SALOME_ResourcesCatalog_Parser.cxx,
28118           SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx:
28119
28120         - Add HostName to resource's informations
28121
28122 2008-02-28 16:40  ribes
28123
28124         * src/Launcher/: BatchLight_BatchTest.cxx,
28125           BatchLight_BatchTest.hxx, Makefile.am, SALOME_Launcher.cxx,
28126           SALOME_Launcher.hxx:
28127
28128         - Adding a test for batch machine before launching a job
28129
28130 2008-02-26 10:33  vsr
28131
28132         * src/ParallelContainer/: SALOME_ParallelContainer_i.cxx,
28133           SALOME_ParallelContainer_i.hxx:
28134
28135         Integrate patch from for Parallel Container
28136
28137 2008-02-21 17:12  prascle
28138
28139         * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
28140
28141         PR: missing in merge
28142
28143 2008-02-21 14:31  jfa
28144
28145         * src/Container/Component_i.cxx:
28146
28147         patchComponent.dat by Christian CAREMOLI. Problem with delete of SalomeApp_Engine.
28148
28149 2008-02-21 14:16  jfa
28150
28151         * bin/launchConfigureParser.py, bin/runSalome.py,
28152           bin/appliskel/runRemote.sh, idl/SALOME_Component.idl,
28153           idl/SALOME_ContainerManager.idl,
28154           salome_adm/unix/SALOMEconfig.ref.in,
28155           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
28156           src/Container/SALOME_Component_i.hxx,
28157           src/Container/SALOME_ContainerManager.cxx,
28158           src/Container/SALOME_Container_i.hxx,
28159           src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
28160           src/DSC/DSC_Basic/DSC_interface.hxx,
28161           src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
28162           src/DSC/DSC_User/Superv_Component_i.cxx,
28163           src/DSC/DSC_User/Superv_Component_i.hxx,
28164           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
28165           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
28166           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
28167           src/DSC/DSC_User/Datastream/GenericPort.hxx,
28168           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
28169           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
28170           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
28171           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
28172           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
28173           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
28174           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
28175           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
28176           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
28177           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
28178           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
28179           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
28180           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
28181           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
28182           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
28183           src/Launcher/BatchLight_BatchManager.cxx,
28184           src/Launcher/BatchLight_BatchManager.hxx,
28185           src/Launcher/BatchLight_BatchManager_PBS.cxx,
28186           src/Launcher/BatchLight_BatchManager_PBS.hxx,
28187           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
28188           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
28189           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
28190           src/Launcher/SALOME_Launcher.cxx,
28191           src/Launcher/SALOME_Launcher.hxx,
28192           src/Logger/SALOME_Logger_Server.hxx,
28193           src/NOTIFICATION_SWIG/Makefile.am,
28194           src/NamingService/NamingService_WaitForServerReadiness.cxx,
28195           src/NamingService/Test/NamingServiceTest.cxx,
28196           src/Notification/CosNotifyShorthands.h,
28197           src/Notification/Makefile.am,
28198           src/ResourcesManager/SALOME_ResourcesManager.cxx,
28199           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
28200           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
28201           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28202           src/Utils/Utils_ORB_INIT.hxx:
28203
28204         diff_KERNEL_SRC_BR_Dev_For_4_0__BR_For40_DSC.tgz. For a correct use of YACS in a distributed environment.
28205
28206 2008-02-20 13:49  prascle
28207
28208         * src/Launcher/BatchLight_BatchManager_SLURM.cxx:
28209
28210         PR: merge from BR_Dev_For_4_0
28211
28212 2008-02-20 12:27  prascle
28213
28214         * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
28215
28216         PR: merge from BR_Dev_For_4_0
28217
28218 2008-02-20 11:40  prascle
28219
28220         * salome_adm/unix/config_files/check_libxml.m4:
28221
28222         PR: merge from BR_Dev_For_4_0
28223
28224 2008-02-20 11:29  prascle
28225
28226         * salome_adm/unix/config_files/Makefile.am:
28227
28228         PR: merge from BR_Dev_For_4_0
28229
28230 2008-02-19 18:35  prascle
28231
28232         * salome_adm/unix/config_files/: check_opengl.m4, check_qt.m4:
28233
28234         PR: no more use
28235
28236 2008-02-19 18:17  prascle
28237
28238         * configure.ac:
28239
28240         PR:
28241
28242 2008-02-19 17:34  prascle
28243
28244         * src/Container/SALOME_Container.cxx:
28245
28246         PR: from BR_Dev_For_4_0: superv container exit
28247
28248 2008-02-19 14:58  prascle
28249
28250         * src/Container/SALOME_Container.cxx:
28251
28252         PR: debug for supervcontainer exit
28253
28254 2008-02-19 11:11  caremoli
28255
28256         * bin/appliskel/runRemote.sh, idl/SALOME_Component.idl,
28257           idl/SALOME_ContainerManager.idl,
28258           salome_adm/unix/SALOMEconfig.ref.in,
28259           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
28260           src/Container/SALOME_Component_i.hxx,
28261           src/Container/SALOME_ContainerManager.cxx,
28262           src/Container/SALOME_Container_i.hxx,
28263           src/DSC/DSC_Python/calcium.i,
28264           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
28265           src/ResourcesManager/SALOME_ResourcesManager.cxx:
28266
28267         CCAR: add attributes to Container (logfilename, workingdir)
28268         - now SALOME Launcher put the Container in a working directory that can be set by the user
28269         through machineParameters (member workindir)
28270         - add complex, logical and strings to Datastream/Calcium DSC ports python interface
28271
28272 2008-02-19 09:06  ribes
28273
28274         * src/Launcher/BatchLight_BatchManager_PBS.cxx:
28275
28276         - Only one log file for PBS jobs
28277
28278 2008-02-18 16:49  fayolle
28279
28280         * src/DSC/DSC_User/Datastream/Calcium/Calcium.c:
28281
28282         [no log message]
28283
28284 2008-02-18 11:30  ribes
28285
28286         * idl/SALOME_ContainerManager.idl,
28287           src/Launcher/BatchLight_BatchManager_PBS.cxx,
28288           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
28289           src/Launcher/SALOME_Launcher.cxx,
28290           src/Launcher/SALOME_Launcher.hxx:
28291
28292         - Adding walltime and mem options to PBS batch
28293
28294 2008-02-18 10:44  caremoli
28295
28296         * src/DSC/DSC_User/: Superv_Component_i.cxx,
28297           Superv_Component_i.hxx, Basic/data_short_port_provides.hxx,
28298           Datastream/GenericPort.hxx, Datastream/GenericUsesPort.hxx,
28299           Datastream/Calcium/Calcium.cxx,
28300           Datastream/Calcium/CalciumProvidesPort.hxx,
28301           Datastream/Calcium/calcium_integer_port_uses.hxx,
28302           Datastream/Palm/PalmCouplingPolicy.hxx:
28303
28304         CCAR: remove memory leaks
28305
28306 2008-02-18 10:42  caremoli
28307
28308         * src/DSC/DSC_Basic/: DSC_interface.cxx, DSC_interface.hxx:
28309
28310         CCAR: remove memeory leaks
28311
28312 2008-02-18 10:39  caremoli
28313
28314         * src/NamingService/: NamingService_WaitForServerReadiness.cxx,
28315           Test/NamingServiceTest.cxx:
28316
28317         CCAR: cleaner management of getIORaddr return value
28318
28319 2008-02-18 10:38  caremoli
28320
28321         * src/: Logger/SALOME_Logger_Server.hxx,
28322           NOTIFICATION_SWIG/Makefile.am:
28323
28324         CCAR: remove warnings in compilation (already defined PACKAGE_xxx)
28325
28326 2008-02-18 10:36  caremoli
28327
28328         * src/: Notification/CosNotifyShorthands.h,
28329           Notification/Makefile.am, SALOMEDS/SALOMEDS_Driver_i.hxx,
28330           SALOMETraceCollector/SALOMETraceCollector.cxx:
28331
28332         CCAR: remove warnings in compilation on already defined variables
28333
28334 2008-02-18 10:35  caremoli
28335
28336         * salome_adm/unix/SALOMEconfig.ref.in,
28337           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28338           src/Utils/Utils_ORB_INIT.hxx:
28339
28340         CCAR: undefine some variables : PACKAGE_NAME, PACKAGE_XXX to remove warnings in compilation
28341
28342 2008-02-15 17:48  fayolle
28343
28344         * src/DSC/DSC_User/Datastream/Calcium/: Copy2UserSpace.hxx,
28345           calciumf.c:
28346
28347         [no log message]
28348
28349 2008-02-15 11:01  ribes
28350
28351         * src/Launcher/BatchLight_BatchManager_PBS.cxx:
28352
28353         - Patch for qsub expand env variables problems
28354
28355 2008-02-14 14:29  ribes
28356
28357         * bin/runSalome.py, src/DSC/DSC_Basic/DSC_i.cxx,
28358           src/DSC/DSC_User/Superv_Component_i.cxx,
28359           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
28360           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
28361           src/Launcher/BatchLight_BatchManager.cxx,
28362           src/Launcher/BatchLight_BatchManager_PBS.cxx:
28363
28364         - Patch PBS sh file
28365         - cout to cerr for debug messages
28366
28367 2008-02-13 16:20  fayolle
28368
28369         * src/DSC/DSC_User/: Superv_Component_i.hxx,
28370           Datastream/CorbaTypeManipulator.hxx,
28371           Datastream/CouplingPolicy.hxx, Datastream/GenericPort.hxx,
28372           Datastream/GenericUsesPort.hxx, Datastream/Calcium/Calcium.c,
28373           Datastream/Calcium/CalciumCouplingPolicy.hxx,
28374           Datastream/Calcium/CalciumCxxInterface.hxx,
28375           Datastream/Calcium/CalciumInterface.hxx,
28376           Datastream/Calcium/CalciumPortTraits.hxx,
28377           Datastream/Calcium/Copy2CorbaSpace.hxx,
28378           Datastream/Calcium/Copy2UserSpace.hxx,
28379           Datastream/Calcium/Makefile.am:
28380
28381         [no log message]
28382
28383 2008-02-13 16:05  ribes
28384
28385         * bin/launchConfigureParser.py, bin/runSalome.py,
28386           src/Launcher/BatchLight_BatchManager.cxx,
28387           src/Launcher/BatchLight_BatchManager.hxx,
28388           src/Launcher/BatchLight_BatchManager_PBS.cxx,
28389           src/Launcher/BatchLight_BatchManager_PBS.hxx,
28390           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
28391           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
28392           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx:
28393
28394         - Add some features for PBS
28395
28396 2008-02-13 14:50  caremoli
28397
28398         * src/DSC/DSC_Python/: calcium.i, dsccalcium.py:
28399
28400         CCAR: add methods to transfer files (6) to Python wrapping for DSC component
28401
28402 2008-02-13 12:13  secher
28403
28404         * src/Launcher/BatchLight_BatchManager_SLURM.cxx:
28405
28406         porting on platine CCRT machine
28407
28408 2008-02-11 16:03  prascle
28409
28410         * configure.ac, bin/Makefile.am, bin/appli_clean.sh,
28411           bin/appli_gen.py, bin/appli_install.sh,
28412           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
28413           bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
28414           bin/appliskel/runAppli, bin/appliskel/runConsole,
28415           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
28416           bin/appliskel/runTests, bin/appliskel/setAppliPath.sh,
28417           doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
28418           idl/Makefile.am, salome_adm/unix/make_common_starter.am,
28419           salome_adm/unix/config_files/check_hdf5.m4,
28420           salome_adm/unix/config_files/check_omniorb.m4,
28421           salome_adm/unix/config_files/check_swig.m4,
28422           src/Communication_SWIG/Makefile.am,
28423           src/Container/Container_i.cxx, src/Container/Makefile.am,
28424           src/Container/SALOME_ContainerPy.py, src/DF/Makefile.am,
28425           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
28426           src/DSC/DSC_User/Makefile.am,
28427           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
28428           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
28429           src/KERNEL_PY/Makefile.am, src/Launcher/Makefile.am,
28430           src/LifeCycleCORBA_SWIG/Makefile.am,
28431           src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
28432           src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am,
28433           src/SALOMEDSImpl/Makefile.am, src/TestContainer/Makefile.am,
28434           src/Utils/Makefile.am, src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28435           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Test/Makefile.am:
28436
28437         merge from BR_For40_DSC 11 feb 08
28438
28439 2008-02-11 09:38  caremoli
28440
28441         * salome_adm/unix/config_files/check_omniorb.m4,
28442           src/Container/Container_i.cxx,
28443           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
28444           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28445           src/Utils/Utils_ORB_INIT.cxx,
28446           src/Container/SALOME_ContainerPy.py:
28447
28448         CCAR: some debugs and more correct handle of maps in container
28449
28450 2008-02-11 09:31  prascle
28451
28452         * bin/appliskel/getAppliPath.py:
28453
28454         PR: missing commit
28455
28456 2008-02-06 15:07  mnt
28457
28458         * configure.ac:
28459
28460         Changing version to 4.1.1
28461
28462 2008-02-06 15:05  secher
28463
28464         * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
28465
28466         porting on intel 64 bits processor (platine on CCRT)
28467
28468 2008-02-05 14:32  prascle
28469
28470         * bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
28471           bin/setenv.py, bin/virtual_salome.py,
28472           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
28473           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
28474           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
28475           bin/appliskel/runSession, bin/appliskel/runTests,
28476           bin/appliskel/setAppliPath.sh,
28477           salome_adm/unix/config_files/ac_linker_options.m4,
28478           src/KERNEL_PY/salome_shared_modules.py:
28479
28480         PR: Appli and lib
28481
28482 2008-02-04 11:27  caremoli
28483
28484         * salome_adm/unix/config_files/check_omniorb.m4:
28485
28486         CCAR: remove -p option to omniidl for python (no more need)
28487
28488 2008-02-04 11:25  caremoli
28489
28490         * configure.ac, bin/Makefile.am, doc/salome/Makefile.am,
28491           doc/salome/tui/Makefile.am, idl/Makefile.am,
28492           salome_adm/unix/make_common_starter.am,
28493           salome_adm/unix/config_files/check_hdf5.m4,
28494           salome_adm/unix/config_files/check_omniorb.m4,
28495           salome_adm/unix/config_files/check_swig.m4,
28496           src/Communication_SWIG/Makefile.am, src/Container/Makefile.am,
28497           src/DF/Makefile.am, src/DSC/DSC_Python/Makefile.am,
28498           src/DSC/DSC_Python/calcium.i, src/DSC/DSC_User/Makefile.am,
28499           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
28500           src/KERNEL_PY/Makefile.am, src/Launcher/Makefile.am,
28501           src/LifeCycleCORBA_SWIG/Makefile.am,
28502           src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
28503           src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am,
28504           src/SALOMEDSImpl/Makefile.am, src/TestContainer/Makefile.am,
28505           src/Utils/Makefile.am, src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
28506           src/Utils/Test/Makefile.am:
28507
28508         CCAR: modifications for make dist and make distcheck
28509         - change package name from salome to SalomeKer
28510         - add EXTRA_DIST for SWIG targets
28511         - change calcium.i to make it conditionnaly compilable (numpy)
28512         - add -R option for libtool (hdf and omniorb)
28513         - add optional product (numpy) in configure.ac
28514         - add mandatory product (omniORBpy) in configure.ac
28515         - add DESTDIR target in make install
28516         - change @PACKAGE@ in salome in most places
28517         - split install doc in 2 phases
28518
28519 2008-02-04 09:34  prascle
28520
28521         * salome_adm/unix/config_files/check_libxml.m4:
28522
28523         PR: a bug in the last correction, sorry
28524
28525 2008-02-03 22:27  prascle
28526
28527         * salome_adm/unix/config_files/check_libxml.m4:
28528
28529         PR: always the same bug...
28530
28531 2008-02-01 09:59  akl
28532
28533         * salome_adm/unix/config_files/: Makefile.am, check_opengl.m4,
28534           check_qt.m4:
28535
28536         To remove obsolete scripts.
28537
28538 2008-01-30 16:58  vsr
28539
28540         * clean_configure, configure.ac, bin/Makefile.am, bin/NSparam.py,
28541           bin/addToKillList.py, bin/appli_gen.py, bin/envSalome.py,
28542           bin/killSalome.py, bin/killSalomeWithPort.py,
28543           bin/launchConfigureParser.py, bin/nameserver.py,
28544           bin/orbmodule.py, bin/runNS.py, bin/runSalome, bin/runSalome.csh,
28545           bin/runSalome.ksh, bin/runSalome.py, bin/server.py,
28546           bin/setenv.py, bin/shutdownSalome.py, bin/virtual_salome.py,
28547           bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
28548           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
28549           bin/appliskel/runRemote.sh, doc/Makefile.am,
28550           doc/salome/Makefile.am, doc/salome/batch.dox,
28551           doc/salome/install.dox, doc/salome/kernel_resources.dox,
28552           doc/salome/kernel_services.dox, doc/salome/main.dox,
28553           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
28554           doc/salome/unittests.dox, doc/salome/tui/Makefile.am,
28555           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
28556           idl/SALOMEDS.idl, idl/SALOME_Component.idl,
28557           idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
28558           idl/SALOME_Exception.xml, idl/SALOME_ModuleCatalog.idl,
28559           idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
28560           resources/CatalogResources.xml.in,
28561           resources/KERNELCatalog.xml.in, resources/Makefile.am,
28562           salome_adm/unix/make_common_starter.am,
28563           salome_adm/unix/config_files/Makefile.am,
28564           salome_adm/unix/config_files/check_boost.m4,
28565           salome_adm/unix/config_files/check_cppunit.m4,
28566           salome_adm/unix/config_files/check_htmlgen.m4,
28567           salome_adm/unix/config_files/check_libxml.m4,
28568           salome_adm/unix/config_files/check_mpi.m4,
28569           salome_adm/unix/config_files/check_omniorb.m4,
28570           salome_adm/unix/config_files/check_openmpi.m4,
28571           salome_adm/unix/config_files/check_swig.m4,
28572           salome_adm/unix/config_files/install-sh,
28573           salome_adm/unix/config_files/ltmain.sh,
28574           salome_adm/unix/config_files/missing,
28575           salome_adm/unix/config_files/production.m4, src/Makefile.am,
28576           src/Communication/SALOME_Communication.hxx,
28577           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
28578           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
28579           src/Container/SALOME_Container.cxx,
28580           src/Container/SALOME_ContainerManager.cxx,
28581           src/Container/SALOME_ContainerManager.hxx,
28582           src/Container/SALOME_ContainerManagerServer.cxx,
28583           src/Container/SALOME_ContainerPy.py,
28584           src/Container/SALOME_Container_i.hxx,
28585           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
28586           src/Container/TestContainerManager.cxx,
28587           src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
28588           src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
28589           src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
28590           src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
28591           src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
28592           src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
28593           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
28594           src/DSC/DSC.dox, src/DSC/Makefile.am,
28595           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
28596           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
28597           src/DSC/DSC_Basic/DSC_Basic.hxx,
28598           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
28599           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
28600           src/DSC/DSC_Python/dsccalcium.py, src/DSC/DSC_User/Makefile.am,
28601           src/DSC/DSC_User/Superv_Component_i.cxx,
28602           src/DSC/DSC_User/Superv_Component_i.hxx,
28603           src/DSC/DSC_User/port_factory.hxx,
28604           src/DSC/DSC_User/uses_port.hxx,
28605           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
28606           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
28607           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
28608           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
28609           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
28610           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
28611           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
28612           src/DSC/DSC_User/Datastream/GenericPort.hxx,
28613           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
28614           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
28615           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
28616           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
28617           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
28618           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
28619           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
28620           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
28621           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
28622           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
28623           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
28624           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
28625           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
28626           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
28627           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
28628           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
28629           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
28630           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
28631           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
28632           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
28633           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
28634           src/HDFPersist/HDFcontainerObject.cc,
28635           src/HDFPersist/HDFcontainerObject.hxx,
28636           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
28637           src/HDFPersist/HDFexport.hxx, src/HDFPersist/HDFfile.hxx,
28638           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
28639           src/HDFPersist/HDFinternalObject.cc,
28640           src/HDFPersist/HDFinternalObject.hxx,
28641           src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
28642           src/HDFPersist/Makefile.am, src/KERNEL_PY/Help.py,
28643           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/salome.py,
28644           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
28645           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
28646           src/Launcher/SALOME_Launcher.hxx,
28647           src/Launcher/SALOME_LauncherServer.cxx,
28648           src/LifeCycleCORBA/Makefile.am,
28649           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
28650           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
28651           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
28652           src/LifeCycleCORBA/TestContainerManager.cxx,
28653           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
28654           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
28655           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
28656           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
28657           src/ModuleCatalog/Makefile.am,
28658           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
28659           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
28660           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
28661           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
28662           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
28663           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
28664           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
28665           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
28666           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
28667           src/NamingService/SALOME_NamingService.cxx,
28668           src/NamingService/SALOME_NamingServicePy.py,
28669           src/NamingService/Test/TestNamingService.py,
28670           src/ParallelContainer/Makefile.am,
28671           src/ParallelContainer/Parallel_Salome_file_i.cxx,
28672           src/ParallelContainer/Parallel_Salome_file_i.hxx,
28673           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
28674           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
28675           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
28676           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
28677           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
28678           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
28679           src/Registry/RegistryService.cxx,
28680           src/Registry/RegistryService.hxx,
28681           src/Registry/SALOME_Registry.hxx,
28682           src/Registry/SALOME_Registry_Server.cxx,
28683           src/ResourcesManager/Makefile.am,
28684           src/ResourcesManager/SALOME_LoadRateManager.cxx,
28685           src/ResourcesManager/SALOME_LoadRateManager.hxx,
28686           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
28687           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
28688           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
28689           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
28690           src/ResourcesManager/SALOME_ResourcesManager.cxx,
28691           src/ResourcesManager/SALOME_ResourcesManager.hxx,
28692           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
28693           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
28694           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
28695           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
28696           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
28697           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
28698           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
28699           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
28700           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
28701           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
28702           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
28703           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
28704           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
28705           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
28706           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
28707           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
28708           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
28709           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
28710           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
28711           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
28712           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
28713           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
28714           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
28715           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
28716           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
28717           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
28718           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
28719           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
28720           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
28721           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
28722           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
28723           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
28724           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
28725           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
28726           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
28727           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
28728           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
28729           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
28730           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
28731           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
28732           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
28733           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
28734           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
28735           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
28736           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
28737           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
28738           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
28739           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
28740           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
28741           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
28742           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
28743           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
28744           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
28745           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
28746           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
28747           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
28748           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
28749           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
28750           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
28751           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
28752           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
28753           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
28754           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
28755           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
28756           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
28757           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
28758           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
28759           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
28760           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
28761           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
28762           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
28763           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
28764           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
28765           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
28766           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
28767           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
28768           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
28769           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
28770           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
28771           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
28772           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
28773           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
28774           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
28775           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
28776           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
28777           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
28778           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
28779           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
28780           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
28781           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
28782           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
28783           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
28784           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
28785           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
28786           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
28787           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
28788           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
28789           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
28790           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
28791           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
28792           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
28793           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
28794           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
28795           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
28796           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
28797           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
28798           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
28799           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
28800           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
28801           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
28802           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
28803           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
28804           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
28805           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
28806           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
28807           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
28808           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
28809           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
28810           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
28811           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
28812           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
28813           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
28814           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
28815           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
28816           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
28817           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
28818           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
28819           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
28820           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
28821           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
28822           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
28823           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
28824           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
28825           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
28826           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
28827           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
28828           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
28829           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
28830           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
28831           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
28832           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
28833           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
28834           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
28835           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
28836           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
28837           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
28838           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
28839           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
28840           src/SALOMEDS/SALOMEDS_Attributes.hxx,
28841           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
28842           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
28843           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
28844           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
28845           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
28846           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
28847           src/SALOMEDS/SALOMEDS_Client.cxx,
28848           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
28849           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
28850           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
28851           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
28852           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
28853           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
28854           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
28855           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
28856           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
28857           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
28858           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
28859           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
28860           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
28861           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
28862           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
28863           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
28864           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
28865           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
28866           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
28867           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
28868           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
28869           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
28870           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
28871           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
28872           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
28873           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
28874           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
28875           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
28876           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
28877           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
28878           src/SALOMEDS/SALOMEDS_FileType.cdl,
28879           src/SALOMEDS/SALOMEDS_FileType.cxx,
28880           src/SALOMEDS/SALOMEDS_FileType.hxx,
28881           src/SALOMEDS/SALOMEDS_FileType.ixx,
28882           src/SALOMEDS/SALOMEDS_FileType.jxx,
28883           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
28884           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
28885           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
28886           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
28887           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
28888           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
28889           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
28890           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
28891           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
28892           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
28893           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
28894           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
28895           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
28896           src/SALOMEDS/SALOMEDS_IParameters.cxx,
28897           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
28898           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
28899           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
28900           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
28901           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
28902           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
28903           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
28904           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
28905           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
28906           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
28907           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
28908           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
28909           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
28910           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
28911           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
28912           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
28913           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
28914           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
28915           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
28916           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
28917           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
28918           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
28919           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
28920           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
28921           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
28922           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
28923           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
28924           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
28925           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
28926           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
28927           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
28928           src/SALOMEDS/SALOMEDS_SComponent.cxx,
28929           src/SALOMEDS/SALOMEDS_SComponent.hxx,
28930           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
28931           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
28932           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
28933           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
28934           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
28935           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
28936           src/SALOMEDS/SALOMEDS_SObject.cxx,
28937           src/SALOMEDS/SALOMEDS_SObject.hxx,
28938           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
28939           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
28940           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
28941           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
28942           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
28943           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
28944           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
28945           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
28946           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
28947           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
28948           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
28949           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
28950           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
28951           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
28952           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
28953           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
28954           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
28955           src/SALOMEDS/SALOMEDS_Server.cxx,
28956           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
28957           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
28958           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
28959           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
28960           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
28961           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
28962           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
28963           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
28964           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
28965           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
28966           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
28967           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
28968           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
28969           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
28970           src/SALOMEDS/SALOMEDS_Study_i.cxx,
28971           src/SALOMEDS/SALOMEDS_Study_i.hxx,
28972           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
28973           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
28974           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
28975           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
28976           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
28977           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
28978           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
28979           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
28980           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
28981           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
28982           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
28983           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
28984           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
28985           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
28986           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
28987           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
28988           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
28989           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
28990           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
28991           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
28992           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
28993           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
28994           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
28995           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
28996           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
28997           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
28998           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
28999           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
29000           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
29001           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
29002           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
29003           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
29004           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
29005           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
29006           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
29007           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
29008           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
29009           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
29010           src/SALOMEDS/Test/SALOMEDSTest.cxx,
29011           src/SALOMEDS/Test/SALOMEDSTest.hxx,
29012           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
29013           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
29014           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
29015           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
29016           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
29017           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
29018           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
29019           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
29020           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
29021           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
29022           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
29023           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
29024           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
29025           src/SALOMEDS/Test/TestSALOMEDS.cxx,
29026           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
29027           src/SALOMEDSImpl/Makefile.am,
29028           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
29029           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
29030           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
29031           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
29032           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
29033           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
29034           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
29035           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
29036           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
29037           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
29038           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
29039           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
29040           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
29041           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
29042           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
29043           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
29044           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
29045           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
29046           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
29047           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
29048           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
29049           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
29050           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
29051           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
29052           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
29053           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
29054           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
29055           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
29056           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
29057           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
29058           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
29059           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
29060           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
29061           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
29062           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
29063           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
29064           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
29065           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
29066           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
29067           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
29068           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
29069           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
29070           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
29071           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
29072           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
29073           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
29074           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
29075           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
29076           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
29077           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
29078           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
29079           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
29080           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
29081           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
29082           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
29083           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
29084           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
29085           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
29086           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
29087           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
29088           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
29089           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
29090           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
29091           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
29092           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
29093           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
29094           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
29095           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
29096           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
29097           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
29098           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
29099           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
29100           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
29101           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
29102           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
29103           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
29104           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
29105           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
29106           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
29107           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
29108           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
29109           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
29110           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
29111           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
29112           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
29113           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
29114           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
29115           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
29116           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
29117           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
29118           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
29119           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
29120           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
29121           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
29122           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
29123           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
29124           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
29125           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
29126           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
29127           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
29128           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
29129           src/SALOMELocalTrace/LocalTraceCollector.cxx,
29130           src/SALOMELocalTrace/utilities.h,
29131           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
29132           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
29133           src/TestContainer/Makefile.am, src/UnitTests/UnitTests.py,
29134           src/Utils/Utils_ORB_INIT.cxx:
29135
29136         Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
29137
29138 2008-01-28 23:03  prascle
29139
29140         * bin/appli_gen.py, bin/orbmodule.py, bin/server.py,
29141           idl/Makefile.am, idl/SALOME_Component.idl,
29142           idl/SALOME_ModuleCatalog.idl, resources/CatalogResources.xml.in,
29143           resources/KERNELCatalog.xml.in, salome_adm/unix/Makefile.am,
29144           salome_adm/unix/pythonbe.py, src/Container/Component_i.cxx,
29145           src/Container/Container_i.cxx,
29146           src/Container/SALOME_ComponentPy.py,
29147           src/Container/SALOME_Component_i.hxx,
29148           src/Container/SALOME_Container.cxx,
29149           src/Container/SALOME_Container.py,
29150           src/Container/SALOME_ContainerManager.cxx,
29151           src/Container/SALOME_Container_i.hxx,
29152           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
29153           src/DF/DF_definitions.hxx, src/DSC/ParallelDSC/ParallelDSC_i.cxx,
29154           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
29155           src/KERNEL_PY/salome_study.py,
29156           src/Launcher/BatchLight_BatchManager.cxx,
29157           src/Launcher/BatchLight_BatchManager.hxx,
29158           src/Launcher/BatchLight_BatchManager_PBS.cxx,
29159           src/Launcher/BatchLight_BatchManager_PBS.hxx,
29160           src/Launcher/BatchLight_BatchManager_SLURM.cxx,
29161           src/Launcher/BatchLight_BatchManager_SLURM.hxx,
29162           src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
29163           src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
29164           src/Launcher/MpiImpl.hxx,
29165           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
29166           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
29167           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
29168           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
29169           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
29170           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
29171           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
29172           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
29173           src/NamingService/NamingService_WaitForServerReadiness.cxx,
29174           src/NamingService/SALOME_NamingService.cxx,
29175           src/NamingService/Test/NamingServiceTest.cxx,
29176           src/NamingService/Test/TestNamingService.py,
29177           src/ParallelContainer/Makefile.am,
29178           src/ParallelContainer/Parallel_Salome_file_i.cxx,
29179           src/ParallelContainer/Parallel_Salome_file_i.hxx,
29180           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
29181           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
29182           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
29183           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
29184           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
29185           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
29186           src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
29187           src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
29188           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
29189           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
29190           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
29191           src/ResourcesManager/SALOME_ResourcesManager.cxx,
29192           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS_Driver_i.hxx,
29193           src/SALOMEDS/SALOMEDS_Server.cxx,
29194           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
29195           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
29196           src/SALOMELocalTrace/FileTraceCollector.cxx,
29197           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
29198           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
29199           src/Utils/Utils_ORB_INIT.cxx:
29200
29201         merge from BR_For40_DSC 28 jan 08
29202
29203 2008-01-28 15:24  caremoli
29204
29205         * src/Launcher/: BatchLight_BatchManager.cxx,
29206           BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
29207           BatchLight_BatchManager_PBS.hxx,
29208           BatchLight_BatchManager_SLURM.cxx,
29209           BatchLight_BatchManager_SLURM.hxx, BatchLight_Job.cxx,
29210           BatchLight_Job.hxx, Makefile.am, MpiImpl.cxx, MpiImpl.hxx:
29211
29212         CCAR: move BatchLight classes from Batch to Launcher (dependency loop)
29213
29214 2008-01-28 11:21  caremoli
29215
29216         * idl/Makefile.am:
29217
29218         CCAR: dummy rule for parallel make
29219
29220 2008-01-28 11:16  caremoli
29221
29222         * idl/Makefile.am:
29223
29224         CCAR: remove circular dependency in idls
29225
29226 2008-01-28 10:42  caremoli
29227
29228         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
29229           SALOME_ModuleCatalog_Acomponent_impl.hxx,
29230           SALOME_ModuleCatalog_Handler.cxx,
29231           SALOME_ModuleCatalog_Handler.hxx,
29232           SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx,
29233           SALOME_ModuleCatalog_impl.hxx:
29234
29235         CCAR: change the datastream types management (use string now as the dataflow types)
29236         change the implementation type management (use an enum now : either SO, PY or EXE)
29237         and adds an implementation name that will be used with EXE implementation type as
29238         the executable name
29239
29240 2008-01-28 10:38  caremoli
29241
29242         * src/NamingService/SALOME_NamingService.cxx:
29243
29244         CCAR: correct way to handle String_member as an in argument (use in() method)
29245
29246 2008-01-28 10:36  caremoli
29247
29248         * resources/KERNELCatalog.xml.in:
29249
29250         CCAR: add a datastream type to the catalog
29251
29252 2008-01-28 10:35  caremoli
29253
29254         * idl/SALOME_ModuleCatalog.idl:
29255
29256         CCAR: change datastream type management (now same as dataflow types=string)
29257         and implementation type (now an enum EXE, SO, PY)
29258
29259 2008-01-21 10:18  ribes
29260
29261         * src/ParallelContainer/: Makefile.am,
29262           SALOME_ParallelContainerProxyDummy.cxx,
29263           SALOME_ParallelContainerProxyMpi.cxx,
29264           SALOME_ParallelContainerProxy_i.cxx,
29265           SALOME_ParallelContainerProxy_i.hxx:
29266
29267         - Shutdown Parallel proxy
29268
29269 2008-01-18 16:19  ribes
29270
29271         * src/: Container/SALOME_ContainerManager.cxx,
29272           ResourcesManager/SALOME_ResourcesManager.cxx:
29273
29274         - Add an exception if parallelLib is not correct
29275
29276 2008-01-18 12:16  caremoli
29277
29278         * bin/appli_gen.py, resources/CatalogResources.xml.in,
29279           src/Container/SALOME_ContainerManager.cxx,
29280           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
29281
29282         CCAR: add localhost in default CatalogResources.xml catalog
29283
29284 2008-01-18 10:20  ribes
29285
29286         * idl/Makefile.am, src/Container/SALOME_ContainerManager.cxx,
29287           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
29288           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
29289           src/ParallelContainer/Parallel_Salome_file_i.cxx,
29290           src/ParallelContainer/Parallel_Salome_file_i.hxx,
29291           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
29292           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
29293           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
29294           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
29295           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
29296           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
29297           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
29298           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
29299
29300         - Adapt code to the new PaCO++ version
29301         - Remove Parallel Idl compilation when PaCO++ is used
29302
29303 2008-01-17 14:12  caremoli
29304
29305         * bin/waitNS.sh, idl/Makefile.am:
29306
29307         CCAR: update from dev branch
29308
29309 2008-01-17 10:44  caremoli
29310
29311         * bin/orbmodule.py, bin/server.py,
29312           src/NamingService/SALOME_NamingService.cxx,
29313           src/NamingService/Test/NamingServiceTest.cxx,
29314           src/NamingService/Test/TestNamingService.py,
29315           src/SALOMEDS/SALOMEDS_Server.cxx,
29316           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
29317           src/SALOMELocalTrace/FileTraceCollector.cxx,
29318           src/SALOMETraceCollector/SALOMETraceCollector.cxx:
29319
29320         CCAR: minor modifications to run NamingService tests under valgrind
29321
29322 2008-01-16 15:06  caremoli
29323
29324         * salome_adm/unix/: Makefile.am, pythonbe.py:
29325
29326         CCAR: remove pythonbe.py (no more used)
29327
29328 2008-01-16 12:49  vsr
29329
29330         * idl/Makefile.am:
29331
29332         Avoid problem with parallel compilation (without workaround)
29333
29334 2008-01-16 11:37  caremoli
29335
29336         * src/Utils/Utils_ORB_INIT.cxx:
29337
29338         CCAR: improve WARNING
29339
29340 2008-01-16 11:29  caremoli
29341
29342         * src/Container/SALOME_Container.py:
29343
29344         CCAR: remove prints
29345
29346 2008-01-16 09:37  caremoli
29347
29348         * src/Container/SALOME_Container.cxx:
29349
29350         CCAR: go back on using ORB_INIT wrapping
29351
29352 2008-01-16 09:26  caremoli
29353
29354         * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.cxx:
29355
29356         CCAR: remove orb destroy and delete servant at exit
29357
29358 2008-01-16 09:24  caremoli
29359
29360         * bin/Makefile.am, bin/setenv.py, bin/waitNS.sh,
29361           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl:
29362
29363         CCAR: update from BR_Dev_For_4_0 branch
29364
29365 2008-01-16 09:19  caremoli
29366
29367         * src/ParallelContainer/Parallel_Salome_file_i.cxx:
29368
29369         CCAR: remove memeory leak
29370
29371 2008-01-16 09:18  caremoli
29372
29373         * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
29374
29375         CCAR: remove memory leak
29376
29377 2008-01-16 09:17  caremoli
29378
29379         * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_Driver_i.hxx,
29380           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
29381           NamingService/NamingService_WaitForServerReadiness.cxx:
29382
29383         CCAR: remove memory leaks
29384
29385 2008-01-16 09:08  caremoli
29386
29387         * src/KERNEL_PY/salome_study.py:
29388
29389         CCAR: update dump study in salome_study.py
29390
29391 2008-01-16 09:07  caremoli
29392
29393         * src/DF/DF_definitions.hxx:
29394
29395         CCAR: remove obsolete include
29396
29397 2008-01-16 09:05  caremoli
29398
29399         * src/Container/: Component_i.cxx, Container_i.cxx,
29400           SALOME_ComponentPy.py, SALOME_Component_i.hxx,
29401           SALOME_Container.cxx, SALOME_Container.py,
29402           SALOME_ContainerManager.cxx, SALOME_ContainerManager.hxx,
29403           SALOME_Container_i.hxx, Salome_file_i.cxx, Salome_file_i.hxx:
29404
29405         CCAR: remove memory leak and update from BR_Dev_For_4_0 branch
29406
29407 2008-01-16 08:45  caremoli
29408
29409         * src/: SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
29410           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
29411           ResourcesManager/SALOME_ResourcesManager.cxx,
29412           Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx:
29413
29414         CCAR: update from BR_Dev_For_4_0 branch
29415
29416 2008-01-15 16:25  secher
29417
29418         * bin/waitNS.sh:
29419
29420         test on ccrt
29421
29422 2008-01-11 16:13  secher
29423
29424         * bin/Makefile.am:
29425
29426         debug of batch cases
29427
29428 2008-01-11 15:55  secher
29429
29430         * bin/waitNS.sh:
29431
29432         debug of batch cases
29433
29434 2008-01-11 15:52  mzn
29435
29436         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
29437           SALOMEDSImpl_StudyBuilder.cxx:
29438
29439         Fix for bug NPAL18499 (EDF 641 STUDY : Performance problem).
29440
29441 2008-01-11 15:50  secher
29442
29443         * bin/waitNS.sh:
29444
29445         debug of batch cases
29446
29447 2008-01-11 12:03  secher
29448
29449         * bin/: setenv.py:
29450
29451         debug of batch cases
29452
29453 2008-01-09 13:39  jfa
29454
29455         * idl/SALOME_ContainerManager.idl,
29456           src/Container/SALOME_ContainerManager.cxx,
29457           src/Container/SALOME_ContainerManager.hxx,
29458           src/Launcher/SALOME_Launcher.cxx,
29459           src/Launcher/SALOME_Launcher.hxx,
29460           src/ResourcesManager/SALOME_ResourcesManager.cxx:
29461
29462         NPAL18505: shutdownServers() function don't work if we have distributed containers.
29463
29464 2008-01-08 14:04  caremoli
29465
29466         * src/LifeCycleCORBA/TestContainerManager.cxx, configure.ac:
29467
29468         CCAR: update from dev branch
29469
29470 2007-12-29 13:38  vsr
29471
29472         * configure.ac:
29473
29474         Make libxml2 a mandatory pre-requisite (it is required for ModuleCatalog and ResourcesManager packages compilation!
29475
29476 2007-12-17 09:42  secher
29477
29478         * src/LifeCycleCORBA/TestContainerManager.cxx:
29479
29480         debug when SupervContainer is launched
29481
29482 2007-12-06 14:40  caremoli
29483
29484         * idl/Makefile.am:
29485
29486         CCAR: update from main dev branch
29487
29488 2007-11-30 10:08  jfa
29489
29490         * idl/Makefile.am:
29491
29492         Merge from BR_For40_DSC.
29493
29494 2007-11-28 10:41  caremoli
29495
29496         * salome_adm/unix/config_files/production.m4, src/DF/DF_Label.cxx,
29497           src/SALOMEDS/SALOME_DriverPy.py,
29498           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
29499           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
29500           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
29501           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
29502           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx:
29503
29504         CCAR: merge from development branch BR_Dev_For_4_0
29505
29506 2007-11-26 15:21  srn
29507
29508         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
29509           SALOMEDSImpl_AttributeTableOfReal.cxx,
29510           SALOMEDSImpl_AttributeTableOfString.cxx:
29511
29512         Fixed bug in method getTitle
29513
29514 2007-11-26 10:13  caremoli
29515
29516         * idl/Makefile.am:
29517
29518         CCAR: add *DynSk*.cc in Makefile.am (Any TypeCodes)
29519
29520 2007-11-26 09:38  jfa
29521
29522         * doc/salome/Makefile.am, doc/salome/batch.dox,
29523           idl/DSC_Engines.idl, idl/Makefile.am,
29524           src/Container/SALOME_ContainerManager.cxx,
29525           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
29526           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
29527           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
29528           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
29529           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
29530           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
29531           src/Launcher/SALOME_Launcher.cxx,
29532           src/Launcher/SALOME_LauncherServer.cxx,
29533           src/NamingService/SALOME_NamingService.cxx,
29534           src/ResourcesManager/SALOME_LoadRateManager.cxx,
29535           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
29536           src/ResourcesManager/SALOME_ResourcesManager.cxx,
29537           src/SALOMELocalTrace/LocalTraceCollector.cxx:
29538
29539         Merge from BR_For40_DSC
29540
29541 2007-11-24 13:17  jfa
29542
29543         * src/SALOMEDS/SALOME_DriverPy.py:
29544
29545         Fix bug 17587 (restore fix for NPAL15643): Study, containing PYHELLO object, isn't saved.
29546
29547 2007-11-23 16:02  srn
29548
29549         * src/DF/DF_Label.cxx:
29550
29551         Added calls of virtual callback methods of DF_Attribute on attribute addiotion: AfterAddition and on forget: BeforeForget
29552
29553 2007-11-23 15:45  caremoli
29554
29555         * idl/DSC_Engines.idl, idl/Makefile.am,
29556           src/Container/SALOME_ContainerManager.cxx,
29557           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
29558           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
29559           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
29560           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
29561           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
29562           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
29563           src/Launcher/SALOME_Launcher.cxx,
29564           src/Launcher/SALOME_LauncherServer.cxx,
29565           src/NamingService/SALOME_NamingService.cxx,
29566           src/ResourcesManager/SALOME_LoadRateManager.cxx,
29567           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
29568           src/ResourcesManager/SALOME_ResourcesManager.cxx,
29569           src/SALOMELocalTrace/LocalTraceCollector.cxx:
29570
29571         CCAR: several debugs in DSC ports and launcher
29572         - better disconnect for DSC ports when a container has gone (all files in DSC directory and DSC_Engines.idl)
29573         - catch SALOME_Exception in YACS : need the typecode in IDL lib (add SALOME_ExceptionDynSK.cc in Makefile.am)
29574         - remove existing entry in naming service on StartContainer (SALOME_ContainerManager.cxx) : risk of unconsistency
29575         - catch CORBA SystemException in FindNext : unable to start containers when component instances exist and when container
29576           has gone
29577         - remove exit in ShutdownWithExit : right way to stop servers is to call orb->shutdown(0) in a CORBA method, call orb->destroy()
29578           in the main thread after orb->run() and to have called _remove_ref on main servants (SALOME_ContainerManager.cxx,
29579           SALOME_Launcher.cxx, SALOME_LauncherServer.cxx).
29580         - remove memory leaks : use valgrind on Launcher and ConnectionManagerServer; several small modifications in many files.
29581
29582 2007-11-23 14:54  vsr
29583
29584         * salome_adm/unix/config_files/production.m4:
29585
29586         Remove -O compiler option (optimization) for compilation of SALOME modules in debug mode
29587
29588 2007-11-23 08:59  srn
29589
29590         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTreeNode.cxx,
29591           SALOMEDSImpl_AttributeUserID.cxx:
29592
29593         Enlarged a buffer size for building an Attribute type
29594
29595 2007-11-20 14:44  caremoli
29596
29597         * configure.ac, bin/NSparam.py, doc/salome/Makefile.am,
29598           doc/salome/tui/Makefile.am:
29599
29600         CCAR: merge from BR_Dev_For_4_0 (20/12/07)
29601
29602 2007-11-20 14:11  ribes
29603
29604         * doc/salome/Makefile.am:
29605
29606         batch doxygen file Makefile.am
29607
29608 2007-11-20 14:09  ribes
29609
29610         * doc/salome/batch.dox:
29611
29612         batch doxygen file
29613
29614 2007-11-20 12:23  jfa
29615
29616         * doc/salome/Makefile.am:
29617
29618         Fix 'make dist' error.
29619
29620 2007-11-20 10:54  prascle
29621
29622         * bin/NSparam.py:
29623
29624         PR: file omniORBconfig has now several lines, NSPORT was wrong
29625
29626 2007-11-19 09:46  jfa
29627
29628         * doc/salome/Makefile.am:
29629
29630         Fix compilation pb.
29631
29632 2007-11-16 16:58  mnt
29633
29634         * doc/salome/tui/Makefile.am:
29635
29636         Correction of problem coping
29637
29638 2007-11-16 14:14  jfa
29639
29640         * doc/salome/install.dox, doc/salome/kernel_resources.dox,
29641           doc/salome/kernel_services.dox, doc/salome/main.dox,
29642           doc/salome/salome_application.dox, doc/salome/salome_file.dox,
29643           doc/salome/unittests.dox, src/DSC/DSC.dox:
29644
29645         Patch from Paul RASCLE
29646
29647 2007-11-16 14:04  mnt
29648
29649         * configure.ac:
29650
29651         Changing version to 4.1.0
29652
29653 2007-11-16 10:45  jfa
29654
29655         * bin/appli_gen.py, bin/launchConfigureParser.py, bin/runSalome.py,
29656           doc/Makefile.am, doc/salome/Makefile.am,
29657           doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
29658           idl/SALOME_ModuleCatalog.idl, resources/KERNELCatalog.xml.in,
29659           salome_adm/unix/config_files/check_omniorb.m4,
29660           salome_adm/unix/config_files/check_swig.m4,
29661           src/Communication/SALOME_Communication.hxx, src/DSC/Makefile.am,
29662           src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
29663           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
29664           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
29665           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
29666           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
29667           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
29668           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
29669           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
29670           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
29671           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
29672           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
29673           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
29674           src/Registry/SALOME_Registry_Server.cxx,
29675           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
29676           src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am:
29677
29678         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.
29679
29680 2007-11-16 09:10  mnt
29681
29682         * configure.ac:
29683
29684         Change version to 3.2.8
29685
29686 2007-11-12 14:10  ribes
29687
29688         * doc/salome/: Makefile.am, main.dox, salome_file.dox:
29689
29690         - Adding documentation for Salome_file
29691
29692 2007-11-09 19:03  caremoli
29693
29694         * configure.ac, bin/launchConfigureParser.py, bin/runSalome.py,
29695           bin/setenv.py, idl/DSC_Engines.idl, idl/SALOMEDS.idl,
29696           idl/SALOME_ContainerManager.idl, idl/SALOME_ModuleCatalog.idl,
29697           idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
29698           resources/Makefile.am, src/Makefile.am,
29699           src/Container/SALOME_ContainerManager.cxx,
29700           src/Container/SALOME_ContainerManager.hxx,
29701           src/DF/DF_Application.cxx, src/DF/DF_Application.hxx,
29702           src/DF/DF_Attribute.cxx, src/DF/DF_Attribute.hxx,
29703           src/DF/DF_ChildIterator.cxx, src/DF/DF_ChildIterator.hxx,
29704           src/DF/DF_Container.cxx, src/DF/DF_Container.hxx,
29705           src/DF/DF_Document.cxx, src/DF/DF_Document.hxx,
29706           src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
29707           src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
29708           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
29709           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
29710           src/HDFPersist/HDFascii.cc, src/Launcher/Makefile.am,
29711           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
29712           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
29713           src/Registry/RegistryService.cxx,
29714           src/Registry/RegistryService.hxx,
29715           src/Registry/SALOME_Registry_Server.cxx,
29716           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
29717           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
29718           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
29719           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
29720           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
29721           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
29722           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
29723           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
29724           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
29725           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
29726           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
29727           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
29728           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
29729           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
29730           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
29731           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
29732           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
29733           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
29734           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
29735           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
29736           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
29737           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
29738           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
29739           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
29740           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
29741           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
29742           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
29743           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
29744           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
29745           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
29746           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
29747           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
29748           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
29749           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
29750           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
29751           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
29752           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
29753           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
29754           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
29755           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
29756           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
29757           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
29758           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
29759           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
29760           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
29761           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
29762           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
29763           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
29764           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
29765           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
29766           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
29767           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
29768           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
29769           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
29770           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
29771           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
29772           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
29773           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
29774           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
29775           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
29776           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
29777           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
29778           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
29779           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
29780           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
29781           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
29782           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
29783           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
29784           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
29785           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
29786           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
29787           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
29788           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
29789           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
29790           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
29791           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
29792           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
29793           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
29794           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
29795           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
29796           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
29797           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
29798           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
29799           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
29800           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
29801           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
29802           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
29803           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
29804           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
29805           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
29806           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
29807           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
29808           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
29809           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
29810           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
29811           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
29812           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
29813           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
29814           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
29815           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
29816           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
29817           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
29818           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
29819           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
29820           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
29821           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
29822           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
29823           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
29824           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
29825           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
29826           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
29827           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
29828           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
29829           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
29830           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
29831           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
29832           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
29833           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
29834           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
29835           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
29836           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
29837           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
29838           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
29839           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
29840           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
29841           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
29842           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
29843           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
29844           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
29845           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
29846           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
29847           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
29848           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
29849           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
29850           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
29851           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
29852           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
29853           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
29854           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
29855           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
29856           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
29857           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
29858           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
29859           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
29860           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
29861           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
29862           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
29863           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
29864           src/SALOMEDS/SALOMEDS_Attributes.hxx,
29865           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
29866           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
29867           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
29868           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
29869           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
29870           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
29871           src/SALOMEDS/SALOMEDS_Client.cxx,
29872           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
29873           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
29874           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
29875           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
29876           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
29877           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
29878           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
29879           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
29880           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
29881           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
29882           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
29883           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
29884           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
29885           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
29886           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
29887           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
29888           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
29889           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
29890           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
29891           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
29892           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
29893           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
29894           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
29895           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
29896           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
29897           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
29898           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
29899           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
29900           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
29901           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
29902           src/SALOMEDS/SALOMEDS_FileType.cdl,
29903           src/SALOMEDS/SALOMEDS_FileType.cxx,
29904           src/SALOMEDS/SALOMEDS_FileType.hxx,
29905           src/SALOMEDS/SALOMEDS_FileType.ixx,
29906           src/SALOMEDS/SALOMEDS_FileType.jxx,
29907           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
29908           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
29909           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
29910           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
29911           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
29912           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
29913           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
29914           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
29915           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
29916           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
29917           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
29918           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
29919           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
29920           src/SALOMEDS/SALOMEDS_IParameters.cxx,
29921           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
29922           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
29923           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
29924           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
29925           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
29926           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
29927           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
29928           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
29929           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
29930           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
29931           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
29932           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
29933           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
29934           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
29935           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
29936           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
29937           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
29938           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
29939           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
29940           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
29941           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
29942           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
29943           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
29944           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
29945           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
29946           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
29947           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
29948           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
29949           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
29950           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
29951           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
29952           src/SALOMEDS/SALOMEDS_SComponent.cxx,
29953           src/SALOMEDS/SALOMEDS_SComponent.hxx,
29954           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
29955           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
29956           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
29957           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
29958           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
29959           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
29960           src/SALOMEDS/SALOMEDS_SObject.cxx,
29961           src/SALOMEDS/SALOMEDS_SObject.hxx,
29962           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
29963           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
29964           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
29965           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
29966           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
29967           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
29968           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
29969           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
29970           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
29971           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
29972           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
29973           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
29974           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
29975           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
29976           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
29977           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
29978           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
29979           src/SALOMEDS/SALOMEDS_Server.cxx,
29980           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
29981           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
29982           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
29983           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
29984           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
29985           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
29986           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
29987           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
29988           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
29989           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
29990           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
29991           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
29992           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
29993           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
29994           src/SALOMEDS/SALOMEDS_Study_i.cxx,
29995           src/SALOMEDS/SALOMEDS_Study_i.hxx,
29996           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
29997           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
29998           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
29999           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
30000           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
30001           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
30002           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
30003           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
30004           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
30005           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
30006           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
30007           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
30008           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
30009           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
30010           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
30011           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
30012           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
30013           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
30014           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
30015           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
30016           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
30017           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
30018           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
30019           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
30020           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
30021           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
30022           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
30023           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
30024           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
30025           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
30026           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
30027           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
30028           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
30029           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
30030           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
30031           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
30032           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
30033           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
30034           src/SALOMEDS/Test/SALOMEDSTest.cxx,
30035           src/SALOMEDS/Test/SALOMEDSTest.hxx,
30036           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
30037           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
30038           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
30039           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
30040           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
30041           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
30042           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
30043           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
30044           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
30045           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
30046           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
30047           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
30048           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
30049           src/SALOMEDS/Test/TestSALOMEDS.cxx,
30050           src/SALOMEDS/Test/TestSALOMEDS.py, src/SALOMEDSImpl/Makefile.am,
30051           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
30052           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
30053           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
30054           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
30055           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
30056           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
30057           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
30058           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
30059           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
30060           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
30061           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
30062           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
30063           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
30064           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
30065           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
30066           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
30067           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
30068           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
30069           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
30070           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
30071           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
30072           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
30073           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
30074           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
30075           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
30076           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
30077           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
30078           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
30079           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
30080           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
30081           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
30082           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
30083           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
30084           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
30085           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
30086           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
30087           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
30088           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
30089           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
30090           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
30091           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
30092           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
30093           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
30094           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
30095           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
30096           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
30097           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
30098           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
30099           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
30100           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
30101           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
30102           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
30103           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
30104           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
30105           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
30106           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
30107           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
30108           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
30109           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
30110           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
30111           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
30112           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
30113           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
30114           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
30115           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
30116           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
30117           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
30118           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
30119           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
30120           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
30121           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
30122           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
30123           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
30124           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
30125           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
30126           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
30127           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
30128           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
30129           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
30130           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
30131           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
30132           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
30133           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
30134           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
30135           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
30136           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
30137           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
30138           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
30139           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
30140           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
30141           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
30142           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
30143           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
30144           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
30145           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
30146           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
30147           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
30148           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
30149           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
30150           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
30151           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
30152           src/Utils/Utils_ORB_INIT.cxx:
30153
30154         CCAR: merge from branch BR_Dev_For_4_0 tag V4_1_0rc1
30155
30156 2007-11-09 12:10  ribes
30157
30158         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
30159
30160         - Bug when you compile in debug mode...
30161
30162 2007-11-08 19:44  caremoli
30163
30164         * bin/runSalome.py:
30165
30166         CCAR: remove superfluous prints
30167
30168 2007-11-08 19:31  caremoli
30169
30170         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
30171           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
30172           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
30173
30174         CCAR: minor bugs
30175
30176 2007-11-08 18:54  caremoli
30177
30178         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
30179           SALOME_ModuleCatalog_Acomponent_impl.hxx,
30180           SALOME_ModuleCatalog_Client.cxx,
30181           SALOME_ModuleCatalog_Handler.cxx,
30182           SALOME_ModuleCatalog_Handler.hxx,
30183           SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_Server.cxx,
30184           SALOME_ModuleCatalog_impl.cxx, SALOME_ModuleCatalog_impl.hxx:
30185
30186         CCAR: add types to component catalogs and corba interface to ModulCatalog to get them
30187
30188 2007-11-08 18:38  caremoli
30189
30190         * src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
30191           doc/salome/tui/Makefile.am, idl/SALOME_ModuleCatalog.idl,
30192           resources/KERNELCatalog.xml.in,
30193           salome_adm/unix/config_files/check_omniorb.m4,
30194           salome_adm/unix/config_files/check_swig.m4:
30195
30196         CCAR: add numpy API to Datastream DSC ports
30197
30198 2007-11-08 12:17  mkr
30199
30200         * idl/DSC_Engines.idl, idl/SALOMEDS.idl,
30201           idl/SALOME_ContainerManager.idl, idl/SALOME_ModuleCatalog.idl,
30202           idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
30203           src/Container/SALOME_ContainerManager.cxx,
30204           src/Container/SALOME_ContainerManager.hxx,
30205           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
30206           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
30207           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
30208           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
30209           src/Registry/RegistryService.cxx,
30210           src/Registry/RegistryService.hxx,
30211           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
30212           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
30213           src/Utils/Utils_ORB_INIT.cxx:
30214
30215         IMP NPAL13547: Checkbox to kill SALOME completely.
30216
30217 2007-11-08 11:36  ribes
30218
30219         * bin/appli_gen.py:
30220
30221         - Patch if there is no gui modules
30222
30223 2007-11-06 10:59  ribes
30224
30225         * src/DSC/DSC.dox:
30226
30227         - Adding doxygen infos on DSC.
30228
30229 2007-11-02 09:54  srn
30230
30231         * src/DF/DF_Label.cxx:
30232
30233         Fixed bug in method FindChild
30234
30235 2007-11-02 09:51  srn
30236
30237         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx:
30238
30239         Optimized method GetSObject
30240
30241 2007-11-02 09:10  jfa
30242
30243         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
30244
30245         Remove traces
30246
30247 2007-11-02 08:58  srn
30248
30249         * src/SALOMEDS/Test/Makefile.am:
30250
30251         Added @BOOST_CPPFLAGS@
30252
30253 2007-11-01 13:49  jfa
30254
30255         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
30256
30257         Fix pb. with loading of last module (in list).
30258
30259 2007-11-01 12:48  srn
30260
30261         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
30262
30263         Optimized GetSObject method
30264
30265 2007-11-01 12:39  srn
30266
30267         * src/DF/DF_Label.cxx:
30268
30269         Optimized FindChild method
30270
30271 2007-11-01 12:39  srn
30272
30273         * bin/setenv.py:
30274
30275         Modified to assign CSF_PluginDefaults only for GEOM
30276
30277 2007-11-01 10:46  srn
30278
30279         * bin/setenv.py:
30280
30281         Placed a definition of CSF_PluginDefaults into GEOM
30282
30283 2007-11-01 10:45  srn
30284
30285         * resources/Makefile.am:
30286
30287         Removed addition of Plugin to resources
30288
30289 2007-11-01 10:42  srn
30290
30291         * src/SALOMEDSImpl/Makefile.am:
30292
30293         Added @BOOST_CPPFLAGS@
30294
30295 2007-11-01 10:41  srn
30296
30297         * src/: TOOLSDS/SALOMEDS_Tool.cxx,
30298           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
30299
30300         Added #include <unistd.h>
30301
30302 2007-11-01 10:08  srn
30303
30304         * src/DF/DF_Label.cxx:
30305
30306         Optimized method FindChild
30307
30308 2007-11-01 10:07  srn
30309
30310         * src/DF/Makefile.am:
30311
30312         Added @BOOST_CPPFLAGS@
30313
30314 2007-11-01 10:05  srn
30315
30316         * src/SALOMEDS/Makefile.am:
30317
30318         Removed a reference tp SALOMEDS_FileType.hxx
30319
30320 2007-10-31 12:34  srn
30321
30322         * src/: DF/Makefile.am, DF/Makefile.in, Launcher/Makefile.am,
30323           SALOMEDS/Makefile.am, SALOMEDSImpl/Makefile.am,
30324           SALOMEDSImpl/Test/Makefile.am:
30325
30326         Removed includes and libraries of OCC
30327
30328 2007-10-31 12:33  srn
30329
30330         * configure.ac:
30331
30332         Removed CASCatch and check of OCC
30333
30334 2007-10-31 12:33  srn
30335
30336         * src/Makefile.am:
30337
30338         Removed CASCatch
30339
30340 2007-10-31 10:11  srn
30341
30342         * configure.ac:
30343
30344         Added a new DF package
30345
30346 2007-10-31 10:06  srn
30347
30348         * src/TOOLSDS/: Makefile.am, SALOMEDS_Tool.cxx:
30349
30350         New implementation of TOOLSDS package based on DF data structure instead of OCAF
30351
30352 2007-10-31 10:05  srn
30353
30354         * src/SALOMEDS/:
30355           Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
30356           Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
30357           Handle_SALOMEDS_DrawableAttribute.hxx,
30358           Handle_SALOMEDS_ExpandableAttribute.hxx,
30359           Handle_SALOMEDS_ExternalFileDef.hxx,
30360           Handle_SALOMEDS_FileType.hxx, Handle_SALOMEDS_IORAttribute.hxx,
30361           Handle_SALOMEDS_LocalIDAttribute.hxx,
30362           Handle_SALOMEDS_OCAFApplication.hxx,
30363           Handle_SALOMEDS_OpenedAttribute.hxx,
30364           Handle_SALOMEDS_PersRefAttribute.hxx,
30365           Handle_SALOMEDS_PixMapAttribute.hxx,
30366           Handle_SALOMEDS_PythonObjectAttribute.hxx,
30367           Handle_SALOMEDS_SelectableAttribute.hxx,
30368           Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
30369           Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
30370           Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
30371           Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
30372           Handle_SALOMEDS_TableOfRealAttribute.hxx,
30373           Handle_SALOMEDS_TableOfStringAttribute.hxx,
30374           Handle_SALOMEDS_TargetAttribute.hxx,
30375           Handle_SALOMEDS_TextColorAttribute.hxx,
30376           Handle_SALOMEDS_TextHighlightColorAttribute.hxx, SALOMEDS.cdl,
30377           SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
30378           SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
30379           SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
30380           SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
30381           SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
30382           SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
30383           SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
30384           SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
30385           SALOMEDS_DataMapOfIntegerString.hxx,
30386           SALOMEDS_DataMapOfIntegerString_0.cxx,
30387           SALOMEDS_DataMapStringLabel.hxx,
30388           SALOMEDS_DataMapStringLabel_0.cxx,
30389           SALOMEDS_DrawableAttribute.cdl, SALOMEDS_DrawableAttribute.cxx,
30390           SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
30391           SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cdl,
30392           SALOMEDS_ExpandableAttribute.cxx,
30393           SALOMEDS_ExpandableAttribute.hxx,
30394           SALOMEDS_ExpandableAttribute.ixx,
30395           SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cdl,
30396           SALOMEDS_ExternalFileDef.cxx, SALOMEDS_ExternalFileDef.hxx,
30397           SALOMEDS_ExternalFileDef.ixx, SALOMEDS_ExternalFileDef.jxx,
30398           SALOMEDS_FileType.cdl, SALOMEDS_FileType.cxx,
30399           SALOMEDS_FileType.hxx, SALOMEDS_FileType.ixx,
30400           SALOMEDS_FileType.jxx, SALOMEDS_FlagsAttribute.cxx,
30401           SALOMEDS_FlagsAttribute.hxx, SALOMEDS_GraphicAttribute.cxx,
30402           SALOMEDS_GraphicAttribute.hxx, SALOMEDS_IORAttribute.cdl,
30403           SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
30404           SALOMEDS_IORAttribute.ixx, SALOMEDS_IORAttribute.jxx,
30405           SALOMEDS_LocalIDAttribute.cdl, SALOMEDS_LocalIDAttribute.cxx,
30406           SALOMEDS_LocalIDAttribute.hxx, SALOMEDS_LocalIDAttribute.ixx,
30407           SALOMEDS_LocalIDAttribute.jxx, SALOMEDS_OCAFApplication.cdl,
30408           SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
30409           SALOMEDS_OCAFApplication.ixx, SALOMEDS_OCAFApplication.jxx,
30410           SALOMEDS_OpenedAttribute.cdl, SALOMEDS_OpenedAttribute.cxx,
30411           SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
30412           SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cdl,
30413           SALOMEDS_PersRefAttribute.cxx, SALOMEDS_PersRefAttribute.hxx,
30414           SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PersRefAttribute.jxx,
30415           SALOMEDS_PixMapAttribute.cdl, SALOMEDS_PixMapAttribute.cxx,
30416           SALOMEDS_PixMapAttribute.hxx, SALOMEDS_PixMapAttribute.ixx,
30417           SALOMEDS_PixMapAttribute.jxx, SALOMEDS_PythonObjectAttribute.cdl,
30418           SALOMEDS_PythonObjectAttribute.cxx,
30419           SALOMEDS_PythonObjectAttribute.hxx,
30420           SALOMEDS_PythonObjectAttribute.ixx,
30421           SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
30422           SALOMEDS_SelectableAttribute.cdl,
30423           SALOMEDS_SelectableAttribute.cxx,
30424           SALOMEDS_SelectableAttribute.hxx,
30425           SALOMEDS_SelectableAttribute.ixx,
30426           SALOMEDS_SelectableAttribute.jxx,
30427           SALOMEDS_SequenceOfIntegerAttribute.cdl,
30428           SALOMEDS_SequenceOfIntegerAttribute.cxx,
30429           SALOMEDS_SequenceOfIntegerAttribute.hxx,
30430           SALOMEDS_SequenceOfIntegerAttribute.ixx,
30431           SALOMEDS_SequenceOfIntegerAttribute.jxx,
30432           SALOMEDS_SequenceOfRealAttribute.cdl,
30433           SALOMEDS_SequenceOfRealAttribute.cxx,
30434           SALOMEDS_SequenceOfRealAttribute.hxx,
30435           SALOMEDS_SequenceOfRealAttribute.ixx,
30436           SALOMEDS_SequenceOfRealAttribute.jxx,
30437           SALOMEDS_StudyPropertiesAttribute.cdl,
30438           SALOMEDS_StudyPropertiesAttribute.cxx,
30439           SALOMEDS_StudyPropertiesAttribute.hxx,
30440           SALOMEDS_StudyPropertiesAttribute.ixx,
30441           SALOMEDS_StudyPropertiesAttribute.jxx,
30442           SALOMEDS_TableOfIntegerAttribute.cxx,
30443           SALOMEDS_TableOfIntegerAttribute.hxx,
30444           SALOMEDS_TableOfIntegerAttribute.ixx,
30445           SALOMEDS_TableOfIntegerAttribute.jxx,
30446           SALOMEDS_TableOfRealAttribute.cxx,
30447           SALOMEDS_TableOfRealAttribute.hxx,
30448           SALOMEDS_TableOfRealAttribute.ixx,
30449           SALOMEDS_TableOfRealAttribute.jxx,
30450           SALOMEDS_TableOfStringAttribute.cxx,
30451           SALOMEDS_TableOfStringAttribute.hxx,
30452           SALOMEDS_TableOfStringAttribute.ixx,
30453           SALOMEDS_TableOfStringAttribute.jxx,
30454           SALOMEDS_TargetAttribute.cdl, SALOMEDS_TargetAttribute.cxx,
30455           SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
30456           SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cdl,
30457           SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
30458           SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
30459           SALOMEDS_TextHighlightColorAttribute.cdl,
30460           SALOMEDS_TextHighlightColorAttribute.cxx,
30461           SALOMEDS_TextHighlightColorAttribute.hxx,
30462           SALOMEDS_TextHighlightColorAttribute.ixx,
30463           SALOMEDS_TextHighlightColorAttribute.jxx, Test/Makefile.am,
30464           Test/SALOMEDSTest.cxx, Test/SALOMEDSTest.hxx,
30465           Test/SALOMEDSTest_AttributeExpandable.cxx,
30466           Test/SALOMEDSTest_AttributeSelectable.cxx,
30467           Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
30468           Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
30469           Test/SALOMEDSTest_AttributeTableOfReal.cxx,
30470           Test/SALOMEDSTest_AttributeTextColor.cxx,
30471           Test/SALOMEDSTest_AttributeTreeNode.cxx,
30472           Test/SALOMEDSTest_AttributeUserID.cxx,
30473           Test/SALOMEDSTest_ChildIterator.cxx,
30474           Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
30475           Test/SALOMEDSTest_StudyBuilder.cxx,
30476           Test/SALOMEDSTest_StudyManager.cxx, Test/TestSALOMEDS.cxx,
30477           Test/TestSALOMEDS.py:
30478
30479         New implementation of SALOMEDS package based on DF data structure instead of OCAF
30480
30481 2007-10-31 09:59  srn
30482
30483         * src/SALOMEDS/: Makefile.am, SALOMEDS_AttLong_i.cxx,
30484           SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
30485           SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment.cxx,
30486           SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
30487           SALOMEDS_AttributeComment_i.hxx, SALOMEDS_AttributeDrawable.cxx,
30488           SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
30489           SALOMEDS_AttributeDrawable_i.hxx,
30490           SALOMEDS_AttributeExpandable.cxx,
30491           SALOMEDS_AttributeExpandable.hxx,
30492           SALOMEDS_AttributeExpandable_i.cxx,
30493           SALOMEDS_AttributeExpandable_i.hxx,
30494           SALOMEDS_AttributeExternalFileDef.cxx,
30495           SALOMEDS_AttributeExternalFileDef.hxx,
30496           SALOMEDS_AttributeExternalFileDef_i.cxx,
30497           SALOMEDS_AttributeExternalFileDef_i.hxx,
30498           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
30499           SALOMEDS_AttributeFileType_i.cxx,
30500           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags.cxx,
30501           SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeFlags_i.cxx,
30502           SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic.cxx,
30503           SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeGraphic_i.cxx,
30504           SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.cxx,
30505           SALOMEDS_AttributeIOR.hxx, SALOMEDS_AttributeIOR_i.cxx,
30506           SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger.cxx,
30507           SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
30508           SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID.cxx,
30509           SALOMEDS_AttributeLocalID.hxx, SALOMEDS_AttributeLocalID_i.cxx,
30510           SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName.cxx,
30511           SALOMEDS_AttributeName.hxx, SALOMEDS_AttributeName_i.cxx,
30512           SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened.cxx,
30513           SALOMEDS_AttributeOpened.hxx, SALOMEDS_AttributeOpened_i.cxx,
30514           SALOMEDS_AttributeOpened_i.hxx, SALOMEDS_AttributeParameter.cxx,
30515           SALOMEDS_AttributeParameter.hxx,
30516           SALOMEDS_AttributeParameter_i.cxx,
30517           SALOMEDS_AttributeParameter_i.hxx,
30518           SALOMEDS_AttributePersistentRef.cxx,
30519           SALOMEDS_AttributePersistentRef.hxx,
30520           SALOMEDS_AttributePersistentRef_i.cxx,
30521           SALOMEDS_AttributePersistentRef_i.hxx,
30522           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
30523           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
30524           SALOMEDS_AttributePythonObject.cxx,
30525           SALOMEDS_AttributePythonObject.hxx,
30526           SALOMEDS_AttributePythonObject_i.cxx,
30527           SALOMEDS_AttributePythonObject_i.hxx, SALOMEDS_AttributeReal.cxx,
30528           SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeReal_i.cxx,
30529           SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
30530           SALOMEDS_AttributeSelectable.hxx,
30531           SALOMEDS_AttributeSelectable_i.cxx,
30532           SALOMEDS_AttributeSelectable_i.hxx,
30533           SALOMEDS_AttributeSequenceOfInteger.cxx,
30534           SALOMEDS_AttributeSequenceOfInteger.hxx,
30535           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
30536           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
30537           SALOMEDS_AttributeSequenceOfReal.cxx,
30538           SALOMEDS_AttributeSequenceOfReal.hxx,
30539           SALOMEDS_AttributeSequenceOfReal_i.cxx,
30540           SALOMEDS_AttributeSequenceOfReal_i.hxx,
30541           SALOMEDS_AttributeString.cxx, SALOMEDS_AttributeString.hxx,
30542           SALOMEDS_AttributeString_i.cxx, SALOMEDS_AttributeString_i.hxx,
30543           SALOMEDS_AttributeStudyProperties.cxx,
30544           SALOMEDS_AttributeStudyProperties.hxx,
30545           SALOMEDS_AttributeStudyProperties_i.cxx,
30546           SALOMEDS_AttributeStudyProperties_i.hxx,
30547           SALOMEDS_AttributeTableOfInteger.cxx,
30548           SALOMEDS_AttributeTableOfInteger.hxx,
30549           SALOMEDS_AttributeTableOfInteger_i.cxx,
30550           SALOMEDS_AttributeTableOfInteger_i.hxx,
30551           SALOMEDS_AttributeTableOfReal.cxx,
30552           SALOMEDS_AttributeTableOfReal.hxx,
30553           SALOMEDS_AttributeTableOfReal_i.cxx,
30554           SALOMEDS_AttributeTableOfReal_i.hxx,
30555           SALOMEDS_AttributeTableOfString.cxx,
30556           SALOMEDS_AttributeTableOfString.hxx,
30557           SALOMEDS_AttributeTableOfString_i.cxx,
30558           SALOMEDS_AttributeTableOfString_i.hxx,
30559           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
30560           SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
30561           SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
30562           SALOMEDS_AttributeTextColor_i.cxx,
30563           SALOMEDS_AttributeTextColor_i.hxx,
30564           SALOMEDS_AttributeTextHighlightColor.cxx,
30565           SALOMEDS_AttributeTextHighlightColor.hxx,
30566           SALOMEDS_AttributeTextHighlightColor_i.cxx,
30567           SALOMEDS_AttributeTextHighlightColor_i.hxx,
30568           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
30569           SALOMEDS_AttributeTreeNode_i.cxx,
30570           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
30571           SALOMEDS_AttributeUserID.hxx, SALOMEDS_AttributeUserID_i.cxx,
30572           SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
30573           SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
30574           SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator.hxx,
30575           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
30576           SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
30577           SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
30578           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute.hxx,
30579           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
30580           SALOMEDS_IParameters.cxx, SALOMEDS_SComponent.cxx,
30581           SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.cxx,
30582           SALOMEDS_SComponentIterator.hxx,
30583           SALOMEDS_SComponentIterator_i.cxx,
30584           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
30585           SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject.cxx,
30586           SALOMEDS_SObject.hxx, SALOMEDS_SObject_i.cxx,
30587           SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx, SALOMEDS_Study.hxx,
30588           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx,
30589           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
30590           SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager.hxx,
30591           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
30592           SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx,
30593           SALOMEDS_TMPFile_i.cxx, SALOMEDS_TMPFile_i.hxx,
30594           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder.hxx,
30595           SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseBuilder_i.hxx,
30596           SALOMEDS_UseCaseIterator.cxx, SALOMEDS_UseCaseIterator.hxx,
30597           SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx,
30598           SALOME_DriverPy.py:
30599
30600         New implementation of SALOMEDS package based on DF data structure instead of OCAF
30601
30602 2007-10-31 09:58  srn
30603
30604         * src/SALOMEDSImpl/: Makefile.am,
30605           SALOMEDSImpl_AttributeComment.cxx,
30606           SALOMEDSImpl_AttributeComment.hxx,
30607           SALOMEDSImpl_AttributeDrawable.cxx,
30608           SALOMEDSImpl_AttributeDrawable.hxx,
30609           SALOMEDSImpl_AttributeExpandable.cxx,
30610           SALOMEDSImpl_AttributeExpandable.hxx,
30611           SALOMEDSImpl_AttributeExternalFileDef.cxx,
30612           SALOMEDSImpl_AttributeExternalFileDef.hxx,
30613           SALOMEDSImpl_AttributeFileType.cxx,
30614           SALOMEDSImpl_AttributeFileType.hxx,
30615           SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
30616           SALOMEDSImpl_AttributeGraphic.cxx,
30617           SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
30618           SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
30619           SALOMEDSImpl_AttributeInteger.hxx,
30620           SALOMEDSImpl_AttributeLocalID.cxx,
30621           SALOMEDSImpl_AttributeLocalID.hxx,
30622           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
30623           SALOMEDSImpl_AttributeOpened.cxx,
30624           SALOMEDSImpl_AttributeOpened.hxx,
30625           SALOMEDSImpl_AttributeParameter.cxx,
30626           SALOMEDSImpl_AttributeParameter.hxx,
30627           SALOMEDSImpl_AttributePersistentRef.cxx,
30628           SALOMEDSImpl_AttributePersistentRef.hxx,
30629           SALOMEDSImpl_AttributePixMap.cxx,
30630           SALOMEDSImpl_AttributePixMap.hxx,
30631           SALOMEDSImpl_AttributePythonObject.cxx,
30632           SALOMEDSImpl_AttributePythonObject.hxx,
30633           SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
30634           SALOMEDSImpl_AttributeReference.cxx,
30635           SALOMEDSImpl_AttributeReference.hxx,
30636           SALOMEDSImpl_AttributeSelectable.cxx,
30637           SALOMEDSImpl_AttributeSelectable.hxx,
30638           SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
30639           SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
30640           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
30641           SALOMEDSImpl_AttributeSequenceOfReal.hxx,
30642           SALOMEDSImpl_AttributeString.cxx,
30643           SALOMEDSImpl_AttributeString.hxx,
30644           SALOMEDSImpl_AttributeStudyProperties.cxx,
30645           SALOMEDSImpl_AttributeStudyProperties.hxx,
30646           SALOMEDSImpl_AttributeTableOfInteger.cxx,
30647           SALOMEDSImpl_AttributeTableOfInteger.hxx,
30648           SALOMEDSImpl_AttributeTableOfReal.cxx,
30649           SALOMEDSImpl_AttributeTableOfReal.hxx,
30650           SALOMEDSImpl_AttributeTableOfString.cxx,
30651           SALOMEDSImpl_AttributeTableOfString.hxx,
30652           SALOMEDSImpl_AttributeTarget.cxx,
30653           SALOMEDSImpl_AttributeTarget.hxx,
30654           SALOMEDSImpl_AttributeTextColor.cxx,
30655           SALOMEDSImpl_AttributeTextColor.hxx,
30656           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
30657           SALOMEDSImpl_AttributeTextHighlightColor.hxx,
30658           SALOMEDSImpl_AttributeTreeNode.cxx,
30659           SALOMEDSImpl_AttributeTreeNode.hxx,
30660           SALOMEDSImpl_AttributeUserID.cxx,
30661           SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
30662           SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
30663           SALOMEDSImpl_ChildIterator.cxx, SALOMEDSImpl_ChildIterator.hxx,
30664           SALOMEDSImpl_ChildNodeIterator.cxx,
30665           SALOMEDSImpl_ChildNodeIterator.hxx, SALOMEDSImpl_Driver.hxx,
30666           SALOMEDSImpl_GenericAttribute.cxx,
30667           SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_IParameters.cxx,
30668           SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_SComponent.cxx,
30669           SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
30670           SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
30671           SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
30672           SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
30673           SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.cxx,
30674           SALOMEDSImpl_StudyHandle.hxx, SALOMEDSImpl_StudyManager.cxx,
30675           SALOMEDSImpl_StudyManager.hxx, SALOMEDSImpl_TMPFile.cxx,
30676           SALOMEDSImpl_TMPFile.hxx, SALOMEDSImpl_Tool.cxx,
30677           SALOMEDSImpl_Tool.hxx, SALOMEDSImpl_UseCaseBuilder.cxx,
30678           SALOMEDSImpl_UseCaseBuilder.hxx,
30679           SALOMEDSImpl_UseCaseIterator.cxx,
30680           SALOMEDSImpl_UseCaseIterator.hxx, testDS.cxx,
30681           SALOMEDSImpl_OCAFApplication.cxx,
30682           SALOMEDSImpl_OCAFApplication.hxx, Test/Makefile.am,
30683           Test/SALOMEDSImplTest.cxx:
30684
30685         New implementation of SALOMEDSImpl package based on DF data structure instead of OCAF
30686
30687 2007-10-31 09:57  srn
30688
30689         * src/HDFPersist/HDFascii.cc:
30690
30691         Removed references to OCC
30692
30693 2007-10-31 09:57  srn
30694
30695         * src/Makefile.am:
30696
30697         Added DF package
30698
30699 2007-10-31 09:56  srn
30700
30701         * src/DF/: DF_Application.cxx, DF_Application.hxx,
30702           DF_Attribute.cxx, DF_Attribute.hxx, DF_ChildIterator.cxx,
30703           DF_ChildIterator.hxx, DF_Container.cxx, DF_Container.hxx,
30704           DF_Document.cxx, DF_Document.hxx, DF_Label.cxx, DF_Label.hxx,
30705           DF_definitions.hxx, Makefile.am, Makefile.in, testDF.cxx:
30706
30707         Data structure for tree of Labels and Attributes
30708
30709 2007-10-30 16:10  ribes
30710
30711         * doc/Makefile.am, doc/salome/Makefile.am, doc/salome/install.dox,
30712           doc/salome/kernel_resources.dox, doc/salome/kernel_services.dox,
30713           doc/salome/main.dox, doc/salome/salome_application.dox,
30714           doc/salome/unittests.dox, doc/salome/tui/Makefile.am,
30715           idl/SALOMEDS.idl, src/DSC/DSC.dox, src/DSC/Makefile.am:
30716
30717         - Kernel Documentation to doxygen
30718
30719 2007-10-29 12:07  apo
30720
30721         * bin/runSalome.py, src/SALOMEDS/SALOMEDS_Client.cxx,
30722           src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
30723
30724         Merge the final state of the MERGE_MULTIPR_EVOLUTION
30725
30726 2007-10-26 15:18  apo
30727
30728         * bin/launchSalome.py, bin/runSalome.py,
30729           src/Utils/Utils_ORB_INIT.cxx, src/SALOMEDS/SALOMEDS_Client.cxx,
30730           src/SALOMEDS/SALOMEDS_Server.cxx:
30731
30732         To provide ability to handle big files (up to 2 GBytes)
30733
30734 2007-10-26 09:17  caremoli
30735
30736         * src/: Communication/SALOME_Communication.hxx,
30737           SALOMEDS/Makefile.am, SALOMEDS/Test/Makefile.am:
30738
30739         CCAR: to be able to build without removing install directory
30740
30741 2007-10-26 08:22  apo
30742
30743         * bin/launchSalome.py:
30744
30745         To provide ability to handle big files (up to 2 GBytes)
30746
30747 2007-10-26 08:21  apo
30748
30749         * bin/runSalome.py:
30750
30751         To use patch on Bug NPAL17025
30752                 EDF SALOME 4 : Can't launch Salome 4 if another Salome's Session is running (whatever the version is)
30753
30754 2007-10-25 10:02  ribes
30755
30756         * Makefile.am, configure.ac, DEPRECATED/Makefile.in,
30757           bin/Makefile.am, bin/launchConfigureParser.py, bin/orbmodule.py,
30758           bin/runSalome.py, bin/setenv.py, bin/shutdownSalome.py,
30759           bin/waitContainers.py, bin/waitNS.py,
30760           bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
30761           doc/Makefile.am, doc/rst.css, doc/salome/Makefile.am,
30762           doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
30763           idl/SALOMEDS_Attributes.idl, idl/SALOME_ContainerManager.idl,
30764           idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
30765           resources/CatalogResources.xml.in, resources/Makefile.am,
30766           salome_adm/unix/DEPRECATED/make_conclude.in,
30767           salome_adm/unix/DEPRECATED/make_omniorb.in,
30768           salome_adm/unix/config_files/Makefile.am,
30769           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
30770           salome_adm/unix/config_files/check_cppunit.m4,
30771           salome_adm/unix/config_files/check_libxml.m4,
30772           salome_adm/unix/config_files/check_mpi.m4,
30773           salome_adm/unix/config_files/production.m4,
30774           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
30775           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
30776           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
30777           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
30778           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
30779           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
30780           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
30781           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
30782           src/Basics/Test/Makefile.am, src/Communication_SWIG/Makefile.am,
30783           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
30784           src/Container/Container_init_python.cxx,
30785           src/Container/Container_init_python.hxx,
30786           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
30787           src/Container/SALOME_Component_i.hxx,
30788           src/Container/SALOME_Container.cxx,
30789           src/Container/SALOME_Container.py,
30790           src/Container/SALOME_ContainerManager.cxx,
30791           src/Container/SALOME_ContainerManager.hxx,
30792           src/Container/SALOME_ContainerManagerServer.cxx,
30793           src/Container/SALOME_ContainerPy.py,
30794           src/Container/SALOME_Container_i.hxx,
30795           src/Container/SALOME_FileRef_i.cxx,
30796           src/Container/SALOME_FileRef_i.hxx,
30797           src/Container/SALOME_FileTransfer_i.cxx,
30798           src/Container/SALOME_FileTransfer_i.hxx,
30799           src/Container/TestContainerManager.cxx,
30800           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
30801           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
30802           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
30803           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
30804           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
30805           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
30806           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
30807           src/DSC/DSC_User/Datastream/GenericPort.hxx,
30808           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
30809           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
30810           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
30811           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
30812           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
30813           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
30814           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
30815           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
30816           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
30817           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
30818           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
30819           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
30820           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
30821           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
30822           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
30823           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
30824           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
30825           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
30826           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
30827           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
30828           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
30829           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
30830           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
30831           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
30832           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
30833           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
30834           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
30835           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
30836           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
30837           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
30838           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
30839           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
30840           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
30841           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
30842           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
30843           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
30844           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
30845           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
30846           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
30847           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
30848           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
30849           src/DSC/DSC_User/Datastream/Calcium/version.h,
30850           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
30851           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
30852           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
30853           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
30854           src/GenericObj/Makefile.am, src/HDFPersist/Makefile.am,
30855           src/KERNEL_PY/Help.py, src/KERNEL_PY/salome.py,
30856           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
30857           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
30858           src/Launcher/SALOME_Launcher.hxx,
30859           src/Launcher/SALOME_LauncherServer.cxx,
30860           src/LifeCycleCORBA/LifeCycleCORBA.py,
30861           src/LifeCycleCORBA/Makefile.am,
30862           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
30863           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
30864           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
30865           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
30866           src/LifeCycleCORBA/TestContainerManager.cxx,
30867           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
30868           src/LifeCycleCORBA/Test/Makefile.am,
30869           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
30870           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
30871           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
30872           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
30873           src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
30874           src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
30875           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
30876           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
30877           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
30878           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
30879           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
30880           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
30881           src/ModuleGenerator/Makefile.am,
30882           src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
30883           src/NamingService/NamingService_WaitForServerReadiness.cxx,
30884           src/NamingService/NamingService_WaitForServerReadiness.hxx,
30885           src/NamingService/SALOME_NamingService.cxx,
30886           src/NamingService/SALOME_NamingServicePy.py,
30887           src/NamingService/ServiceUnreachable.hxx,
30888           src/NamingService/Test/Makefile.am, src/Notification/Makefile.am,
30889           src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
30890           src/Registry/RegistryService.cxx,
30891           src/Registry/RegistryService.hxx,
30892           src/Registry/SALOME_Registry_Server.cxx,
30893           src/ResourcesManager/Makefile.am,
30894           src/ResourcesManager/SALOME_LoadRateManager.cxx,
30895           src/ResourcesManager/SALOME_LoadRateManager.hxx,
30896           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
30897           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
30898           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
30899           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
30900           src/ResourcesManager/SALOME_ResourcesManager.cxx,
30901           src/ResourcesManager/SALOME_ResourcesManager.hxx,
30902           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
30903           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
30904           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
30905           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
30906           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
30907           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
30908           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
30909           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
30910           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
30911           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
30912           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
30913           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
30914           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
30915           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
30916           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
30917           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
30918           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
30919           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
30920           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
30921           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
30922           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
30923           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
30924           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
30925           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
30926           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
30927           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
30928           src/SALOMEDS/SALOMEDS_Client.cxx,
30929           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
30930           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
30931           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
30932           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
30933           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
30934           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
30935           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
30936           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
30937           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
30938           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
30939           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
30940           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
30941           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
30942           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
30943           src/SALOMEDS/SALOMEDS_FileType.cxx,
30944           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
30945           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
30946           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
30947           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
30948           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
30949           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
30950           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
30951           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
30952           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
30953           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
30954           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
30955           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
30956           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
30957           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
30958           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
30959           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
30960           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
30961           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
30962           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
30963           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
30964           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
30965           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
30966           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
30967           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
30968           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
30969           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
30970           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
30971           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
30972           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
30973           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
30974           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
30975           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
30976           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
30977           src/SALOMEDS/SALOMEDS_Server.cxx,
30978           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
30979           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
30980           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
30981           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
30982           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
30983           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
30984           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
30985           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
30986           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
30987           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
30988           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
30989           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
30990           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
30991           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
30992           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
30993           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
30994           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
30995           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
30996           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
30997           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
30998           src/SALOMEDS/Test/Makefile.am,
30999           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
31000           src/SALOMEDSImpl/Test/Makefile.am,
31001           src/SALOMELocalTrace/BaseTraceCollector.cxx,
31002           src/SALOMELocalTrace/BaseTraceCollector.hxx,
31003           src/SALOMELocalTrace/FileTraceCollector.cxx,
31004           src/SALOMELocalTrace/FileTraceCollector.hxx,
31005           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
31006           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
31007           src/SALOMELocalTrace/LocalTraceCollector.cxx,
31008           src/SALOMELocalTrace/LocalTraceCollector.hxx,
31009           src/SALOMELocalTrace/Makefile.am,
31010           src/SALOMELocalTrace/utilities.h,
31011           src/SALOMELocalTrace/Test/Makefile.am,
31012           src/SALOMETraceCollector/Makefile.am,
31013           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
31014           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
31015           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
31016           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
31017           src/SALOMETraceCollector/Test/Makefile.am,
31018           src/TestContainer/Makefile.am,
31019           src/TestContainer/SALOME_TestComponentPy.py,
31020           src/TestContainer/SALOME_TestComponent_i.cxx,
31021           src/TestContainer/SALOME_TestComponent_i.hxx,
31022           src/TestContainer/TestComponentPy.py,
31023           src/TestContainer/TestContainer.cxx,
31024           src/TestContainer/TestLogger.cxx,
31025           src/TestMPIContainer/Makefile.am,
31026           src/TestMPIContainer/TestMPIComponentEngine.cxx,
31027           src/TestMPIContainer/TestMPIComponentEngine.hxx,
31028           src/TestMPIContainer/TestMPIContainer.cxx,
31029           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
31030           src/Utils/Makefile.am, src/Utils/Utils_CommException.cxx,
31031           src/Utils/Utils_CommException.hxx,
31032           src/Utils/Utils_CorbaException.hxx,
31033           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
31034           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
31035           src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
31036           src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
31037           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
31038           src/Utils/Utils_ORB_INIT.hxx,
31039           src/Utils/Utils_SALOME_Exception.cxx,
31040           src/Utils/Utils_SALOME_Exception.hxx,
31041           src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
31042           src/Utils/Test/Makefile.am:
31043
31044         [no log message]
31045
31046 2007-10-24 23:29  prascle
31047
31048         * bin/setenv.py, bin/virtual_salome.py,
31049           salome_adm/unix/config_files/check_openmpi.m4,
31050           src/Container/SALOME_ContainerPy.py,
31051           src/DSC/DSC_User/Makefile.am,
31052           src/DSC/DSC_User/Superv_Component_i.cxx,
31053           src/DSC/DSC_User/Superv_Component_i.hxx,
31054           src/DSC/DSC_User/port_factory.hxx,
31055           src/DSC/DSC_User/uses_port.hxx,
31056           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
31057           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
31058           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
31059           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
31060           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
31061           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
31062           src/KERNEL_PY/Help.py, src/KERNEL_PY/salome.py,
31063           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
31064           src/NamingService/SALOME_NamingServicePy.py,
31065           src/TestContainer/Makefile.am:
31066
31067         merge from BR_For40_DSC 25oct07
31068
31069 2007-10-24 21:33  prascle
31070
31071         * configure.ac, bin/Makefile.am, bin/launchConfigureParser.py,
31072           bin/orbmodule.py, bin/runSalome.py, bin/setenv.py,
31073           bin/shutdownSalome.py, bin/waitContainers.py, bin/waitNS.py,
31074           bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
31075           idl/SALOMEDS.idl, idl/SALOME_ContainerManager.idl,
31076           idl/SALOME_Registry.idl, resources/CatalogResources.xml.in,
31077           salome_adm/unix/config_files/check_mpi.m4, src/Makefile.am,
31078           src/Container/Container_i.cxx, src/Container/Makefile.am,
31079           src/Container/SALOME_ContainerManager.cxx,
31080           src/Container/SALOME_ContainerManager.hxx,
31081           src/Container/SALOME_ContainerManagerServer.cxx,
31082           src/Container/TestContainerManager.cxx,
31083           src/HDFPersist/Makefile.am, src/Launcher/Makefile.am,
31084           src/Launcher/SALOME_Launcher.cxx,
31085           src/Launcher/SALOME_Launcher.hxx,
31086           src/Launcher/SALOME_LauncherServer.cxx,
31087           src/LifeCycleCORBA/Makefile.am,
31088           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
31089           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
31090           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
31091           src/LifeCycleCORBA/TestContainerManager.cxx,
31092           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
31093           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
31094           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
31095           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
31096           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
31097           src/NamingService/SALOME_NamingService.cxx,
31098           src/Registry/RegistryService.cxx,
31099           src/Registry/RegistryService.hxx,
31100           src/Registry/SALOME_Registry_Server.cxx,
31101           src/ResourcesManager/Makefile.am,
31102           src/ResourcesManager/SALOME_LoadRateManager.cxx,
31103           src/ResourcesManager/SALOME_LoadRateManager.hxx,
31104           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
31105           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
31106           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
31107           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
31108           src/ResourcesManager/SALOME_ResourcesManager.cxx,
31109           src/ResourcesManager/SALOME_ResourcesManager.hxx,
31110           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
31111           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
31112           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
31113           src/UnitTests/UnitTests.py:
31114
31115         merge from BR_V4dev_resman 24oct07
31116
31117 2007-10-24 15:54  ribes
31118
31119         * salome_adm/unix/config_files/check_openmpi.m4,
31120           src/DSC/DSC_User/uses_port.hxx,
31121           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
31122           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
31123           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx:
31124
31125         - removing deprecated method
31126
31127 2007-10-24 14:17  caremoli
31128
31129         * bin/: setenv.py, virtual_salome.py:
31130
31131         CCAR: small correction
31132
31133 2007-10-24 14:09  caremoli
31134
31135         * src/TestContainer/Makefile.am:
31136
31137         CCAR: no need to add libs already in main lib (problem if already installed, use
31138         the installed libs instead of local ones)
31139
31140 2007-10-24 14:07  caremoli
31141
31142         * src/NamingService/SALOME_NamingServicePy.py:
31143
31144         CCAR: add documentation in the pydoc style
31145
31146 2007-10-24 14:06  caremoli
31147
31148         * src/KERNEL_PY/: Help.py, salome.py, salome_iapp.py,
31149           salome_study.py:
31150
31151         CCAR: change help to Help to be able to use pydoc inline help :
31152         now help(salome) displays pydoc documentation of salome.py module
31153
31154 2007-10-24 13:41  caremoli
31155
31156         * src/Container/SALOME_ContainerPy.py:
31157
31158         [no log message]
31159
31160 2007-10-23 10:59  prascle
31161
31162         * src/: Launcher/SALOME_LauncherServer.cxx,
31163           ResourcesManager/SALOME_ResourcesManager.cxx,
31164           ResourcesManager/SALOME_ResourcesManager.hxx:
31165
31166         PR: Debug Unit tests
31167
31168 2007-10-22 10:57  jfa
31169
31170         * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
31171           SALOME_ModuleCatalog_impl.cxx:
31172
31173         Debug new parser.
31174
31175 2007-10-19 07:48  mzn
31176
31177         * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
31178           SALOME_ModuleCatalog_impl.cxx:
31179
31180         Use xmlNodeGetContent(...) method instead of getting content field of xmlNode.
31181
31182 2007-10-18 08:44  jfa
31183
31184         * src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx:
31185
31186         To avoid compilation pb on RedHat 8.0.
31187
31188 2007-10-16 13:52  mzn
31189
31190         * salome_adm/unix/config_files/Makefile.am,
31191           salome_adm/unix/config_files/check_libxml.m4,
31192           src/Container/Makefile.am, src/LifeCycleCORBA/Makefile.am,
31193           src/ModuleCatalog/Makefile.am, src/ResourcesManager/Makefile.am:
31194
31195         Correction.
31196
31197 2007-10-16 09:42  mzn
31198
31199         * src/ResourcesManager/Makefile.am:
31200
31201         Correction.
31202
31203 2007-10-15 15:54  mzn
31204
31205         * src/: LifeCycleCORBA/Makefile.am, ResourcesManager/Makefile.am,
31206           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
31207           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
31208           ResourcesManager/SALOME_ResourcesManager.cxx,
31209           ResourcesManager/SALOME_ResourcesManager.hxx,
31210           ModuleCatalog/Makefile.am,
31211           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
31212           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
31213           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
31214
31215         Porting KERNEL on new XML reader.
31216
31217 2007-10-15 15:51  mzn
31218
31219         * configure.ac, salome_adm/unix/config_files/Makefile.am,
31220           salome_adm/unix/config_files/check_cppunit.m4,
31221           salome_adm/unix/config_files/check_libxml.m4,
31222           src/Container/Makefile.am:
31223
31224         Porting KERNEL on new XML reader.
31225
31226 2007-10-10 16:20  ribes
31227
31228         * src/HDFPersist/Makefile.am:
31229
31230         - Bug-- on some linux systems
31231
31232 2007-10-10 14:37  ribes
31233
31234         * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.cxx,
31235           Superv_Component_i.hxx, port_factory.hxx,
31236           Basic/basic_port_factory.hxx,
31237           Datastream/Calcium/calcium_port_factory.hxx,
31238           Datastream/Palm/palm_port_factory.hxx:
31239
31240         - adding register factory to Superv_Component
31241
31242 2007-10-08 10:01  caremoli
31243
31244         * Makefile.am, clean_configure, DEPRECATED/Makefile.in,
31245           bin/Makefile.am, bin/envSalome.py, bin/killSalome.py,
31246           bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.csh,
31247           bin/runSalome.ksh, bin/runSalome.py, bin/setenv.py,
31248           bin/virtual_salome.py, bin/appliskel/runAppli, doc/Makefile.am,
31249           doc/rst.css, doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
31250           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
31251           idl/SALOME_Session.idl, resources/Makefile.am,
31252           salome_adm/unix/make_common_starter.am,
31253           salome_adm/unix/DEPRECATED/make_conclude.in,
31254           salome_adm/unix/DEPRECATED/make_omniorb.in,
31255           salome_adm/unix/config_files/Makefile.am,
31256           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
31257           salome_adm/unix/config_files/check_boost.m4,
31258           salome_adm/unix/config_files/check_omniorb.m4,
31259           salome_adm/unix/config_files/install-sh,
31260           salome_adm/unix/config_files/ltmain.sh,
31261           salome_adm/unix/config_files/missing,
31262           salome_adm/unix/config_files/production.m4,
31263           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
31264           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
31265           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
31266           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
31267           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
31268           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
31269           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
31270           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
31271           src/Basics/Test/Makefile.am, src/Communication_SWIG/Makefile.am,
31272           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
31273           src/Container/Container_init_python.cxx,
31274           src/Container/Container_init_python.hxx,
31275           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
31276           src/Container/SALOME_Component_i.hxx,
31277           src/Container/SALOME_Container.cxx,
31278           src/Container/SALOME_Container.py,
31279           src/Container/SALOME_ContainerPy.py,
31280           src/Container/SALOME_Container_i.hxx,
31281           src/Container/SALOME_FileRef_i.cxx,
31282           src/Container/SALOME_FileRef_i.hxx,
31283           src/Container/SALOME_FileTransfer_i.cxx,
31284           src/Container/SALOME_FileTransfer_i.hxx,
31285           src/Container/TestContainerManager.cxx,
31286           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
31287           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
31288           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
31289           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
31290           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
31291           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
31292           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
31293           src/DSC/DSC_User/Datastream/GenericPort.hxx,
31294           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
31295           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
31296           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
31297           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
31298           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
31299           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
31300           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
31301           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
31302           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
31303           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
31304           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
31305           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
31306           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
31307           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
31308           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
31309           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
31310           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
31311           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
31312           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
31313           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
31314           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
31315           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
31316           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
31317           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
31318           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
31319           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
31320           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
31321           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
31322           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
31323           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
31324           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
31325           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
31326           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
31327           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
31328           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
31329           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
31330           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
31331           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
31332           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
31333           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
31334           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
31335           src/DSC/DSC_User/Datastream/Calcium/version.h,
31336           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
31337           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
31338           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
31339           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
31340           src/GenericObj/Makefile.am, src/HDFPersist/Makefile.am,
31341           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/salome.py,
31342           src/KERNEL_PY/salome_study.py,
31343           src/LifeCycleCORBA/LifeCycleCORBA.py,
31344           src/LifeCycleCORBA/Makefile.am,
31345           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
31346           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
31347           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
31348           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
31349           src/LifeCycleCORBA/Test/Makefile.am,
31350           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
31351           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
31352           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
31353           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
31354           src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
31355           src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
31356           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
31357           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
31358           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
31359           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
31360           src/ModuleGenerator/Makefile.am,
31361           src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
31362           src/NamingService/NamingService_WaitForServerReadiness.cxx,
31363           src/NamingService/NamingService_WaitForServerReadiness.hxx,
31364           src/NamingService/SALOME_NamingService.cxx,
31365           src/NamingService/ServiceUnreachable.hxx,
31366           src/NamingService/Test/Makefile.am,
31367           src/NamingService/Test/TestNamingService.py,
31368           src/Notification/Makefile.am, src/Registry/Makefile.am,
31369           src/Registry/RegistryConnexion.hxx,
31370           src/Registry/RegistryService.cxx,
31371           src/Registry/RegistryService.hxx,
31372           src/ResourcesManager/Makefile.am,
31373           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
31374           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
31375           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
31376           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
31377           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
31378           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
31379           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
31380           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
31381           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
31382           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
31383           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
31384           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
31385           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
31386           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
31387           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
31388           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
31389           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
31390           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
31391           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
31392           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
31393           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
31394           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
31395           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
31396           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
31397           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
31398           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
31399           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
31400           src/SALOMEDS/SALOMEDS_Client.cxx,
31401           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
31402           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
31403           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
31404           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
31405           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
31406           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
31407           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
31408           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
31409           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
31410           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
31411           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
31412           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
31413           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
31414           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
31415           src/SALOMEDS/SALOMEDS_FileType.cxx,
31416           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
31417           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
31418           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
31419           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
31420           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
31421           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
31422           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
31423           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
31424           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
31425           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
31426           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
31427           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
31428           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
31429           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
31430           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
31431           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
31432           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
31433           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
31434           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
31435           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
31436           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
31437           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
31438           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
31439           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
31440           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
31441           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
31442           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
31443           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
31444           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
31445           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
31446           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
31447           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
31448           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
31449           src/SALOMEDS/SALOMEDS_Server.cxx,
31450           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
31451           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
31452           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
31453           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
31454           src/SALOMEDS/SALOMEDS_Study_i.cxx,
31455           src/SALOMEDS/SALOMEDS_Study_i.hxx,
31456           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
31457           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
31458           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
31459           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
31460           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
31461           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
31462           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
31463           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
31464           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
31465           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
31466           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
31467           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
31468           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
31469           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
31470           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
31471           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
31472           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
31473           src/SALOMEDS/Test/TestSALOMEDS.py,
31474           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
31475           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
31476           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
31477           src/SALOMEDSImpl/Test/Makefile.am,
31478           src/SALOMELocalTrace/BaseTraceCollector.cxx,
31479           src/SALOMELocalTrace/BaseTraceCollector.hxx,
31480           src/SALOMELocalTrace/FileTraceCollector.cxx,
31481           src/SALOMELocalTrace/FileTraceCollector.hxx,
31482           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
31483           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
31484           src/SALOMELocalTrace/LocalTraceCollector.cxx,
31485           src/SALOMELocalTrace/LocalTraceCollector.hxx,
31486           src/SALOMELocalTrace/Makefile.am,
31487           src/SALOMELocalTrace/utilities.h,
31488           src/SALOMELocalTrace/Test/Makefile.am,
31489           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
31490           src/SALOMETraceCollector/Makefile.am,
31491           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
31492           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
31493           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
31494           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
31495           src/SALOMETraceCollector/Test/Makefile.am,
31496           src/TestContainer/Makefile.am,
31497           src/TestContainer/SALOME_TestComponentPy.py,
31498           src/TestContainer/SALOME_TestComponent_i.cxx,
31499           src/TestContainer/SALOME_TestComponent_i.hxx,
31500           src/TestContainer/TestComponentPy.py,
31501           src/TestContainer/TestContainer.cxx,
31502           src/TestContainer/TestLogger.cxx,
31503           src/TestMPIContainer/Makefile.am,
31504           src/TestMPIContainer/TestMPIComponentEngine.cxx,
31505           src/TestMPIContainer/TestMPIComponentEngine.hxx,
31506           src/TestMPIContainer/TestMPIContainer.cxx,
31507           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
31508           src/Utils/Makefile.am, src/Utils/Utils_CommException.cxx,
31509           src/Utils/Utils_CommException.hxx,
31510           src/Utils/Utils_CorbaException.hxx,
31511           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
31512           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
31513           src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
31514           src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
31515           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
31516           src/Utils/Utils_ORB_INIT.hxx,
31517           src/Utils/Utils_SALOME_Exception.cxx,
31518           src/Utils/Utils_SALOME_Exception.hxx,
31519           src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
31520           src/Utils/Test/Makefile.am:
31521
31522         CCAR: merge from mergefrom_BR_For40_DSC_28sep2007
31523
31524 2007-10-05 16:57  apo
31525
31526         * src/Container/Makefile.am:
31527
31528         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)
31529
31530 2007-10-05 15:39  secher
31531
31532         * bin/setenv.py:
31533
31534         for salome batch runnings
31535
31536 2007-10-05 15:22  prascle
31537
31538         * src/: Container/SALOME_ContainerManager.cxx,
31539           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
31540
31541         PR: abort if SALOME_BATCH not defined
31542
31543 2007-10-04 11:23  secher
31544
31545         * bin/runSalome.py:
31546
31547         debug
31548
31549 2007-10-03 11:13  prascle
31550
31551         * src/HDFPersist/Makefile.am:
31552
31553         PR: Trailing slash induced a bug
31554
31555 2007-10-03 10:43  secher
31556
31557         * configure.ac, bin/Makefile.am, bin/launchConfigureParser.py,
31558           bin/orbmodule.py, bin/runSalome.py, bin/shutdownSalome.py,
31559           bin/waitContainers.py, bin/waitNS.py,
31560           bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
31561           idl/SALOMEDS.idl, idl/SALOME_ContainerManager.idl,
31562           idl/SALOME_Registry.idl, resources/CatalogResources.xml.in,
31563           salome_adm/unix/config_files/check_mpi.m4, src/Makefile.am,
31564           src/Container/Container_i.cxx, src/Container/Makefile.am,
31565           src/Container/SALOME_ContainerManager.cxx,
31566           src/Container/SALOME_ContainerManager.hxx,
31567           src/Container/SALOME_ContainerManagerServer.cxx,
31568           src/Container/TestContainerManager.cxx,
31569           src/HDFPersist/Makefile.am, src/Launcher/Makefile.am,
31570           src/Launcher/SALOME_Launcher.cxx,
31571           src/Launcher/SALOME_Launcher.hxx,
31572           src/Launcher/SALOME_LauncherServer.cxx,
31573           src/LifeCycleCORBA/Makefile.am,
31574           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
31575           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
31576           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
31577           src/LifeCycleCORBA/TestContainerManager.cxx,
31578           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
31579           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
31580           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
31581           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
31582           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
31583           src/NamingService/SALOME_NamingService.cxx,
31584           src/Registry/RegistryService.cxx,
31585           src/Registry/RegistryService.hxx,
31586           src/Registry/SALOME_Registry_Server.cxx,
31587           src/ResourcesManager/Makefile.am,
31588           src/ResourcesManager/SALOME_LoadRateManager.cxx,
31589           src/ResourcesManager/SALOME_LoadRateManager.hxx,
31590           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
31591           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
31592           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
31593           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
31594           src/ResourcesManager/SALOME_ResourcesManager.cxx,
31595           src/ResourcesManager/SALOME_ResourcesManager.hxx,
31596           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
31597           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
31598           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
31599           src/UnitTests/UnitTests.py:
31600
31601         resolve conflicts from merge with BR_V326p4_resman branch
31602
31603 2007-10-01 15:05  secher
31604
31605         * configure.ac, bin/runSalome.py, bin/shutdownSalome.py,
31606           idl/SALOME_ContainerManager.idl, src/Makefile.am,
31607           src/Container/Makefile.am,
31608           src/Container/SALOME_ContainerManager.cxx,
31609           src/Container/SALOME_ContainerManager.hxx,
31610           src/Container/SALOME_ContainerManagerServer.cxx,
31611           src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
31612           src/Launcher/SALOME_Launcher.hxx,
31613           src/Launcher/SALOME_LauncherServer.cxx,
31614           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
31615           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
31616           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
31617           src/LifeCycleCORBA/TestContainerManager.cxx,
31618           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
31619           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
31620           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
31621           src/ResourcesManager/SALOME_ResourcesManager.cxx,
31622           src/ResourcesManager/SALOME_ResourcesManager.hxx,
31623           src/UnitTests/UnitTests.py:
31624
31625         add a SalomeLauncher. Modify ContainerManager idl to create three interfaces in it: one for launcher, one for containermanager and one for resources manager.
31626
31627 2007-09-28 16:41  prascle
31628
31629         * configure.ac, bin/addToKillList.py, bin/killSalomeWithPort.py,
31630           bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
31631           bin/runSalome.py, bin/server.py, bin/setenv.py,
31632           bin/virtual_salome.py, doc/salome/tui/Makefile.am,
31633           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
31634           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
31635           idl/SALOME_Exception.xml,
31636           salome_adm/unix/config_files/Makefile.am,
31637           salome_adm/unix/config_files/check_htmlgen.m4,
31638           salome_adm/unix/config_files/check_mpi.m4,
31639           salome_adm/unix/config_files/check_openmpi.m4,
31640           salome_adm/unix/config_files/production.m4,
31641           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
31642           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
31643           src/Container/SALOME_Container.cxx,
31644           src/Container/SALOME_ContainerManager.cxx,
31645           src/Container/SALOME_Container_i.hxx,
31646           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
31647           src/Container/TestSalome_file.cxx, src/DSC/Makefile.am,
31648           src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
31649           src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
31650           src/DSC/DSC_User/Makefile.am,
31651           src/DSC/DSC_User/Superv_Component_i.cxx,
31652           src/DSC/DSC_User/Superv_Component_i.hxx,
31653           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
31654           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
31655           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
31656           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
31657           src/DSC/DSC_User/Datastream/GenericPort.hxx,
31658           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
31659           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
31660           src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
31661           src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
31662           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
31663           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
31664           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
31665           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
31666           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
31667           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
31668           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
31669           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
31670           src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
31671           src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
31672           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
31673           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
31674           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
31675           src/HDFPersist/HDFcontainerObject.cc,
31676           src/HDFPersist/HDFcontainerObject.hxx,
31677           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
31678           src/HDFPersist/HDFexport.hxx, src/HDFPersist/HDFfile.hxx,
31679           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
31680           src/HDFPersist/HDFinternalObject.cc,
31681           src/HDFPersist/HDFinternalObject.hxx,
31682           src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
31683           src/HDFPersist/Makefile.am,
31684           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
31685           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
31686           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
31687           src/NamingService/Test/TestNamingService.py,
31688           src/ParallelContainer/Makefile.am,
31689           src/ParallelContainer/Parallel_Salome_file_i.cxx,
31690           src/ParallelContainer/Parallel_Salome_file_i.hxx,
31691           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
31692           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
31693           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
31694           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
31695           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
31696           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
31697           src/Registry/SALOME_Registry.hxx,
31698           src/ResourcesManager/SALOME_ResourcesManager.cxx,
31699           src/SALOMEDS/Test/TestSALOMEDS.py,
31700           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
31701           src/UnitTests/UnitTests.py:
31702
31703         merge from branch BR_For40_DSC tag  mergeto_BR_Dev_For_4_0_28sep2007
31704
31705 2007-09-28 16:24  vsr
31706
31707         * bin/runSalome.csh:
31708
31709         Fix a long-standing problem with passing wrong values to the --standalone or --embedded parameters.
31710         Improve --standalone & -embedded parameters processing (XML and command line)
31711
31712 2007-09-28 14:11  vsr
31713
31714         * bin/: envSalome.py, launchConfigureParser.py, runSalome,
31715           setenv.py:
31716
31717         Fix a long-standing problem with passing wrong values to the --standalone or --embedded parameters.
31718         Improve --standalone & -embedded parameters processing (XML and command line)
31719
31720 2007-09-28 12:53  vsr
31721
31722         * src/KERNEL_PY/batchmode_salome.py:
31723
31724         Fix a problem with importing of salome_shared_modules.py script in the batch mode python terminal.
31725
31726 2007-09-28 11:11  mnt
31727
31728         * configure.ac:
31729
31730         Change version to 3.2.8
31731
31732 2007-09-27 16:49  ribes
31733
31734         * src/: Container/Container_i.cxx, Container/Salome_file_i.cxx,
31735           Container/Salome_file_i.hxx, HDFPersist/HDFcontainerObject.cc,
31736           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFdataset.cc,
31737           HDFPersist/HDFdataset.hxx, HDFPersist/HDFgroup.cc,
31738           HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
31739           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.cc,
31740           HDFPersist/HDFobject.hxx,
31741           ParallelContainer/Parallel_Salome_file_i.cxx,
31742           ParallelContainer/SALOME_ParallelComponent_i.cxx,
31743           ParallelContainer/SALOME_ParallelComponent_i.hxx,
31744           ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
31745
31746         - Parallel Salome_file are now ok with parallel applications
31747         - const char * into HDFPersist constructor of classes
31748         - --warning into Container
31749
31750 2007-09-26 15:59  caremoli
31751
31752         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
31753
31754         CCAR: memory leak _ptr -> _var
31755
31756 2007-09-26 11:23  ribes
31757
31758         * src/: Container/Component_i.cxx,
31759           Container/SALOME_Component_i.hxx, Container/Salome_file_i.cxx,
31760           ParallelContainer/SALOME_ParallelComponent_i.cxx,
31761           ParallelContainer/SALOME_ParallelComponent_i.hxx,
31762           ParallelContainer/SALOME_ParallelContainer_i.cxx:
31763
31764         - Adding CallBack method
31765
31766 2007-09-26 10:38  caremoli
31767
31768         * bin/server.py:
31769
31770         [no log message]
31771
31772 2007-09-25 19:37  caremoli
31773
31774         * src/DSC/DSC_User/Datastream/Calcium/: Calcium.cxx,
31775           CalciumInterface.hxx:
31776
31777         CCAR: add 2 debug prints
31778
31779 2007-09-25 14:13  ribes
31780
31781         * src/: Container/Component_i.cxx,
31782           ParallelContainer/SALOME_ParallelComponent_i.cxx:
31783
31784         - Parallel and sequential have the behaviour
31785
31786 2007-09-25 14:04  vsr
31787
31788         * bin/runSalome.py:
31789
31790         Fix bug NPAL17025 (can't launch Salome 4 if another Salome's session is running)
31791
31792 2007-09-25 14:02  caremoli
31793
31794         * bin/: addToKillList.py, killSalomeWithPort.py, nameserver.py,
31795           orbmodule.py, runNS.py, runSalome.py, server.py, setenv.py:
31796
31797         CCAR: change tabs to spaces
31798         replace launching servers through os.spawn by method daemonize (servers are real daemons now
31799         and are detached from terminal)
31800
31801 2007-09-25 11:02  ribes
31802
31803         * idl/SALOME_Component.idl, idl/SALOME_Component.xml,
31804           src/Container/Component_i.cxx,
31805           src/Container/SALOME_Component_i.hxx,
31806           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
31807           src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
31808
31809         - Change some operations prototypes
31810         - Fix Parallel_Salome_file
31811
31812 2007-09-25 10:18  caremoli
31813
31814         * src/DSC/: DSC_Python/calcium.i,
31815           DSC_User/Datastream/Calcium/Calcium.cxx,
31816           DSC_User/Datastream/Calcium/Calcium.hxx:
31817
31818         CCAR: change name of function create_port into create_calcium_port
31819
31820 2007-09-24 15:52  ribes
31821
31822         * idl/SALOME_Component.xml,
31823           src/ParallelContainer/Parallel_Salome_file_i.cxx,
31824           src/ParallelContainer/Parallel_Salome_file_i.hxx,
31825           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
31826           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
31827           src/Registry/SALOME_Registry.hxx:
31828
31829         - Fix warning for SALOME_Registry
31830         - Parallel_Salome_file ok, needs some more tests
31831
31832 2007-09-21 16:03  ribes
31833
31834         * src/Container/Salome_file_i.cxx:
31835
31836         - Bugs--
31837
31838 2007-09-21 11:52  ribes
31839
31840         * idl/DSC_Engines.idl, idl/Makefile.am, idl/SALOME_Component.idl,
31841           idl/SALOME_Component.xml, src/Container/Component_i.cxx,
31842           src/Container/Container_i.cxx, src/Container/Salome_file_i.cxx,
31843           src/Container/Salome_file_i.hxx,
31844           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
31845           src/ParallelContainer/Makefile.am,
31846           src/ParallelContainer/Parallel_Salome_file_i.cxx,
31847           src/ParallelContainer/Parallel_Salome_file_i.hxx,
31848           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
31849           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
31850           src/ParallelContainer/SALOME_ParallelContainer_i.cxx:
31851
31852         - Adding support of Salome_file into containers and components
31853         - Adding Parallel_Salome_file
31854         - Adding Parallel_Component
31855         - Need some tests
31856
31857 2007-09-20 11:15  mzn
31858
31859         * bin/: launchConfigureParser.py, runSalome, runSalome.ksh,
31860           runSalome.py, appliskel/runAppli:
31861
31862         Fix for Bug NPAL16630 (runSalome and runAppli use python option "-i" when it has arguments, and no option otherwise).
31863
31864 2007-09-19 16:06  mzn
31865
31866         * bin/: launchConfigureParser.py, runSalome, runSalome.ksh,
31867           runSalome.py, appliskel/runAppli:
31868
31869         Fix for Bug NPAL16630 (runSalome and runAppli use python option "-i" when it has arguments, and no option otherwise).
31870
31871 2007-09-17 14:32  secher
31872
31873         * src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
31874
31875         just a little modification
31876
31877 2007-09-17 12:40  secher
31878
31879         * src/: Container/SALOME_ContainerManager.cxx,
31880           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
31881           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
31882           ResourcesManager/SALOME_ResourcesManager.cxx:
31883
31884         add MpiImpl object to manage different mpi implementations
31885
31886 2007-09-14 15:05  ribes
31887
31888         * idl/Makefile.am, idl/SALOME_Component.idl,
31889           idl/SALOME_Component.xml,
31890           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
31891           src/DSC/DSC_User/Basic/data_short_port_provides.hxx:
31892
31893         - Adding ParallelSalome_file
31894         - BASIC_short ok
31895
31896 2007-09-13 15:53  ribes
31897
31898         * src/Container/: Salome_file_interface.cxx,
31899           Salome_file_interface.hxx:
31900
31901         - Salome_file ok
31902
31903 2007-09-13 15:48  secher
31904
31905         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
31906           SALOME_ResourcesCatalog_Handler.hxx,
31907           SALOME_ResourcesCatalog_Parser.cxx,
31908           SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx,
31909           SALOME_ResourcesManager.hxx:
31910
31911         add PBS batch manager
31912
31913 2007-09-13 11:28  ribes
31914
31915         * idl/SALOME_Component.idl,
31916           src/Container/Salome_file_interface.cxx,
31917           src/Container/Salome_file_interface.hxx,
31918           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
31919           src/DSC/DSC_User/Basic/data_short_port_provides.hxx:
31920
31921         - Basic_short port update
31922         - Comments on Salome_file are now correct
31923         - Begin of the implementation of Parallel Salome_file
31924
31925 2007-09-12 16:41  ribes
31926
31927         * src/Container/: Salome_file_interface.cxx,
31928           Salome_file_interface.hxx:
31929
31930         - Separating the implementation of Salome_file for parallel implementation
31931
31932 2007-08-23 06:29  vsr
31933
31934         * configure.ac:
31935
31936         [no log message]
31937
31938 2007-08-17 10:25  jfa
31939
31940         * src/: SALOMEDS/SALOME_DriverPy.py,
31941           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
31942           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
31943
31944         Join modifications from V3_2_0_maintainance (V3_2_6pre4 - T32x_16Aug2007_16h00m)
31945
31946 2007-07-25 09:38  secher
31947
31948         * src/LifeCycleCORBA/TestContainerManager.cxx:
31949
31950         [no log message]
31951
31952 2007-07-24 15:04  secher
31953
31954         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
31955           SALOME_ResourcesCatalog_Handler.hxx,
31956           SALOME_ResourcesCatalog_Parser.cxx,
31957           SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx,
31958           SALOME_ResourcesManager.hxx:
31959
31960         add batch manager factory
31961
31962 2007-07-20 14:35  apo
31963
31964         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
31965           src/SALOMEDS/SALOMEDS_Study.hxx,
31966           src/SALOMEDS/SALOMEDS_Study_i.cxx,
31967           src/SALOMEDS/SALOMEDS_Study_i.hxx,
31968           src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
31969
31970         Start to use SALOMEDS::Study::Modified() method
31971
31972 2007-07-19 11:00  ribes
31973
31974         * idl/SALOME_Component.idl, src/Container/Makefile.am,
31975           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
31976           src/Container/TestSalome_file.cxx, src/HDFPersist/HDFascii.cc,
31977           src/HDFPersist/HDFascii.hxx,
31978           src/HDFPersist/HDFcontainerObject.cc,
31979           src/HDFPersist/HDFcontainerObject.hxx,
31980           src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFexport.hxx,
31981           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.hxx,
31982           src/HDFPersist/HDFinternalObject.hxx,
31983           src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
31984           src/HDFPersist/Makefile.am, src/ParallelContainer/Makefile.am,
31985           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
31986           src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
31987
31988         - Adding Salome_file into kernel : it proposes a new way to manage files.
31989         It will be used into services ports in supervisor schemas
31990         - HDF is now not depending on CAS.
31991         - Parallel version of Salome_file is not yet finished.
31992
31993 2007-07-19 10:57  secher
31994
31995         * idl/SALOME_ContainerManager.idl,
31996           src/Container/SALOME_ContainerManager.cxx,
31997           src/Container/SALOME_ContainerManager.hxx,
31998           src/LifeCycleCORBA/Makefile.am,
31999           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32000           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32001
32002         get jobId when submitting job on cluster, query job and get results files on local machine when job is finished
32003
32004 2007-07-18 13:49  srn
32005
32006         * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
32007           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
32008           src/SALOMEDS/SALOMEDS_Study_i.cxx,
32009           src/SALOMEDS/SALOMEDS_Study_i.hxx:
32010
32011         Implemented method Modified() for SALOMEDS_Study that marks the Study as being modified.
32012
32013 2007-07-17 10:01  secher
32014
32015         * src/: Container/SALOME_ContainerManager.cxx,
32016           ResourcesManager/Makefile.am,
32017           ResourcesManager/SALOME_ResourcesManager.cxx,
32018           ResourcesManager/SALOME_ResourcesManager.hxx:
32019
32020         definition of BatchLight class to submit salome session on cluster
32021
32022 2007-07-12 15:59  secher
32023
32024         * src/: Container/Container_i.cxx,
32025           Container/SALOME_ContainerManager.cxx,
32026           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
32027           NamingService/SALOME_NamingService.cxx,
32028           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
32029           ResourcesManager/SALOME_ResourcesManager.cxx,
32030           SALOMEDS/SALOMEDS_StudyManager_i.hxx:
32031
32032         debugging of simultaneous registry of containers in naming service
32033
32034 2007-07-11 15:14  secher
32035
32036         * bin/appliskel/killCurrentPort,
32037           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
32038           src/ResourcesManager/SALOME_ResourcesManager.cxx:
32039
32040         try to quit Salome as clean as possible
32041
32042 2007-07-11 13:56  secher
32043
32044         * src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx:
32045
32046         [no log message]
32047
32048 2007-07-11 12:09  secher
32049
32050         * src/Container/SALOME_ContainerManager.cxx:
32051
32052         [no log message]
32053
32054 2007-07-09 16:31  secher
32055
32056         * bin/Makefile.am, bin/orbmodule.py, bin/shutdownSalome.py,
32057           idl/SALOMEDS.idl, idl/SALOME_Registry.idl,
32058           src/Container/SALOME_ContainerManager.cxx,
32059           src/Container/SALOME_ContainerManager.hxx,
32060           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
32061           src/Registry/RegistryService.cxx,
32062           src/Registry/RegistryService.hxx,
32063           src/Registry/SALOME_Registry_Server.cxx,
32064           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32065           src/ResourcesManager/SALOME_ResourcesManager.hxx,
32066           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx:
32067
32068         improvement to shutdown salome properly and to launch exception if problem of connection on remote host
32069
32070 2007-07-07 10:34  prascle
32071
32072         * clean_configure:
32073
32074         PR: remove all files not on CVS
32075
32076 2007-07-07 10:26  prascle
32077
32078         * salome_adm/unix/config_files/: check_boost.m4, install-sh,
32079           ltmain.sh, missing:
32080
32081         PR: files not required on CVS, regenerated
32082
32083 2007-07-05 11:08  secher
32084
32085         * src/: Container/SALOME_ContainerManager.cxx,
32086           ResourcesManager/SALOME_ResourcesManager.cxx:
32087
32088         debugging when users are different on local and on cluster
32089
32090 2007-07-05 08:42  ribes
32091
32092         * idl/SALOME_Component.idl, src/Container/Makefile.am,
32093           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
32094           src/Container/TestSalome_file.cxx,
32095           src/ParallelContainer/Makefile.am:
32096
32097         - Salome_file can now be saved into a hdf file
32098         - Makefile are changed to add HDF persist dependency
32099
32100 2007-07-03 14:13  secher
32101
32102         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
32103
32104         debugging to have the possibility to have different users in local and on cluster
32105
32106 2007-07-02 11:06  prascle
32107
32108         * bin/virtual_salome.py:
32109
32110         PR: release constraints on modules for SALOME Application
32111
32112 2007-07-02 11:04  prascle
32113
32114         * bin/runSalome.py:
32115
32116         PR: kill Salome does not work with SALOME application
32117
32118 2007-06-29 14:48  abd
32119
32120         * bin/: killSalome.py, runSalome.py:
32121
32122         Potring to Win32 Platform
32123
32124 2007-06-29 14:46  abd
32125
32126         * src/Container/Container_i.cxx:
32127
32128         Restore Windows python debug workaround.
32129         Now Windows Version is supporting several study in one session.
32130
32131 2007-06-29 11:34  secher
32132
32133         * bin/Makefile.am, bin/waitContainers.py, bin/waitNS.py,
32134           src/ResourcesManager/SALOME_ResourcesManager.cxx:
32135
32136         improvement to manage batch on ccrt
32137
32138 2007-06-28 16:45  secher
32139
32140         * src/: Makefile.am, Container/Makefile.am,
32141           Container/SALOME_ContainerManager.cxx,
32142           Container/SALOME_ContainerManager.hxx,
32143           ResourcesManager/SALOME_ResourcesManager.cxx:
32144
32145         improvement to use Salome application
32146
32147 2007-06-28 12:16  ribes
32148
32149         * idl/Makefile.am, idl/SALOME_Component.idl,
32150           idl/SALOME_Exception.xml, src/Container/Component_i.cxx,
32151           src/Container/Container_i.cxx, src/Container/Makefile.am,
32152           src/Container/SALOME_Component_i.hxx,
32153           src/Container/SALOME_Container_i.hxx,
32154           src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
32155           src/Container/TestSalome_file.cxx,
32156           src/ParallelContainer/Makefile.am,
32157           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
32158           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
32159           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
32160
32161         - Adding Salome_file to Kernel for file support into supervisor schema
32162
32163 2007-06-28 09:44  caremoli
32164
32165         * configure.ac:
32166
32167         CCAR: add directory
32168
32169 2007-06-27 14:54  abd
32170
32171         * salome_adm/unix/config_files/check_omniorb.m4:
32172
32173         Removed copying of configure files
32174         Removed copying of pythonbe file
32175
32176 2007-06-27 13:23  vsr
32177
32178         * salome_adm/unix/config_files/check_qt.m4,
32179           src/Container/Makefile.am, src/LifeCycleCORBA/Makefile.am,
32180           src/ModuleCatalog/Makefile.am,
32181           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
32182           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
32183           src/ResourcesManager/Makefile.am,
32184           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
32185           src/ResourcesManager/SALOME_ResourcesManager.cxx:
32186
32187         Merge from BR_QT4 branch
32188
32189 2007-06-27 13:14  vsr
32190
32191         * salome_adm/unix/config_files/check_qt.m4:
32192
32193         Porting to qt 4: merge changes from GUI module
32194
32195 2007-06-26 11:29  caremoli
32196
32197         * src/Container/: Makefile.am, SALOME_Container.cxx:
32198
32199         CCAR: add possibility to automatically launch a debugger attached to the container
32200         on SIGSEGV and not trapped exceptions. Only if DEBUGGER env variable is set to a shell to execute
32201
32202 2007-06-26 11:15  caremoli
32203
32204         * src/DSC/: Makefile.am, DSC_Python/Makefile.am,
32205           DSC_Python/calcium.i, DSC_Python/dsccalcium.py,
32206           DSC_User/Makefile.am, DSC_User/Datastream/Calcium/Makefile.am,
32207           DSC_User/Datastream/Calcium/calcium.i,
32208           DSC_User/Datastream/Calcium/dsccalcium.py:
32209
32210         CCAR: transfer Python interface from DSC_User/Datastream/Calcium to DSC_Python
32211
32212 2007-06-26 09:27  jfa
32213
32214         * configure.ac:
32215
32216         Change version to 3.2.7
32217
32218 2007-06-25 17:04  caremoli
32219
32220         * src/DSC/DSC_User/Datastream/Calcium/: Calcium.c, Calcium.cxx,
32221           Calcium.hxx, Makefile.am, calcium.h, calcium.i, calciumf.c,
32222           dsccalcium.py, fortoc.h:
32223
32224         CCAR: add fortran interface and python interface to DSC calcium ports
32225
32226 2007-06-25 11:00  abd
32227
32228         * salome_adm/unix/: make_common_starter.am,
32229           config_files/Makefile.am:
32230
32231         Separation KERNEL DEPRECATED configuration files from main config_files
32232
32233 2007-06-20 15:38  ribes
32234
32235         * src/Container/SALOME_ContainerManager.cxx:
32236
32237         - Bug removed for choosing what kind of container
32238
32239 2007-06-20 15:23  abd
32240
32241         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
32242           Registry/RegistryService.cxx, SALOMELocalTrace/utilities.h:
32243
32244         Corrected implementation of MESSAGE functionality on Windows
32245
32246         Porting current version of BR_Dev_For_4_0 branch on Windows.
32247         First stable Windows version of BR_Dev_For_4_0  branch.
32248
32249 2007-06-20 10:34  ribes
32250
32251         * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
32252           src/Container/SALOME_ContainerManager.cxx,
32253           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
32254           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
32255           src/ResourcesManager/SALOME_ResourcesManager.cxx:
32256
32257         - YACS patch for PaCO++ containers and components
32258
32259 2007-06-19 19:10  caremoli
32260
32261         * configure.ac:
32262
32263         CCAR: change enable-debug default to NO
32264
32265 2007-06-19 19:09  caremoli
32266
32267         * salome_adm/unix/config_files/production.m4:
32268
32269         CCAR: remove PKGS from enable-debug and enable-production macros
32270
32271 2007-06-15 10:45  ribes
32272
32273         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
32274
32275         - preSet is now ok
32276
32277 2007-06-14 14:21  caremoli
32278
32279         * doc/salome/tui/Makefile.am,
32280           salome_adm/unix/config_files/check_htmlgen.m4:
32281
32282         CCAR: new configuration of doxygen : to validate
32283
32284 2007-06-14 14:14  caremoli
32285
32286         * bin/virtual_salome.py:
32287
32288         CCAR: use new location of doc
32289
32290 2007-06-14 14:12  caremoli
32291
32292         * src/DSC/: DSC_Basic/DSC_Basic.hxx,
32293           DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
32294           DSC_User/Datastream/AdjacentFunctor.hxx,
32295           DSC_User/Datastream/CorbaTypeManipulator.hxx,
32296           DSC_User/Datastream/GenericPort.hxx,
32297           DSC_User/Datastream/GenericUsesPort.hxx,
32298           DSC_User/Datastream/Calcium/Calcium.c,
32299           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
32300           DSC_User/Datastream/Calcium/CalciumInterface.hxx,
32301           DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
32302           DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
32303           DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
32304           DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx:
32305
32306         CCAR: ifdef _DEBUG_ around debug trace
32307
32308 2007-06-06 15:46  ribes
32309
32310         * salome_adm/unix/config_files/Makefile.am:
32311
32312         openmpi m4 install
32313
32314 2007-06-05 15:00  abd
32315
32316         * bin/setenv.py:
32317
32318         Fix merging errors.
32319         It's not necessarily to use upper case in module names
32320
32321 2007-06-05 14:51  jfa
32322
32323         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
32324
32325         NPAL16136: Error FindObjectIOR after RemoveObjectWithChildren: removed object found.
32326
32327 2007-06-05 11:03  san
32328
32329         * src/: DSC/DSC_Basic/ConnectionManager_i.cxx,
32330           DSC/DSC_Basic/ConnectionManager_i.hxx,
32331           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
32332
32333         Porting to Qt4
32334         Compiler error with MS VC++ 7.1
32335
32336 2007-06-05 09:51  rahuel
32337
32338         * bin/launchConfigureParser.py, bin/runSalome.py,
32339           idl/SALOME_ContainerManager.idl,
32340           resources/CatalogResources.xml.in,
32341           salome_adm/unix/config_files/check_mpi.m4,
32342           src/Container/Makefile.am,
32343           src/Container/SALOME_ContainerManager.cxx,
32344           src/Container/SALOME_ContainerManager.hxx,
32345           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32346           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32347           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32348
32349         improvement for batch on ccrt
32350
32351 2007-06-04 15:55  ribes
32352
32353         * src/Container/SALOME_ContainerManager.cxx:
32354
32355         Using FindFirst on the resourcesmanager for
32356         ParallelContainers
32357
32358 2007-06-04 15:23  ribes
32359
32360         * salome_adm/unix/config_files/check_mpi.m4,
32361           salome_adm/unix/config_files/check_openmpi.m4,
32362           src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
32363
32364         Adding openmpi
32365
32366 2007-05-29 18:08  prascle
32367
32368         * COPYING, configure.ac, bin/addToKillList.py, bin/envSalome.py,
32369           bin/killSalome.py, bin/killSalomeWithPort.py,
32370           bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.py,
32371           bin/setenv.py, bin/virtual_salome.py, doc/salome/version.texi,
32372           idl/Makefile.am, salome_adm/unix/DEPRECATED/make_conclude.in,
32373           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
32374           salome_adm/unix/config_files/check_omniorb.m4,
32375           src/Communication/SALOME_Matrix_i.cxx,
32376           src/Container/Component_i.cxx, src/Container/Makefile.am,
32377           src/Container/SALOME_ComponentPy.py,
32378           src/Container/SALOME_Container.py,
32379           src/Container/SALOME_ContainerManager.cxx,
32380           src/Container/SALOME_ContainerPy.py,
32381           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
32382           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
32383           src/DSC/DSC_Basic/DSC_Basic.hxx,
32384           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.hxx,
32385           src/DSC/DSC_Basic/DSC_interface.cxx,
32386           src/DSC/DSC_Basic/Makefile.am,
32387           src/DSC/DSC_Basic/PortProperties_i.hxx,
32388           src/DSC/DSC_User/Makefile.am,
32389           src/DSC/DSC_User/Datastream/Makefile.am,
32390           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
32391           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
32392           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.am,
32393           src/HDFPersist/test1.c, src/KERNEL_PY/salome_shared_modules.py,
32394           src/KERNEL_PY/salome_study.py, src/ModuleGenerator/IDLparser.py,
32395           src/NOTIFICATION_SWIG/Makefile.am,
32396           src/NOTIFICATION_SWIG/NOTIFICATION.i,
32397           src/NamingService/SALOME_NamingService.cxx,
32398           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32399           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
32400           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
32401           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
32402           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
32403           src/SALOMELocalTrace/utilities.h,
32404           src/TestContainer/TestContainer.cxx,
32405           src/Utils/SALOME_utilities.py:
32406
32407         mergefrom_V4_0
32408
32409 2007-05-29 09:51  jfa
32410
32411         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
32412
32413         NPAL15643: EDF402: Bug when saving PYHELLO object.
32414
32415 2007-05-22 15:01  prascle
32416
32417         * idl/DSC_Engines.idl, idl/DSC_Engines.xml,
32418           idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
32419           idl/SALOME_Ports.xml, salome_adm/unix/config_files/config.guess,
32420           salome_adm/unix/config_files/config.sub,
32421           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
32422           src/Container/SALOME_ContainerManager.cxx,
32423           src/Container/SALOME_ContainerManager.hxx,
32424           src/Container/TestContainerManager.cxx,
32425           src/DSC/DSC_User/DSC_Exception.hxx,
32426           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
32427           src/DSC/DSC_User/Datastream/DatastreamException.hxx,
32428           src/DSC/DSC_User/Datastream/GenericPort.hxx,
32429           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
32430           src/DSC/DSC_User/Datastream/Makefile.am,
32431           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
32432           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
32433           src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
32434           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
32435           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
32436           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
32437           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
32438           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
32439           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
32440           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
32441           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
32442           src/LifeCycleCORBA/LifeCycleCORBA.py,
32443           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32444           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
32445           src/ResourcesManager/SALOME_LoadRateManager.cxx,
32446           src/ResourcesManager/SALOME_LoadRateManager.hxx,
32447           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32448           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32449
32450         merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_22may2007
32451
32452 2007-05-20 12:57  caremoli
32453
32454         * src/Container/: SALOME_ComponentPy.py,
32455           SALOME_ContainerManager.cxx:
32456
32457         CCAR: correct bug in getContainerRef (python component)
32458
32459 2007-05-20 12:49  caremoli
32460
32461         * salome_adm/unix/config_files/: config.guess, config.sub:
32462
32463         CCAR: no need to have  config.sub and config.guess in CVS
32464
32465 2007-05-17 09:49  nds
32466
32467         * bin/setenv.py, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
32468           src/DSC/DSC_Basic/ConnectionManager_i.hxx:
32469
32470         Modification for Win32 platform
32471
32472 2007-05-16 16:29  secher
32473
32474         * src/ResourcesManager/SALOME_LoadRateManager.cxx:
32475
32476         simplification of findnext
32477
32478 2007-05-15 14:26  secher
32479
32480         * bin/appliskel/runRemote.sh:
32481
32482         debug of pb with runRemote.sh on Saclay Mandriva 2006 machines
32483
32484 2007-05-15 12:31  secher
32485
32486         * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
32487           src/Container/SALOME_ContainerManager.cxx,
32488           src/Container/SALOME_ContainerManager.hxx,
32489           src/Container/TestContainerManager.cxx,
32490           src/LifeCycleCORBA/Makefile.am,
32491           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
32492           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32493           src/LifeCycleCORBA/TestContainerManager.cxx,
32494           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
32495           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
32496           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
32497           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
32498           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
32499           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32500           src/ResourcesManager/SALOME_ResourcesManager.hxx,
32501           src/SALOMELocalTrace/LocalTraceBufferPool.hxx:
32502
32503         add compo list in StartContainer() method, and remove compoPath and PrereqFile in resources catalog
32504
32505 2007-05-15 08:35  prascle
32506
32507         * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
32508           src/Container/SALOME_ContainerManager.cxx,
32509           src/Container/SALOME_ContainerManager.hxx,
32510           src/Container/TestContainerManager.cxx,
32511           src/LifeCycleCORBA/LifeCycleCORBA.py,
32512           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32513           src/ResourcesManager/SALOME_LoadRateManager.cxx,
32514           src/ResourcesManager/SALOME_LoadRateManager.hxx,
32515           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32516           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32517
32518         merge from tag BR_V326p4_20070428
32519
32520 2007-05-11 14:53  ribes
32521
32522         * idl/: DSC_Engines.xml, SALOME_Component.xml, SALOME_Ports.xml:
32523
32524         Bug in xml files
32525
32526 2007-05-09 14:48  secher
32527
32528         * idl/SALOME_ContainerManager.idl,
32529           src/Container/SALOME_ContainerManager.cxx,
32530           src/Container/SALOME_ContainerManager.hxx,
32531           src/Container/TestContainerManager.cxx,
32532           src/ResourcesManager/SALOME_LoadRateManager.cxx,
32533           src/ResourcesManager/SALOME_LoadRateManager.hxx,
32534           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32535           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32536
32537         improvement to take account the number of processors available for each machine for a cyclic policy
32538
32539 2007-05-07 12:52  vsr
32540
32541         * salome_adm/unix/config_files/check_qt.m4:
32542
32543         Porting to Qt4
32544
32545 2007-05-07 12:39  vsr
32546
32547         * salome_adm/unix/config_files/check_qt.m4:
32548
32549         Porting to Qt4
32550
32551 2007-05-07 09:33  vsr
32552
32553         * src/: ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
32554           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
32555           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
32556           ResourcesManager/SALOME_ResourcesManager.cxx:
32557
32558         Porting to Qt4
32559
32560 2007-05-04 14:50  vsr
32561
32562         * src/ResourcesManager/Makefile.am:
32563
32564         Update check Qt procedure for Qt 4.x
32565
32566 2007-05-04 14:47  vsr
32567
32568         * src/: Container/Makefile.am, LifeCycleCORBA/Makefile.am,
32569           ModuleCatalog/Makefile.am:
32570
32571         Update check Qt procedure for Qt 4.x
32572
32573 2007-05-04 14:32  vsr
32574
32575         * salome_adm/unix/config_files/check_qt.m4:
32576
32577         Update check Qt procedure for Qt 4.x
32578
32579 2007-05-02 15:51  nds
32580
32581         * src/DSC/DSC_Basic/: DSC_Basic.hxx, ConnectionManager_i.hxx,
32582           DSC_Callbacks.hxx, DSC_i.hxx, DSC_interface.cxx, Makefile.am,
32583           PortProperties_i.hxx:
32584
32585         Modification for Win32 platform
32586
32587 2007-05-02 06:50  nds
32588
32589         * src/: Container/SALOME_ContainerManager.cxx,
32590           NOTIFICATION_SWIG/NOTIFICATION.i:
32591
32592         Porting on Win32 system.
32593
32594 2007-04-27 09:57  secher
32595
32596         * src/Container/: Makefile.am, TestContainerManager.cxx:
32597
32598         add test of FIndOrLoadComponent in TestContainerManager
32599
32600 2007-04-26 11:35  ribes
32601
32602         * idl/: DSC_Engines.xml, SALOME_Component.xml, SALOME_Ports.xml:
32603
32604         headers
32605
32606 2007-04-26 11:32  ribes
32607
32608         * src/DSC/ParallelDSC/ParallelDSC_i.cxx:
32609
32610         Header
32611
32612 2007-04-26 11:26  secher
32613
32614         * idl/SALOME_ContainerManager.idl,
32615           src/Container/SALOME_ContainerManager.cxx,
32616           src/Container/SALOME_ContainerManager.hxx,
32617           src/LifeCycleCORBA/LifeCycleCORBA.py,
32618           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
32619
32620         debug FindBest
32621
32622 2007-04-26 08:14  srn
32623
32624         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
32625
32626         Fixed bug in method Impl_SaveAs, replaced char* by string, now map of drivers works correctly
32627
32628 2007-04-25 18:19  fayolle
32629
32630         * src/DSC/DSC_User/: DSC_Exception.hxx,
32631           Datastream/DatastreamException.hxx, Datastream/GenericPort.hxx,
32632           Datastream/GenericUsesPort.hxx, Datastream/Makefile.am,
32633           Datastream/lambda.hpp,
32634           Datastream/Calcium/CalciumCouplingPolicy.cxx,
32635           Datastream/Calcium/CalciumCouplingPolicy.hxx,
32636           Datastream/Calcium/CalciumException.hxx,
32637           Datastream/Calcium/CalciumInterface.hxx,
32638           Datastream/Calcium/CalciumTypes.hxx,
32639           Datastream/Calcium/Makefile.am,
32640           Datastream/Calcium/test_DataIdContainer.cxx:
32641
32642         Correction du BUG (non retour des lectures sequentiels) sur appel cp_fin
32643
32644 2007-04-24 18:02  fayolle
32645
32646         * src/DSC/DSC_User/Datastream/: Calcium/CalciumCouplingPolicy.cxx,
32647           Calcium/CalciumCouplingPolicy.hxx,
32648           Calcium/CalciumGenericUsesPort.hxx, Calcium/CalciumInterface.hxx,
32649           Calcium/CalciumTypes.hxx, Calcium/Makefile.am,
32650           Calcium/testInterpolation.cxx, CouplingPolicy.hxx,
32651           GenericPort.hxx:
32652
32653         Correction du BUG (non retour des lectures sequentiels) sur appel cp_fin
32654
32655 2007-04-20 13:29  abd
32656
32657         * salome_adm/unix/DEPRECATED/make_conclude.in:
32658
32659         Fix compilation errors of non-automake modules (SUPERV)
32660         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).
32661
32662 2007-04-20 13:22  ribes
32663
32664         * idl/DSC_Engines.idl, src/DSC/ParallelDSC/ParallelDSC_i.cxx,
32665           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
32666           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
32667           src/ResourcesManager/SALOME_ResourcesManager.cxx:
32668
32669         - ParallelDSC exemples ok
32670
32671 2007-04-20 09:19  abd
32672
32673         * src/DSC/DSC_User/: Makefile.am, Datastream/Makefile.am,
32674           Datastream/Calcium/CalciumCouplingPolicy.hxx,
32675           Datastream/Calcium/Makefile.am,
32676           Datastream/Calcium/testInterpolation.cxx:
32677
32678         Fix BOOST compilation problem on RedHat
32679
32680 2007-04-20 07:57  abd
32681
32682         * src/DSC/DSC_User/Datastream/: Makefile.am, lambda.hpp:
32683
32684         Fix compilation problem on RedHat
32685
32686 2007-04-19 15:24  abd
32687
32688         * salome_adm/unix/config_files/check_omniorb.m4:
32689
32690         Integrate -Wba flag on common level
32691
32692 2007-04-19 14:42  secher
32693
32694         * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
32695           src/Container/SALOME_ContainerManager.cxx,
32696           src/Container/SALOME_ContainerManager.hxx,
32697           src/Container/TestContainerManager.cxx,
32698           src/ResourcesManager/SALOME_LoadRateManager.cxx,
32699           src/ResourcesManager/SALOME_LoadRateManager.hxx,
32700           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32701           src/ResourcesManager/SALOME_ResourcesManager.hxx:
32702
32703         add cyclic policy in container launching
32704
32705 2007-04-19 13:40  jfa
32706
32707         * src/SALOMEDS/SALOME_DriverPy.py:
32708
32709         NPAL15643: EDF402: Bug when saving PYHELLO object.
32710
32711 2007-04-19 07:57  abd
32712
32713         * doc/salome/version.texi:
32714
32715         According with BUG NPAL15463
32716
32717 2007-04-18 17:41  abd
32718
32719         * COPYING, configure.ac, bin/addToKillList.py, bin/envSalome.py,
32720           bin/killSalome.py, bin/killSalomeWithPort.py,
32721           bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.py,
32722           bin/setenv.py, bin/virtual_salome.py, doc/salome/version.texi,
32723           idl/Makefile.am,
32724           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
32725           salome_adm/unix/config_files/config.guess,
32726           salome_adm/unix/config_files/config.sub,
32727           salome_adm/unix/config_files/ltmain.sh,
32728           src/Communication/SALOME_Matrix_i.cxx,
32729           src/Container/Component_i.cxx, src/Container/Makefile.am,
32730           src/Container/SALOME_ComponentPy.py,
32731           src/Container/SALOME_Container.py,
32732           src/Container/SALOME_ContainerPy.py,
32733           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.am,
32734           src/HDFPersist/test1.c, src/KERNEL_PY/salome_shared_modules.py,
32735           src/KERNEL_PY/salome_study.py, src/ModuleGenerator/IDLparser.py,
32736           src/NOTIFICATION_SWIG/Makefile.am,
32737           src/NamingService/SALOME_NamingService.cxx,
32738           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32739           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
32740           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
32741           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
32742           src/SALOMELocalTrace/utilities.h,
32743           src/TestContainer/TestContainer.cxx,
32744           src/Utils/SALOME_utilities.py:
32745
32746         Merging from V3_2_6pre4
32747
32748 2007-04-16 16:20  prascle
32749
32750         * Makefile.am, configure.ac, bin/runSalome.py,
32751           doc/salome/version.texi, idl/Calcium_Ports.idl,
32752           idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
32753           idl/Palm_Ports.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
32754           idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
32755           idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
32756           salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
32757           salome_adm/unix/config_files/check_paco++.m4,
32758           salome_adm/unix/config_files/config.guess,
32759           salome_adm/unix/config_files/config.sub,
32760           salome_adm/unix/config_files/ltmain.sh, src/Makefile.am,
32761           src/Container/Component_i.cxx, src/Container/Makefile.am,
32762           src/Container/SALOME_Container.hxx,
32763           src/Container/SALOME_ContainerManager.cxx,
32764           src/Container/SALOME_ContainerManager.hxx, src/DSC/Makefile.am,
32765           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
32766           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
32767           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
32768           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
32769           src/DSC/DSC_Basic/DSC_interface.hxx,
32770           src/DSC/DSC_Basic/Makefile.am,
32771           src/DSC/DSC_Basic/PortProperties_i.cxx,
32772           src/DSC/DSC_Basic/PortProperties_i.hxx,
32773           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
32774           src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
32775           src/DSC/DSC_User/Superv_Component_i.cxx,
32776           src/DSC/DSC_User/Superv_Component_i.hxx,
32777           src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
32778           src/DSC/DSC_User/provides_port.cxx,
32779           src/DSC/DSC_User/provides_port.hxx,
32780           src/DSC/DSC_User/test_DSC_Exception.cxx,
32781           src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
32782           src/DSC/DSC_User/Basic/Makefile.am,
32783           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
32784           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
32785           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
32786           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
32787           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
32788           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
32789           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
32790           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
32791           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
32792           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
32793           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
32794           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
32795           src/DSC/DSC_User/Datastream/DatastreamException.hxx,
32796           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
32797           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
32798           src/DSC/DSC_User/Datastream/GenericPort.hxx,
32799           src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
32800           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
32801           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
32802           src/DSC/DSC_User/Datastream/Makefile.am,
32803           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
32804           src/DSC/DSC_User/Datastream/fake.cc,
32805           src/DSC/DSC_User/Datastream/lambda.hpp,
32806           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
32807           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
32808           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
32809           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
32810           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
32811           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
32812           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
32813           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
32814           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
32815           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
32816           src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
32817           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
32818           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
32819           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
32820           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
32821           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
32822           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
32823           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
32824           src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
32825           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
32826           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
32827           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
32828           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
32829           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
32830           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
32831           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
32832           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
32833           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
32834           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
32835           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
32836           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
32837           src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
32838           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
32839           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
32840           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
32841           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
32842           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
32843           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
32844           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
32845           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
32846           src/DSC/DSC_User/Datastream/Calcium/version.h,
32847           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
32848           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
32849           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
32850           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
32851           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
32852           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
32853           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
32854           src/DSC/ParallelDSC/Makefile.am,
32855           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
32856           src/DSC/ParallelDSC/ParallelDSC_i.hxx,
32857           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32858           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
32859           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
32860           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
32861           src/NOTIFICATION_SWIG/NOTIFICATION.i,
32862           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
32863           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
32864           src/NamingService/SALOME_NamingService.cxx,
32865           src/Notification/SALOME_NOTIFICATION.hxx,
32866           src/ParallelContainer/Makefile.am,
32867           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
32868           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
32869           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
32870           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
32871           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
32872           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
32873           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
32874           src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
32875           src/ResourcesManager/SALOME_ResourcesManager.cxx,
32876           src/ResourcesManager/SALOME_ResourcesManager.hxx,
32877           src/SALOMEDS/SALOMEDS_Study_i.hxx,
32878           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
32879           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
32880           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
32881           src/TestContainer/SALOME_TestComponent_i.cxx:
32882
32883         merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_16apr07
32884
32885 2007-04-16 15:39  prascle
32886
32887         * idl/Makefile.am, salome_adm/unix/config_files/config.guess,
32888           salome_adm/unix/config_files/config.sub,
32889           src/Communication/SALOME_Comm_i.hxx,
32890           src/Communication/SALOME_Matrix_i.hxx,
32891           src/Container/SALOME_Component_i.hxx,
32892           src/Container/SALOME_ContainerManager.hxx,
32893           src/Container/SALOME_Container_i.hxx,
32894           src/Container/SALOME_FileRef_i.hxx,
32895           src/Container/SALOME_FileTransfer_i.hxx,
32896           src/Logger/SALOME_Logger_Server.hxx,
32897           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
32898           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
32899           src/NamingService/Test/NamingServiceTest.hxx,
32900           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
32901           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
32902           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
32903           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
32904           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
32905           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
32906           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
32907           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
32908           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
32909           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
32910           src/SALOMEDS/SALOMEDS_Study_i.hxx,
32911           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
32912           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
32913           src/SALOMEDS/Test/Makefile.am,
32914           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
32915           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
32916
32917         mergefrom BR_Dev_For_4_0 tag mergeto_BR_For40_DSC_16apr07
32918
32919 2007-04-16 12:07  abd
32920
32921         * src/SALOMEDS/Test/Makefile.am:
32922
32923         Fix dist option for all included .cxx files
32924
32925 2007-04-13 15:08  ribes
32926
32927         * idl/Makefile.am,
32928           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
32929           src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
32930
32931         -Bug fix for PaCO++ Dummy examples
32932
32933 2007-04-13 11:09  ribes
32934
32935         * idl/Makefile.am:
32936
32937         - Correcting a bug in the installation of PaCO++ idl headers
32938
32939 2007-04-13 09:48  ribes
32940
32941         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
32942           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
32943           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
32944
32945         - Adding Load_ParallelComponent to LifeCycleCORBA
32946
32947 2007-04-12 10:24  jfa
32948
32949         * bin/launchConfigureParser.py:
32950
32951         Fix bug 15559: --log-file, -f options of the runSalome.py doesn't work.
32952
32953 2007-04-12 09:54  jfa
32954
32955         * bin/launchConfigureParser.py:
32956
32957         Fix bug 15559: --log-file, -f options of the runSalome.py doesn't work.
32958
32959 2007-04-12 09:37  ribes
32960
32961         * src/DSC/ParallelDSC/ParallelDSC_i.hxx:
32962
32963         Adding commentary
32964
32965 2007-04-11 16:44  ribes
32966
32967         * configure.ac, src/DSC/Makefile.am,
32968           src/DSC/ParallelDSC/Makefile.am,
32969           src/DSC/ParallelDSC/ParallelDSC_i.cxx,
32970           src/DSC/ParallelDSC/ParallelDSC_i.hxx:
32971
32972         Adding ParallelDSC Basic layer implementation
32973
32974 2007-04-11 15:20  ribes
32975
32976         * configure.ac, idl/Makefile.am, src/Makefile.am,
32977           src/Container/Makefile.am, src/DSC/DSC_Basic/Makefile.am,
32978           src/ParallelContainer/Makefile.am,
32979           src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
32980           src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
32981           src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
32982           src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
32983           src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
32984           src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
32985           src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
32986           src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
32987
32988         - Adding ParallelContainer implementation
32989
32990 2007-04-11 06:47  abd
32991
32992         * src/SALOMEDS/: SALOMEDS_BasicAttribute_i.hxx,
32993           SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.hxx,
32994           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SAttribute_i.hxx,
32995           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SObject_i.hxx,
32996           SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.hxx,
32997           SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.hxx,
32998           SALOMEDS_UseCaseIterator_i.hxx:
32999
33000         Integrate missing files
33001
33002 2007-04-11 06:44  abd
33003
33004         * src/NamingService/Test/NamingServiceTest.hxx:
33005
33006         Integrate missing files
33007
33008 2007-04-11 06:39  abd
33009
33010         * src/: Communication/SALOME_Comm_i.hxx,
33011           Communication/SALOME_Matrix_i.hxx,
33012           Container/SALOME_Component_i.hxx,
33013           Container/SALOME_ContainerManager.hxx,
33014           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.hxx,
33015           Container/SALOME_FileTransfer_i.hxx,
33016           Logger/SALOME_Logger_Server.hxx,
33017           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
33018           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
33019
33020         Integrate missing files
33021
33022 2007-04-10 16:41  ribes
33023
33024         * src/Container/SALOME_ContainerManager.cxx:
33025
33026         Bug without PaCO++
33027
33028 2007-04-10 16:35  ribes
33029
33030         * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
33031           idl/SALOME_Component.idl, idl/SALOME_Component.xml,
33032           idl/SALOME_ContainerManager.idl, idl/SALOME_Ports.idl,
33033           idl/SALOME_Ports.xml, src/Container/Makefile.am,
33034           src/Container/SALOME_ContainerManager.cxx,
33035           src/Container/SALOME_ContainerManager.hxx,
33036           src/ResourcesManager/SALOME_ResourcesManager.cxx,
33037           src/ResourcesManager/SALOME_ResourcesManager.hxx:
33038
33039         - Adding PaCO++ files for idl generation
33040         - Adding methods to the resources manager and
33041         - the container manager for launching parallel container.
33042
33043 2007-04-09 15:48  jfa
33044
33045         * bin/: launchConfigureParser.py, runSalome.py:
33046
33047         PAL13554: runSalome options. Implement --print-port (for old '-nothing') and --nosave-config.
33048
33049 2007-04-06 14:56  srn
33050
33051         * src/SALOMEDS/SALOMEDS_StudyBuilder.cxx:
33052
33053         Fixed incorrect check in method DefineComponentInstance
33054
33055 2007-04-06 09:17  vsr
33056
33057         * COPYING:
33058
33059         Replace default COPYING file (generated by automake) by the GNU LGPL one (the copy of LICENSE file)
33060
33061 2007-04-05 18:49  caremoli
33062
33063         * idl/DSC_Engines.idl:
33064
33065         CCAR: corrections in comment
33066
33067 2007-04-05 18:48  caremoli
33068
33069         * src/: Container/Component_i.cxx, Container/SALOME_Container.hxx,
33070           ModuleCatalog/SALOME_ModuleCatalog.hxx,
33071           NamingService/SALOME_NamingService.cxx,
33072           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
33073           SALOMELocalTrace/SALOME_LocalTrace.hxx,
33074           TestContainer/SALOME_TestComponent_i.cxx:
33075
33076         CCAR: few minor corrections + compatibility with omniORB 4.0.6 (_pd_refCount
33077         instead of pd_refCount)
33078
33079 2007-04-05 18:42  caremoli
33080
33081         * src/DSC/: DSC_Basic/DSC_i.cxx, DSC_Basic/DSC_interface.cxx,
33082           DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
33083           DSC_User/uses_port.hxx, DSC_User/Datastream/AdjacentFunctor.hxx,
33084           DSC_User/Datastream/GenericPort.hxx,
33085           DSC_User/Datastream/Calcium/Calcium.c,
33086           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
33087           DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
33088           DSC_User/Datastream/Calcium/CalciumInterface.hxx:
33089
33090         CCAR: quelques corrections dans les ports Calcium
33091         plus pas mal d'impressions pour debug
33092
33093 2007-04-05 15:03  jfa
33094
33095         * bin/runSalome.py:
33096
33097         PAL13554: Redesign options of runSalome.
33098
33099 2007-04-05 12:38  jfa
33100
33101         * bin/: envSalome.py, launchConfigureParser.py, runSalome,
33102           runSalome.py:
33103
33104         PAL13554: Redesign options of runSalome.
33105
33106 2007-04-04 08:23  srn
33107
33108         * src/SALOMEDSImpl/: SALOMEDSImpl_StudyBuilder.cxx,
33109           SALOMEDSImpl_StudyManager.cxx:
33110
33111         Increased a size of buffer to store the attribute ID and the read from file study.
33112
33113 2007-04-03 10:27  ribes
33114
33115         * configure.ac, salome_adm/unix/config_files/check_paco++.m4:
33116
33117         Parallel conditionnal extension added.
33118         Correcting m4 for PaCO++
33119
33120 2007-03-30 16:12  ribes
33121
33122         * configure.ac, salome_adm/unix/config_files/check_paco++.m4,
33123           salome_adm/unix/config_files/config.guess,
33124           salome_adm/unix/config_files/config.sub:
33125
33126         Adding PaCO++ m4 test
33127         Adding parallel kernel extension test
33128
33129 2007-03-28 16:16  prascle
33130
33131         * configure.ac, bin/Makefile.am, bin/envSalome.py,
33132           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
33133           bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
33134           bin/runNS.py, bin/runSalome, bin/runSalome.py,
33135           bin/salomeConsole.py, bin/salome_session.py, bin/server.py,
33136           bin/setenv.py, bin/virtual_salome.py,
33137           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
33138           bin/appliskel/runSession, bin/appliskel/searchFreePort.sh,
33139           doc/INSTALL.txt, doc/KERNEL_Services.txt,
33140           doc/salome/version.texi, doc/salome/tui/Makefile.am,
33141           idl/Makefile.am, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
33142           idl/SALOME_Session.idl, salome_adm/unix/Doxyfile,
33143           salome_adm/unix/F77config.h.in, salome_adm/unix/sstream.in,
33144           salome_adm/unix/config_files/ac_cc_warnings.m4,
33145           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
33146           salome_adm/unix/config_files/check_Salome.m4,
33147           salome_adm/unix/config_files/check_boost.m4,
33148           salome_adm/unix/config_files/check_cppunit.m4,
33149           salome_adm/unix/config_files/check_java.m4,
33150           salome_adm/unix/config_files/check_qt.m4,
33151           salome_adm/unix/config_files/config.guess,
33152           salome_adm/unix/config_files/config.sub,
33153           salome_adm/unix/config_files/install-sh,
33154           salome_adm/unix/config_files/ltmain.sh,
33155           salome_adm/unix/config_files/missing,
33156           salome_adm/unix/config_files/production.m4,
33157           src/Basics/BasicsGenericDestructor.cxx,
33158           src/Basics/BasicsGenericDestructor.hxx,
33159           src/Communication/Makefile.am,
33160           src/Communication/MatrixClient.hxx,
33161           src/Communication/MultiCommException.hxx,
33162           src/Communication/ReceiverFactory.hxx,
33163           src/Communication/Receivers.cxx,
33164           src/Communication/SALOMEMultiComm.hxx,
33165           src/Communication/SALOME_Comm_i.cxx,
33166           src/Communication/SALOME_Comm_i.hxx,
33167           src/Communication/SALOME_Communication.hxx,
33168           src/Communication/SenderFactory.hxx,
33169           src/Container/Container_i.cxx,
33170           src/Container/Container_init_python.cxx,
33171           src/Container/Container_init_python.hxx,
33172           src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
33173           src/Container/SALOME_Container.cxx,
33174           src/Container/SALOME_Container.hxx,
33175           src/Container/SALOME_ContainerManager.cxx,
33176           src/Container/SALOME_ContainerManager.hxx,
33177           src/Container/SALOME_ContainerPy.py,
33178           src/Container/SALOME_Container_SignalsHandler.cxx,
33179           src/Container/SALOME_Container_i.hxx,
33180           src/Container/SALOME_FileRef_i.hxx,
33181           src/Container/SALOME_FileTransfer_i.hxx,
33182           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
33183           src/DSC/DSC_User/Datastream/GenericPort.hxx,
33184           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
33185           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
33186           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
33187           src/GenericObj/SALOME_GenericObj_i.cc,
33188           src/GenericObj/SALOME_GenericObj_i.hh,
33189           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFattrGetSize.c,
33190           src/HDFPersist/HDFdatasetGetOrder.c,
33191           src/HDFPersist/HDFobjectIdentify.c,
33192           src/HDFPersist/HDFobjectType.c, src/KERNEL_PY/import_hook.py,
33193           src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_shared_modules.py,
33194           src/KERNEL_PY/salome_test.py,
33195           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
33196           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
33197           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
33198           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
33199           src/Logger/SALOME_Logger_Server.hxx,
33200           src/Logger/SALOME_Logger_Server_main.cxx,
33201           src/ModuleCatalog/Makefile.am,
33202           src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
33203           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
33204           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
33205           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
33206           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
33207           src/ModuleCatalog/SALOME_TestModuleCatalog.py,
33208           src/NOTIFICATION_SWIG/Makefile.am,
33209           src/NOTIFICATION_SWIG/NOTIFICATION.i,
33210           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
33211           src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
33212           src/NamingService/NamingService_WaitForServerReadiness.cxx,
33213           src/NamingService/NamingService_WaitForServerReadiness.hxx,
33214           src/NamingService/SALOME_NamingService.cxx,
33215           src/NamingService/ServiceUnreachable.hxx,
33216           src/Notification/Makefile.am, src/Notification/NOTIFICATION.hxx,
33217           src/Notification/NOTIFICATION_Consumer.cxx,
33218           src/Notification/NOTIFICATION_Consumer.hxx,
33219           src/Notification/NOTIFICATION_Supplier.hxx,
33220           src/Notification/SALOME_NOTIFICATION.hxx,
33221           src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
33222           src/Registry/RegistryService.hxx,
33223           src/Registry/SALOME_Registry.hxx,
33224           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
33225           src/ResourcesManager/SALOME_ResourcesManager.cxx,
33226           src/ResourcesManager/SALOME_ResourcesManager.hxx,
33227           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
33228           src/SALOMEDS/SALOMEDS.hxx,
33229           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
33230           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
33231           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
33232           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
33233           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
33234           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
33235           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
33236           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
33237           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
33238           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
33239           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
33240           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
33241           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
33242           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
33243           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
33244           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
33245           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
33246           src/SALOMEDS/SALOMEDS_Attributes.hxx,
33247           src/SALOMEDS/SALOMEDS_Client.cxx,
33248           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
33249           src/SALOMEDS/SALOMEDS_Defines.hxx,
33250           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
33251           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
33252           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
33253           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
33254           src/SALOMEDS/SALOMEDS_SObject.cxx,
33255           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
33256           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
33257           src/SALOMEDS/SALOMEDS_Server.cxx,
33258           src/SALOMEDS/SALOMEDS_Study.cxx,
33259           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
33260           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
33261           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
33262           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
33263           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
33264           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
33265           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
33266           src/SALOMEDS/SALOMEDS_Study_i.cxx,
33267           src/SALOMEDS/SALOMEDS_Study_i.hxx,
33268           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
33269           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
33270           src/SALOMEDS/Test/Makefile.am,
33271           src/SALOMEDS/Test/SALOMEDSTest.cxx,
33272           src/SALOMEDS/Test/SALOMEDSTest.hxx,
33273           src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
33274           src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
33275           src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
33276           src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
33277           src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
33278           src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
33279           src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
33280           src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
33281           src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
33282           src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
33283           src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
33284           src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
33285           src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
33286           src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
33287           src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
33288           src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
33289           src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
33290           src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
33291           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
33292           src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
33293           src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
33294           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
33295           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
33296           src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
33297           src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
33298           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
33299           src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
33300           src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
33301           src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
33302           src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
33303           src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
33304           src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
33305           src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
33306           src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
33307           src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
33308           src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
33309           src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
33310           src/SALOMEDS/Test/TestSALOMEDS.cxx,
33311           src/SALOMEDSClient/Makefile.am,
33312           src/SALOMEDSClient/SALOMEDSClient.hxx,
33313           src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
33314           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
33315           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
33316           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
33317           src/SALOMEDSImpl/Makefile.am,
33318           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
33319           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
33320           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
33321           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
33322           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
33323           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
33324           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
33325           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
33326           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
33327           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
33328           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
33329           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
33330           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
33331           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
33332           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
33333           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
33334           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
33335           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
33336           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
33337           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
33338           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
33339           src/SALOMELocalTrace/BaseTraceCollector.cxx,
33340           src/SALOMELocalTrace/BaseTraceCollector.hxx,
33341           src/SALOMELocalTrace/FileTraceCollector.cxx,
33342           src/SALOMELocalTrace/FileTraceCollector.hxx,
33343           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
33344           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
33345           src/SALOMELocalTrace/LocalTraceCollector.cxx,
33346           src/SALOMELocalTrace/LocalTraceCollector.hxx,
33347           src/SALOMELocalTrace/Makefile.am,
33348           src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
33349           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
33350           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
33351           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
33352           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
33353           src/TestContainer/SALOME_TestComponent_i.cxx,
33354           src/TestContainer/SALOME_TestComponent_i.hxx,
33355           src/TestContainer/TestComponentPy.py, src/Utils/Makefile.am,
33356           src/Utils/OpUtil.hxx, src/Utils/SALOME_Utils.hxx,
33357           src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.hxx,
33358           src/Utils/Utils_CorbaException.hxx,
33359           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
33360           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
33361           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
33362           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.hxx,
33363           src/Utils/Utils_SALOME_Exception.hxx,
33364           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
33365           src/Utils/Utils_Timer.hxx:
33366
33367         merge from tag V4_0a2
33368
33369 2007-03-22 16:36  fayolle
33370
33371         * idl/Makefile.am, salome_adm/Makefile.am:
33372
33373         Gestion des tailles illimités des noms de fichiers (tar au cours du make dist)
33374
33375 2007-03-22 16:36  fayolle
33376
33377         * idl/: Calcium_Ports.idl, SALOME_Ports.idl:
33378
33379         Ajout des types CORBA/CALCIUM pour la gestion des propriétées
33380
33381 2007-03-22 15:25  fayolle
33382
33383         * configure.ac:
33384
33385         Gestion de le taille de nom fichiers illimité pour la commande tar (make dist)
33386         Modification du nom du maintainer de paquet.
33387
33388 2007-03-22 15:24  fayolle
33389
33390         * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.hxx,
33391           base_port.cxx, base_port.hxx, provides_port.cxx,
33392           provides_port.hxx, uses_port.cxx, uses_port.hxx,
33393           Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
33394           Datastream/GenericUsesPort.hxx, Datastream/Makefile.am,
33395           Datastream/Calcium/CalciumCouplingPolicy.cxx,
33396           Datastream/Calcium/CalciumCouplingPolicy.hxx,
33397           Datastream/Calcium/CalciumGenericProvidesPort.hxx,
33398           Datastream/Calcium/CalciumProvidesPort.cxx,
33399           Datastream/Calcium/CalciumProvidesPort.hxx,
33400           Datastream/Calcium/CalciumTypes.hxx,
33401           Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
33402           Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
33403           Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
33404           Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
33405           Datastream/Calcium/Makefile.am,
33406           Datastream/Calcium/calcium_destructors_port_provides.cxx,
33407           Datastream/Calcium/calcium_port_factory.hxx,
33408           Datastream/Calcium/calcium_port_provides.hxx,
33409           Datastream/Calcium/calcium_provides_port.cxx,
33410           Datastream/Calcium/calcium_provides_port.hxx,
33411           Datastream/Calcium/test_DataIdContainer.cxx:
33412
33413         Ajout des properties
33414         Création de la classe calcium_provides_port (pour appeler directement les
33415         méthodes de paramétrage des ports calcium)
33416
33417 2007-03-16 10:37  abd
33418
33419         * src/Notification/NOTIFICATION_Consumer.cxx:
33420
33421         OmniORB-4.1.0 porting
33422
33423 2007-03-16 10:33  abd
33424
33425         * src/: TestContainer/SALOME_TestComponent_i.cxx,
33426           GenericObj/SALOME_GenericObj_i.cc,
33427           GenericObj/SALOME_GenericObj_i.hh:
33428
33429         OmniORB-4.1.0 porting
33430
33431 2007-03-15 07:58  jfa
33432
33433         * bin/runSalome.py, bin/virtual_salome.py, idl/Makefile.am,
33434           src/Container/Makefile.am, src/HDFPersist/HDFdatasetWrite.c,
33435           src/HDFPersist/Makefile.am, src/HDFPersist/test1.c,
33436           src/KERNEL_PY/salome_shared_modules.py,
33437           src/NOTIFICATION_SWIG/Makefile.am:
33438
33439         A patch by Paul RASCLE for ASTER cluster (64 bits).
33440
33441 2007-03-09 10:35  caremoli
33442
33443         * salome_adm/unix/Makefile.am:
33444
33445         CCAR: add instal of SALOMEconfig.h in  include/salome
33446
33447 2007-03-09 10:33  caremoli
33448
33449         * bin/runSalome.py:
33450
33451         CCAR: add ConnectionManager launch
33452
33453 2007-03-07 15:58  ribes
33454
33455         * src/DSC/DSC_User/: DSC_Exception.hxx, test_DSC_Exception.cxx,
33456           Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
33457           Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
33458           Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
33459           Datastream/DatastreamException.hxx, Datastream/DisplayPair.hxx,
33460           Datastream/FindKeyPredicate.hxx, Datastream/GenericPort.hxx,
33461           Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
33462           Datastream/ProcessTimeIntervalTraits.hxx, Datastream/fake.cc,
33463           Datastream/testAdjacentFunctor.cxx,
33464           Datastream/testAdjacentPredicate.cxx,
33465           Datastream/Calcium/Calcium.c,
33466           Datastream/Calcium/CalciumCouplingPolicy.cxx,
33467           Datastream/Calcium/CalciumCouplingPolicy.hxx,
33468           Datastream/Calcium/CalciumGenericProvidesPort.hxx,
33469           Datastream/Calcium/CalciumGenericUsesPort.hxx,
33470           Datastream/Calcium/CalciumInterface.hxx,
33471           Datastream/Calcium/CalciumPortTraits.hxx,
33472           Datastream/Calcium/CalciumTypes.hxx,
33473           Datastream/Calcium/CalciumTypesManipulator.hxx,
33474           Datastream/Calcium/Copy2CorbaSpace.hxx,
33475           Datastream/Calcium/Copy2UserSpace.hxx,
33476           Datastream/Calcium/calcium.h, Datastream/Calcium/calcium.hf,
33477           Datastream/Calcium/calciumP.h,
33478           Datastream/Calcium/calcium_complex_port_uses.hxx,
33479           Datastream/Calcium/calcium_destructors_port_provides.cxx,
33480           Datastream/Calcium/calcium_destructors_port_uses.cxx,
33481           Datastream/Calcium/calcium_double_port_uses.hxx,
33482           Datastream/Calcium/calcium_integer_port_uses.hxx,
33483           Datastream/Calcium/calcium_logical_port_uses.hxx,
33484           Datastream/Calcium/calcium_port_factory.cxx,
33485           Datastream/Calcium/calcium_port_factory.hxx,
33486           Datastream/Calcium/calcium_port_provides.hxx,
33487           Datastream/Calcium/calcium_real_port_uses.hxx,
33488           Datastream/Calcium/calcium_repository_types.cxx,
33489           Datastream/Calcium/calcium_string_port_uses.hxx,
33490           Datastream/Calcium/calcium_uses_port.cxx,
33491           Datastream/Calcium/calcium_uses_port.hxx,
33492           Datastream/Calcium/testInterpolation.cxx,
33493           Datastream/Calcium/test_CalciumInterface.cxx,
33494           Datastream/Calcium/test_DataIdContainer.cxx,
33495           Datastream/Calcium/version.h,
33496           Datastream/Palm/PalmCouplingPolicy.hxx,
33497           Datastream/Palm/palm_data_seq_short_port_provides.hxx,
33498           Datastream/Palm/palm_data_short_port_provides.hxx,
33499           Datastream/Palm/palm_port_factory.cxx,
33500           Datastream/Palm/palm_port_factory.hxx,
33501           Datastream/Palm/test_DataIdContainer.cxx:
33502
33503         license informations.
33504
33505 2007-03-07 14:12  ribes
33506
33507         * src/DSC/DSC_User/Basic/: basic_port_factory.cxx,
33508           basic_port_factory.hxx, data_short_port_provides.cxx,
33509           data_short_port_provides.hxx, data_short_port_uses.cxx,
33510           data_short_port_uses.hxx:
33511
33512         Doxygen documentation, english comments.
33513
33514 2007-03-07 10:33  ribes
33515
33516         * src/DSC/DSC_User/: Superv_Component_i.cxx,
33517           Superv_Component_i.hxx, base_port.hxx, provides_port.cxx,
33518           provides_port.hxx, uses_port.cxx, uses_port.hxx:
33519
33520         Doxygen documentation and english comments.
33521
33522 2007-03-07 07:02  abd
33523
33524         * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
33525
33526         Fix error inclide after UTILS merging
33527
33528 2007-03-06 12:53  jfa
33529
33530         * src/Communication/SALOME_Matrix_i.cxx:
33531
33532         Integrated a correction from Nicolas Crouzet.
33533
33534 2007-03-06 11:40  ribes
33535
33536         * idl/: Calcium_Ports.idl, Palm_Ports.idl:
33537
33538         English comments.
33539
33540 2007-03-06 10:56  ribes
33541
33542         * src/DSC/: DSC_Basic/Makefile.am, DSC_User/Makefile.am,
33543           DSC_User/Basic/Makefile.am, DSC_User/Datastream/Makefile.am,
33544           DSC_User/Datastream/Calcium/Makefile.am,
33545           DSC_User/Datastream/Palm/Makefile.am:
33546
33547         LDFLAGS is now correct.
33548
33549 2007-03-06 10:28  ribes
33550
33551         * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.hxx:
33552
33553         lib DSCSuperv compiles
33554
33555 2007-03-05 17:05  ribes
33556
33557         * configure.ac, idl/Calcium_Ports.idl, idl/Makefile.am,
33558           idl/Palm_Ports.idl, idl/SALOME_Ports.idl,
33559           src/DSC/DSC_User/Makefile.am, src/DSC/DSC_User/Basic/Makefile.am,
33560           src/DSC/DSC_User/Datastream/Makefile.am,
33561           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
33562           src/DSC/DSC_User/Datastream/Palm/Makefile.am:
33563
33564         Calcium and Palm ok
33565
33566 2007-03-05 09:59  ribes
33567
33568         * configure.ac, src/DSC/Makefile.am,
33569           src/DSC/DSC_User/Basic/Makefile.am,
33570           src/DSC/DSC_User/Basic/basic_port_factory.cxx,
33571           src/DSC/DSC_User/Basic/basic_port_factory.hxx,
33572           src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
33573           src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
33574           src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
33575           src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
33576           src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
33577           src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
33578           src/DSC/DSC_User/Datastream/ConstTraits.hxx,
33579           src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
33580           src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
33581           src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
33582           src/DSC/DSC_User/Datastream/DatastreamException.hxx,
33583           src/DSC/DSC_User/Datastream/DisplayPair.hxx,
33584           src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
33585           src/DSC/DSC_User/Datastream/GenericPort.hxx,
33586           src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
33587           src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
33588           src/DSC/DSC_User/Datastream/Makefile.am,
33589           src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
33590           src/DSC/DSC_User/Datastream/fake.cc,
33591           src/DSC/DSC_User/Datastream/lambda.hpp,
33592           src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
33593           src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
33594           src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
33595           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
33596           src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
33597           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
33598           src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
33599           src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
33600           src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
33601           src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
33602           src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
33603           src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
33604           src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
33605           src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
33606           src/DSC/DSC_User/Datastream/Calcium/calcium.h,
33607           src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
33608           src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
33609           src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
33610           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_provides.cxx,
33611           src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
33612           src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
33613           src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
33614           src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
33615           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
33616           src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
33617           src/DSC/DSC_User/Datastream/Calcium/calcium_port_provides.hxx,
33618           src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
33619           src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
33620           src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
33621           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
33622           src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
33623           src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
33624           src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
33625           src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
33626           src/DSC/DSC_User/Datastream/Calcium/version.h,
33627           src/DSC/DSC_User/Datastream/Palm/Makefile.am,
33628           src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
33629           src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
33630           src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
33631           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
33632           src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
33633           src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx:
33634
33635         Adding Datastream and DSC_User, not compile for now
33636
33637 2007-03-02 14:55  vsr
33638
33639         * configure.ac:
33640
33641         Increment SALOME version number : 3.2.6
33642
33643 2007-03-01 14:53  ribes
33644
33645         * src/DSC/DSC_User/: DSC_Exception.hxx, Superv_Component_i.cxx,
33646           Superv_Component_i.hxx, base_port.hxx, provides_port.cxx,
33647           provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
33648           uses_port.hxx:
33649
33650         DSC_User base files added
33651
33652 2007-03-01 14:49  ribes
33653
33654         * src/DSC/DSC_User/Makefile.am:
33655
33656         Adding DSC_User directory
33657
33658 2007-03-01 11:00  ribes
33659
33660         * src/DSC/DSC_Basic/: DSC_interface.cxx, DSC_interface.hxx:
33661
33662         Doxygen documentation, english comment.
33663
33664 2007-03-01 10:20  ribes
33665
33666         * src/DSC/DSC_Basic/DSC_i.hxx:
33667
33668         Doxygen documentation, english comments
33669
33670 2007-02-28 16:30  ribes
33671
33672         * src/DSC/DSC_Basic/DSC_Callbacks.hxx:
33673
33674         Doxygen documentation and english comments.
33675
33676 2007-02-28 16:29  ribes
33677
33678         * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
33679
33680         Adding virtual to the destructor.
33681
33682 2007-02-28 16:06  ribes
33683
33684         * src/DSC/DSC_Basic/: PortProperties_i.cxx, PortProperties_i.hxx:
33685
33686         Doxygen documentation and english comments
33687
33688 2007-02-28 15:59  ribes
33689
33690         * src/DSC/DSC_Basic/: ConnectionManager_i.cxx,
33691           ConnectionManager_i.hxx, SALOME_ConnectionManagerServer.cxx:
33692
33693         Doxygen documentation, C++ warning and english comments.
33694
33695 2007-02-28 15:53  ribes
33696
33697         * idl/: DSC_Engines.idl, SALOME_Ports.idl:
33698
33699         Doxygen documentation ok
33700
33701 2007-02-28 15:14  ribes
33702
33703         * idl/DSC_Engines.idl:
33704
33705         Doxygen Documentation ok
33706
33707 2007-02-28 11:56  mnt
33708
33709         * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
33710
33711         Update for OCC6.2. Adding compilation key -D_OCC64.
33712
33713 2007-02-28 10:05  ribes
33714
33715         * idl/SALOMEDS.idl:
33716
33717         Doxygen documentation : image correction
33718
33719 2007-02-28 07:45  mkr
33720
33721         * bin/killSalome.py:
33722
33723         Fix for bug NPAL14859 : Some Process are not killed by killSalome.py.
33724
33725 2007-02-27 16:37  ribes
33726
33727         * idl/DSC_Engines.idl:
33728
33729         Doxugen Documentation
33730
33731 2007-02-27 11:44  ribes
33732
33733         * src/DSC/DSC_Basic/: ConnectionManager_i.cxx,
33734           ConnectionManager_i.hxx, DSC_Callbacks.hxx, DSC_i.cxx, DSC_i.hxx,
33735           DSC_interface.cxx, DSC_interface.hxx, PortProperties_i.cxx,
33736           PortProperties_i.hxx, SALOME_ConnectionManagerServer.cxx:
33737
33738         Headers OK
33739         CORBA includes OK
33740
33741 2007-02-27 11:05  ribes
33742
33743         * configure.ac, src/Makefile.am, src/DSC/Makefile.am,
33744           src/DSC/DSC_Basic/ConnectionManager_i.cxx,
33745           src/DSC/DSC_Basic/ConnectionManager_i.hxx,
33746           src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
33747           src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
33748           src/DSC/DSC_Basic/DSC_interface.hxx,
33749           src/DSC/DSC_Basic/Makefile.am,
33750           src/DSC/DSC_Basic/PortProperties_i.cxx,
33751           src/DSC/DSC_Basic/PortProperties_i.hxx,
33752           src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx:
33753
33754         Adding DSC's basic layer.
33755         Needs to fix CORBA headers declarations and
33756         fix debug infos.
33757
33758 2007-02-27 10:07  ribes
33759
33760         * Makefile.am:
33761
33762         Ajout de ACLOCAL_AMFLAGS afin de permettre une regeneration
33763         automatique des fichiers .in
33764
33765 2007-02-26 17:35  ribes
33766
33767         * idl/: Calcium_Ports.idl, DSC_Engines.idl, Makefile.am,
33768           SALOME_Ports.idl:
33769
33770         Ajout des fichiers idl pour l'extension DSC
33771         et le support des ports Calcium
33772
33773 2007-02-16 15:36  jfa
33774
33775         * salome_adm/unix/config_files/check_boost.m4:
33776
33777         Check presence of include file program_options.hpp, required for MEDSPLITTER compilation.
33778
33779 2007-02-15 12:48  abd
33780
33781         * bin/: nameserver.py, runNS.py:
33782
33783         Bug IPAL14904
33784         Using obvious change rigth access to catalot $(TMPDIR)/logs
33785
33786 2007-02-15 10:52  srn
33787
33788         * src/: SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
33789           SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
33790           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
33791           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
33792           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
33793           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
33794           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
33795           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
33796           SALOMEDS/SALOMEDS_AttributeUserID.cxx,
33797           SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
33798           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
33799           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
33800           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
33801           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
33802           SALOMEDS/Test/Makefile.am, SALOMEDS/Test/SALOMEDSTest.cxx,
33803           SALOMEDS/Test/SALOMEDSTest.hxx,
33804           SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
33805           SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
33806           SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
33807           SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
33808           SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
33809           SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
33810           SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
33811           SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
33812           SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
33813           SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
33814           SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
33815           SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
33816           SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
33817           SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
33818           SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
33819           SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
33820           SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
33821           SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
33822           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
33823           SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
33824           SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
33825           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
33826           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
33827           SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
33828           SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
33829           SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
33830           SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
33831           SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
33832           SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
33833           SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
33834           SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
33835           SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
33836           SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
33837           SALOMEDS/Test/SALOMEDSTest_Study.cxx,
33838           SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
33839           SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
33840           SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
33841           SALOMEDS/Test/TestSALOMEDS.cxx,
33842           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
33843           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
33844           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
33845           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
33846           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
33847           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
33848           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
33849           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
33850           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
33851
33852         Merge modifications for SALOMEDS Unittests
33853
33854 2007-02-15 10:40  mzn
33855
33856         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
33857
33858         Fix for bug NPAL14900(Pb of performances with FindObjectIOR).
33859
33860 2007-02-15 08:28  mpv
33861
33862         * configure.ac:
33863
33864         MPV: merge from branch BR_GUI_AutoTools
33865
33866 2007-02-15 08:20  mpv
33867
33868         * idl/Makefile.am:
33869
33870         MPV: merge from branch BR_GUI_AutoTools
33871
33872 2007-02-15 08:03  mpv
33873
33874         * configure.ac:
33875
33876         MPV: merge with branch BR_GUI_AutoTools
33877
33878 2007-02-14 11:52  abd
33879
33880         * bin/setenv.py:
33881
33882         Correct lib name for Mandriva64
33883
33884 2007-02-13 16:16  abd
33885
33886         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
33887
33888         Support old formats for separator of MODULECatalog.xml file paths
33889
33890 2007-02-09 16:22  abd
33891
33892         * configure.ac:
33893
33894         Update Salome version
33895
33896 2007-02-08 12:42  jfa
33897
33898         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
33899
33900         NPAL14828: Impossible to load a study created in batch mode. Improve getting a directory path in LoadWith method.
33901
33902 2007-02-08 11:02  prascle
33903
33904         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
33905
33906         Bug 14833
33907
33908 2007-02-08 10:32  prascle
33909
33910         * src/NamingService/SALOME_NamingService.cxx:
33911
33912         Bug 14829
33913
33914 2007-02-08 09:23  prascle
33915
33916         * src/: Container/SALOME_ContainerPy.py, KERNEL_PY/salome_study.py:
33917
33918         Bug 14829
33919
33920 2007-02-07 10:07  abd
33921
33922         * src/Utils/Test/Makefile.am:
33923
33924         Merging with WPDev
33925
33926 2007-02-07 10:03  abd
33927
33928         * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
33929           SALOMELocalTrace/BaseTraceCollector.hxx,
33930           SALOMELocalTrace/FileTraceCollector.cxx,
33931           SALOMELocalTrace/FileTraceCollector.hxx,
33932           SALOMELocalTrace/LocalTraceBufferPool.cxx,
33933           SALOMELocalTrace/LocalTraceBufferPool.hxx,
33934           SALOMELocalTrace/LocalTraceCollector.cxx,
33935           SALOMELocalTrace/LocalTraceCollector.hxx,
33936           SALOMELocalTrace/Makefile.am,
33937           SALOMELocalTrace/SALOME_LocalTrace.hxx,
33938           SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
33939           SALOMETraceCollector/Makefile.am,
33940           SALOMETraceCollector/SALOMETraceCollector.cxx,
33941           SALOMETraceCollector/SALOMETraceCollector.hxx,
33942           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
33943           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
33944           SALOMETraceCollector/Test/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
33945           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
33946           TestContainer/SALOME_TestComponentPy.py,
33947           TestContainer/SALOME_TestComponent_i.cxx,
33948           TestContainer/SALOME_TestComponent_i.hxx,
33949           TestContainer/TestComponentPy.py,
33950           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
33951           TestMPIContainer/Makefile.am,
33952           TestMPIContainer/TestMPIComponentEngine.cxx,
33953           TestMPIContainer/TestMPIComponentEngine.hxx,
33954           TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
33955           Utils/Makefile.am, Utils/OpUtil.hxx, Utils/SALOME_Utils.hxx,
33956           Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
33957           Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
33958           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
33959           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
33960           Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.cxx,
33961           Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
33962           Utils/Utils_Mutex.cxx, Utils/Utils_Mutex.hxx,
33963           Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
33964           Utils/Utils_SALOME_Exception.cxx,
33965           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
33966           Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.hxx,
33967           Utils/duplicate.cxx:
33968
33969         Merging with WPDev
33970
33971 2007-02-07 10:00  abd
33972
33973         * src/: SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
33974           SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
33975           SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
33976           SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
33977           SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
33978           SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
33979           SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
33980           SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
33981           SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
33982           SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
33983           SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
33984           SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
33985           SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
33986           SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cxx,
33987           SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
33988           SALOMEDS/SALOMEDS_AttReal_i.cxx,
33989           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
33990           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
33991           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
33992           SALOMEDS/SALOMEDS_AttributeString.cxx,
33993           SALOMEDS/SALOMEDS_AttributeString.hxx,
33994           SALOMEDS/SALOMEDS_AttributeString_i.cxx,
33995           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
33996           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
33997           SALOMEDS/SALOMEDS_Attributes.hxx,
33998           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
33999           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
34000           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
34001           SALOMEDS/SALOMEDS_Client.cxx,
34002           SALOMEDS/SALOMEDS_ClientAttributes.hxx,
34003           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
34004           SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
34005           SALOMEDS/SALOMEDS_Defines.hxx,
34006           SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
34007           SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
34008           SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
34009           SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
34010           SALOMEDS/SALOMEDS_FileType.cxx,
34011           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
34012           SALOMEDS/SALOMEDS_IORAttribute.cxx,
34013           SALOMEDS/SALOMEDS_IORAttribute.ixx,
34014           SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
34015           SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
34016           SALOMEDS/SALOMEDS_OCAFApplication.cxx,
34017           SALOMEDS/SALOMEDS_OCAFApplication.ixx,
34018           SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
34019           SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
34020           SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
34021           SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
34022           SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
34023           SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
34024           SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
34025           SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
34026           SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
34027           SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
34028           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
34029           SALOMEDS/SALOMEDS_SObject_i.hxx,
34030           SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
34031           SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
34032           SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
34033           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
34034           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
34035           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
34036           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
34037           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
34038           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
34039           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
34040           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
34041           SALOMEDS/SALOMEDS_StudyManager.cxx,
34042           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
34043           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
34044           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
34045           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
34046           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
34047           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
34048           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
34049           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
34050           SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
34051           SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
34052           SALOMEDS/SALOMEDS_TargetAttribute.ixx,
34053           SALOMEDS/SALOMEDS_TargetAttribute.jxx,
34054           SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
34055           SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
34056           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
34057           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
34058           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
34059           SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
34060           SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
34061           SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
34062           SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
34063           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
34064           SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
34065           SALOMEDS/SALOMEDS_AttributeString_i.hxx,
34066           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
34067           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
34068           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
34069           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
34070           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
34071           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
34072           SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
34073           SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
34074           SALOMEDS/SALOMEDS_Driver_i.hxx,
34075           SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
34076           SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
34077           SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
34078           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
34079           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
34080           SALOMEDS/SALOMEDS_IORAttribute.hxx,
34081           SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
34082           SALOMEDS/SALOMEDS_OCAFApplication.hxx,
34083           SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
34084           SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
34085           SALOMEDS/SALOMEDS_SAttribute_i.hxx,
34086           SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
34087           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
34088           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
34089           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
34090           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
34091           SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
34092           SALOMEDS/SALOMEDS_TargetAttribute.hxx,
34093           SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
34094           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
34095           SALOMEDS/Test/Makefile.am, SALOMEDSClient/Makefile.am,
34096           SALOMEDSClient/SALOMEDSClient.hxx,
34097           SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
34098           SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
34099           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
34100           SALOMEDSImpl/Makefile.am,
34101           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
34102           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
34103           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
34104           SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
34105           SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
34106           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
34107           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
34108           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
34109           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
34110           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
34111           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
34112           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
34113           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
34114           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
34115           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
34116           SALOMEDSImpl/Test/Makefile.am:
34117
34118         Merging with WPDev
34119
34120 2007-02-07 09:57  abd
34121
34122         * src/: ModuleGenerator/Makefile.am, NOTIFICATION_SWIG/Makefile.am,
34123           NOTIFICATION_SWIG/NOTIFICATION.i,
34124           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
34125           NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
34126           NamingService/Makefile.am,
34127           NamingService/NamingService_WaitForServerReadiness.cxx,
34128           NamingService/NamingService_WaitForServerReadiness.hxx,
34129           NamingService/SALOME_NamingService.cxx,
34130           NamingService/ServiceUnreachable.hxx,
34131           NamingService/Test/Makefile.am, Notification/Makefile.am,
34132           Notification/NOTIFICATION.hxx,
34133           Notification/NOTIFICATION_Consumer.hxx,
34134           Notification/NOTIFICATION_Supplier.hxx,
34135           Notification/SALOME_NOTIFICATION.hxx, Registry/Makefile.am,
34136           Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
34137           Registry/SALOME_Registry.hxx, ResourcesManager/Makefile.am,
34138           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
34139           ResourcesManager/SALOME_ResourcesManager.cxx,
34140           ResourcesManager/SALOME_ResourcesManager.hxx:
34141
34142         Merging with WPDev
34143
34144 2007-02-07 09:54  abd
34145
34146         * src/: GenericObj/Makefile.am, HDFPersist/HDFascii.cc,
34147           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFdatasetGetOrder.c,
34148           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
34149           HDFPersist/Makefile.am, KERNEL_PY/import_hook.py,
34150           KERNEL_PY/salome.py, KERNEL_PY/salome_shared_modules.py,
34151           KERNEL_PY/salome_test.py, LifeCycleCORBA/Makefile.am,
34152           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
34153           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
34154           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
34155           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
34156           LifeCycleCORBA/Test/Makefile.am,
34157           LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
34158           LifeCycleCORBA_SWIG/Test/Makefile.am,
34159           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
34160           Logger/Makefile.am, Logger/SALOME_Logger_Server.hxx,
34161           Logger/SALOME_Logger_Server_main.cxx, Logger/Test/Makefile.am,
34162           MPIContainer/Makefile.am, ModuleCatalog/SALOME_ModuleCatalog.hxx,
34163           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
34164           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
34165           ModuleCatalog/Makefile.am,
34166           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
34167           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
34168           ModuleCatalog/SALOME_TestModuleCatalog.py:
34169
34170         Merging with WPDev
34171
34172 2007-02-07 09:51  abd
34173
34174         * src/: Makefile.am, Basics/BasicsGenericDestructor.cxx,
34175           Basics/BasicsGenericDestructor.hxx, Basics/Makefile.am,
34176           Basics/Test/Makefile.am, Communication/Makefile.am,
34177           Communication/MatrixClient.hxx,
34178           Communication/MultiCommException.hxx,
34179           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
34180           Communication/SALOMEMultiComm.hxx,
34181           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
34182           Communication/SALOME_Communication.hxx,
34183           Communication/SenderFactory.hxx, Communication_SWIG/Makefile.am,
34184           Container/Container_i.cxx, Container/Container_init_python.cxx,
34185           Container/Container_init_python.hxx, Container/Makefile.am,
34186           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
34187           Container/SALOME_Container.hxx,
34188           Container/SALOME_ContainerManager.cxx,
34189           Container/SALOME_ContainerManager.hxx,
34190           Container/SALOME_ContainerPy.py,
34191           Container/SALOME_Container_SignalsHandler.cxx,
34192           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
34193           Container/SALOME_FileRef_i.hxx,
34194           Container/SALOME_FileTransfer_i.cxx,
34195           Container/SALOME_FileTransfer_i.hxx:
34196
34197         Merging with WPDev
34198
34199 2007-02-07 09:47  abd
34200
34201         * salome_adm/unix/: Doxyfile, F77config.h.in, sstream.in,
34202           config_files/ac_cxx_depend_flag.m4,
34203           config_files/check_cppunit.m4, config_files/check_qt.m4,
34204           config_files/production.m4,
34205           config_files/DEPRECATED/ac_cxx_bool.m4,
34206           config_files/DEPRECATED/ac_cxx_mutable.m4,
34207           config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
34208           config_files/DEPRECATED/ac_cxx_typename.m4,
34209           config_files/DEPRECATED/check_pthreads.m4,
34210           config_files/DEPRECATED/mkinstalldirs,
34211           config_files/ac_cc_warnings.m4, config_files/check_Salome.m4,
34212           config_files/check_java.m4, config_files/config.guess,
34213           config_files/config.sub, config_files/install-sh,
34214           config_files/ltmain.sh, config_files/missing:
34215
34216         Merging with WPDev
34217
34218 2007-02-07 09:43  abd
34219
34220         * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
34221           idl/SALOME_Session.idl, resources/Makefile.am,
34222           salome_adm/unix/DEPRECATED/make_omniorb.in:
34223
34224         Merging with WPDev
34225
34226 2007-02-07 09:39  abd
34227
34228         * doc/salome/: Makefile.am, version.texi, tui/Makefile.am:
34229
34230         Merging with WPDev
34231
34232 2007-02-07 09:35  abd
34233
34234         * DEPRECATED/Makefile.in, bin/Makefile.am, bin/envSalome.py,
34235           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
34236           bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
34237           bin/runNS.py, bin/runSalome, bin/runSalome.py,
34238           bin/salomeConsole.py, bin/salome_session.py, bin/server.py,
34239           bin/setenv.py, bin/virtual_salome.py,
34240           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
34241           bin/appliskel/runSession, bin/appliskel/searchFreePort.sh,
34242           Makefile.am, configure.ac, doc/INSTALL.txt,
34243           doc/KERNEL_Services.txt, doc/Makefile.am, doc/rst.css:
34244
34245         Merging with WPDev
34246
34247 2007-02-06 09:50  prascle
34248
34249         * src/Container/Component_i.cxx:
34250
34251         PR: Bug 14147
34252
34253 2007-02-01 11:32  jfa
34254
34255         * configure.ac:
34256
34257         Change version to 3.2.5
34258
34259 2007-02-01 11:10  ribes
34260
34261         * src/DSC/Makefile.am:
34262
34263         Test de commit
34264         Ajout d'un repertoire pour les ports DSC
34265
34266 2007-01-31 14:36  rahuel
34267
34268         * src/Container/SALOME_ComponentPy.py:
34269
34270         self._serviceName = '' was missing in the contructor. See Bug PAL9128
34271
34272 2007-01-22 14:51  prascle
34273
34274         * bin/addToKillList.py, bin/killSalomeWithPort.py,
34275           bin/launchConfigureParser.py, bin/runSalome.py,
34276           src/Container/Component_i.cxx, src/Container/SALOME_Container.py,
34277           src/Container/SALOME_ContainerPy.py,
34278           src/NamingService/SALOME_NamingService.cxx,
34279           src/SALOMELocalTrace/utilities.h, src/Utils/SALOME_utilities.py:
34280
34281         PR: bug 14147 remove traces
34282
34283 2007-01-16 10:19  mpv
34284
34285         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
34286
34287         MPV: fix for PAL11765: if variable SALOME_trace not found do not raise exception.
34288
34289 2007-01-12 08:54  mpv
34290
34291         * src/TestContainer/TestContainer.cxx:
34292
34293         MPV: fix for IPAL11765. In case of Naming service initialization problems output just "Exception" instead of "Unknown exception"
34294
34295 2007-01-12 07:41  mpv
34296
34297         * bin/runSalome.py:
34298
34299         MPV: fix for IPAL11765. FactoryServer must be launched as standalone in terminal mode to.
34300
34301 2007-01-10 08:45  vsr
34302
34303         * src/ModuleGenerator/IDLparser.py:
34304
34305         Fix NPAL14451 : Implementation type of components not handled in IDLparser.py
34306
34307 2006-12-19 08:14  srn
34308
34309         * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger.cxx,
34310           SALOMEDS_AttributeTableOfReal.cxx,
34311           SALOMEDS_AttributeTableOfString.cxx:
34312
34313         Added CORBA::string_dup for the input string arrays
34314
34315 2006-12-18 09:56  srn
34316
34317         * src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx:
34318
34319         Updated test cases
34320
34321 2006-12-18 09:03  srn
34322
34323         * src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx:
34324
34325         Updated test cases
34326
34327 2006-12-18 09:02  srn
34328
34329         * src/SALOMEDS/Test/TestSALOMEDS.cxx:
34330
34331         Added a possibility to wait Supervisor component being launched, one needs to define environment variable SALOMEDS_UNITTESTSS_WAIT_SUPERVISOR
34332
34333 2006-12-18 09:00  srn
34334
34335         * src/SALOMEDS/: SALOMEDS_AttributeTarget.cxx,
34336           SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTreeNode.cxx,
34337           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_GenericAttribute.cxx,
34338           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_Study.cxx,
34339           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.cxx,
34340           SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
34341
34342         Added checks for null input objects
34343
34344 2006-12-14 15:52  srn
34345
34346         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
34347
34348         Fixed method NewComponent, added check for empty DataType. Now it's impossible to create component with empty DataType
34349
34350 2006-12-14 15:50  srn
34351
34352         * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
34353           SALOMEDS_Study_i.cxx:
34354
34355         Fixed bugs with not empty parameters
34356
34357 2006-12-14 15:50  srn
34358
34359         * src/SALOMEDS/Test/: SALOMEDSTest_SObject.cxx,
34360           SALOMEDSTest_Study.cxx, SALOMEDSTest_StudyBuilder.cxx,
34361           SALOMEDSTest_StudyManager.cxx:
34362
34363         Added additional tests for incorrect input parameters
34364
34365 2006-12-14 12:40  srn
34366
34367         * src/SALOMEDS/Test/: SALOMEDSTest_AttributeComment.cxx,
34368           SALOMEDSTest_AttributeExternalFileDef.cxx,
34369           SALOMEDSTest_AttributeFileType.cxx,
34370           SALOMEDSTest_AttributeGraphic.cxx,
34371           SALOMEDSTest_AttributeName.cxx,
34372           SALOMEDSTest_AttributeParameter.cxx,
34373           SALOMEDSTest_AttributePersistentRef.cxx,
34374           SALOMEDSTest_AttributePixMap.cxx,
34375           SALOMEDSTest_AttributePythonObject.cxx,
34376           SALOMEDSTest_AttributeSequenceOfInteger.cxx,
34377           SALOMEDSTest_AttributeSequenceOfReal.cxx,
34378           SALOMEDSTest_AttributeTableOfInteger.cxx,
34379           SALOMEDSTest_AttributeTarget.cxx,
34380           SALOMEDSTest_AttributeTreeNode.cxx,
34381           SALOMEDSTest_AttributeUserID.cxx, SALOMEDSTest_UseCase.cxx,
34382           TestSALOMEDS.cxx:
34383
34384         Added additional tests for incorrect input parameters
34385
34386 2006-12-14 12:39  srn
34387
34388         * src/SALOMEDS/: SALOMEDS_AttributeTreeNode.cxx,
34389           SALOMEDS_AttributeUserID.cxx:
34390
34391         Added additional checks of inputed GUID string, now if the string is not valid GUID the exception "invalid_argument" is raised
34392
34393 2006-12-14 12:37  srn
34394
34395         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTreeNode.cxx,
34396           SALOMEDSImpl_StudyBuilder.cxx, SALOMEDSImpl_UseCaseBuilder.cxx:
34397
34398         Added additional checks of input parameters
34399
34400 2006-12-14 11:42  srn
34401
34402         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
34403           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
34404           SALOMEDSImpl_StudyManager.cxx:
34405
34406         In StudyManager removed Alliances code. In Sequences added check of Index correctness
34407
34408 2006-12-14 09:16  srn
34409
34410         * src/SALOMEDS/SALOMEDS_AttributeTarget.cxx:
34411
34412         Fixed bug in method Get (standalone case)
34413
34414 2006-12-14 08:52  srn
34415
34416         * src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx:
34417
34418         Fixed bug in method Value of embedded case
34419
34420 2006-12-13 14:31  srn
34421
34422         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
34423
34424         Fixed bug in method FindOrCreateAttribute, now AttributeTreeNode is correctly processed
34425
34426 2006-12-13 12:52  srn
34427
34428         * src/SALOMEDS/Test/TestSALOMEDS.cxx:
34429
34430         Improved the process of launching the Salome
34431
34432 2006-12-13 12:51  srn
34433
34434         * src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx:
34435
34436         Fixed method InsertBefore
34437
34438 2006-12-13 12:51  srn
34439
34440         * src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx:
34441
34442         Fixed bug in method GetUseCaseIterator, now there is no crash when an Iterator is requested for Null SObject
34443
34444 2006-12-13 12:49  srn
34445
34446         * src/SALOMEDS/: SALOMEDS_Study_i.hxx, SALOMEDS_Study_i.cxx:
34447
34448         Modified method EnableUseCaseAutoFilling
34449
34450 2006-12-13 12:48  srn
34451
34452         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx:
34453
34454         Added method GetImpl that returns an implementaion of StudyBuilder
34455
34456 2006-12-13 12:47  srn
34457
34458         * src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx:
34459
34460         Fixed bug in method SetTreeID
34461
34462 2006-12-13 12:46  srn
34463
34464         * src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx:
34465
34466         Added inheritance from GenericAttribute
34467
34468 2006-12-13 12:46  srn
34469
34470         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeParameter.cxx,
34471           SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Study.hxx:
34472
34473         Fixed bugs in the corresponding classes that caused error in Unittests
34474
34475 2006-12-12 13:46  srn
34476
34477         * src/SALOMEDS/Test/: SALOMEDSTest_AttributeTreeNode.cxx,
34478           SALOMEDSTest_Study.cxx:
34479
34480         Added methods that weren't tested
34481
34482 2006-12-11 13:33  srn
34483
34484         * src/SALOMEDS/Test/TestSALOMEDS.cxx:
34485
34486         Fixed bug with retrieval of SALOMEDS_UNITTESTS_PORT variable
34487
34488 2006-12-07 12:52  mkr
34489
34490         * src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx:
34491
34492         Fix for PAL14049.
34493
34494 2006-12-06 08:15  srn
34495
34496         * src/SALOMEDS/Test/: TestSALOMEDS.cxx,
34497           SALOMEDSTest_AttributeTreeNode.cxx, SALOMEDSTest_UseCase.cxx:
34498
34499         Added support of environment variables and preprocessor definitions
34500
34501 2006-12-05 16:17  srn
34502
34503         * src/SALOMEDS/Test/: Makefile.am, SALOMEDSTest.cxx,
34504           SALOMEDSTest.hxx, SALOMEDSTest_AttributeComment.cxx,
34505           SALOMEDSTest_AttributeDrawable.cxx,
34506           SALOMEDSTest_AttributeExpandable.cxx,
34507           SALOMEDSTest_AttributeExternalFileDef.cxx,
34508           SALOMEDSTest_AttributeFileType.cxx,
34509           SALOMEDSTest_AttributeFlags.cxx,
34510           SALOMEDSTest_AttributeGraphic.cxx, SALOMEDSTest_AttributeIOR.cxx,
34511           SALOMEDSTest_AttributeInteger.cxx,
34512           SALOMEDSTest_AttributeLocalID.cxx,
34513           SALOMEDSTest_AttributeName.cxx, SALOMEDSTest_AttributeOpened.cxx,
34514           SALOMEDSTest_AttributeParameter.cxx,
34515           SALOMEDSTest_AttributePersistentRef.cxx,
34516           SALOMEDSTest_AttributePixMap.cxx,
34517           SALOMEDSTest_AttributePythonObject.cxx,
34518           SALOMEDSTest_AttributeReal.cxx,
34519           SALOMEDSTest_AttributeSelectable.cxx,
34520           SALOMEDSTest_AttributeSequenceOfInteger.cxx,
34521           SALOMEDSTest_AttributeSequenceOfReal.cxx,
34522           SALOMEDSTest_AttributeStudyProperties.cxx,
34523           SALOMEDSTest_AttributeTableOfInteger.cxx,
34524           SALOMEDSTest_AttributeTableOfReal.cxx,
34525           SALOMEDSTest_AttributeTableOfString.cxx,
34526           SALOMEDSTest_AttributeTarget.cxx,
34527           SALOMEDSTest_AttributeTextColor.cxx,
34528           SALOMEDSTest_AttributeTextHighlightColor.cxx,
34529           SALOMEDSTest_AttributeTreeNode.cxx,
34530           SALOMEDSTest_AttributeUserID.cxx, SALOMEDSTest_ChildIterator.cxx,
34531           SALOMEDSTest_SComponent.cxx, SALOMEDSTest_SComponentIterator.cxx,
34532           SALOMEDSTest_SObject.cxx, SALOMEDSTest_Study.cxx,
34533           SALOMEDSTest_StudyBuilder.cxx, SALOMEDSTest_StudyManager.cxx,
34534           SALOMEDSTest_UseCase.cxx, TestSALOMEDS.cxx:
34535
34536         Added use cases for SALOMEDS package
34537
34538 2006-12-05 15:39  srn
34539
34540         * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger.cxx,
34541           SALOMEDS_AttributeTableOfReal.cxx,
34542           SALOMEDS_AttributeTableOfString.cxx:
34543
34544         Fix of bugs found when running the Unit Test for SALOMEDS
34545
34546 2006-12-05 11:06  mkr
34547
34548         * src/: SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
34549           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx:
34550
34551         Fix for PAL14049 : EDF PAL 335 SMESH : SIGSEV when we save the file after a transformation.
34552
34553 2006-12-04 10:04  jfa
34554
34555         * configure.ac:
34556
34557         Change version to 3.2.4
34558
34559 2006-12-01 10:30  prascle
34560
34561         * src/KERNEL_PY/import_hook.py:
34562
34563         PAL 14087
34564
34565 2006-11-30 15:19  prascle
34566
34567         * bin/: runSalome.py, appliskel/runAppli:
34568
34569         PAL 14078
34570
34571 2006-11-30 15:18  prascle
34572
34573         * bin/virtual_salome.py:
34574
34575         Python 2.4 compatibility
34576
34577 2006-11-28 15:59  vsr
34578
34579         * idl/SALOME_Session.idl:
34580
34581         Improvement PAL14013: send a message to the GUI from the container to emit signal
34582
34583 2006-11-27 13:15  mkr
34584
34585         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
34586           SALOME_ResourcesManager.cxx:
34587
34588         The modfications sent by Jean are for the use of Salome on a batch
34589         cluster like CCRT.
34590
34591 2006-11-27 12:53  jfa
34592
34593         * bin/: killSalomeWithPort.py, runSalome.py, salome_session.py,
34594           appliskel/killCurrentPort, appliskel/runSession,
34595           appliskel/searchFreePort.sh:
34596
34597         Modifications for CCRT cluster: use .omniORB_last.cfg instead of .omniORB_{host}_last.cfg
34598
34599 2006-11-27 11:21  mkr
34600
34601         * src/: SALOMELocalTrace/LocalTraceBufferPool.cxx,
34602           ResourcesManager/SALOME_ResourcesManager.cxx:
34603
34604         Fix for PAL13967 : Distributed supervision graphs - Problem with "SALOME_trace".
34605
34606 2006-11-24 13:27  mzn
34607
34608         * src/Container/Container_i.cxx:
34609
34610         Fix for bug PAL13948(Impossible to load VISU component in batch mode).
34611
34612 2006-11-22 09:25  vsr
34613
34614         * bin/: launchConfigureParser.py, runSalome.py:
34615
34616         Improvement PAL13959: improve --splash and --gui options: appy patch from Erwan ADAM
34617
34618 2006-11-21 15:33  vsr
34619
34620         * bin/runSalome.py:
34621
34622         Integrated correction from Erwan ADAM concerning the previous integration
34623
34624 2006-11-21 14:39  jfa
34625
34626         * salome_adm/unix/config_files/check_qt.m4:
34627
34628         On CCRT the installation of qt have only a 'lib' directory.
34629
34630 2006-11-21 13:08  vsr
34631
34632         * bin/runSalome.py:
34633
34634         Integrate fix from Jean RAHUEL: enable killall module importing with the --terminal parameter
34635
34636 2006-11-21 12:10  vsr
34637
34638         * bin/: runSalome, runSalome.py:
34639
34640         Improvement PAL13956: improve runSalome script: apply patch from Erwan ADAM
34641
34642 2006-11-16 11:39  prascle
34643
34644         * bin/: config_appli.xml, virtual_salome.py:
34645
34646         PR: allow an easy first application install with minimal modifications
34647
34648 2006-11-08 06:56  mpv
34649
34650         * idl/Makefile.am, configure.ac:
34651
34652         Autotools compilation
34653
34654 2006-11-01 16:33  abd
34655
34656         * bin/nameserver.py:
34657
34658         Using "USER" env variable on LINUX and "Username" variable on WIN32
34659
34660 2006-11-01 15:26  abd
34661
34662         * bin/launchConfigureParser.py:
34663
34664         Update script for processing command line options on WIN platform
34665
34666 2006-10-31 15:40  akk
34667
34668         * salome_adm/unix/config_files/check_cppunit.m4:
34669
34670         Patch, provided in PAL13669.
34671
34672 2006-10-30 15:52  jfa
34673
34674         * configure.ac:
34675
34676         Change version to 3.2.3
34677
34678 2006-10-30 10:16  abd
34679
34680         * bin/envSalome.py:
34681
34682         Update script for testing on new environment
34683
34684 2006-10-27 15:36  abd
34685
34686         * bin/orbmodule.py:
34687
34688         Remove reference to runNS.py
34689
34690 2006-10-26 10:40  ouv
34691
34692         * bin/server.py:
34693
34694         "import os" is added
34695
34696 2006-10-25 10:42  abd
34697
34698         * bin/: Makefile.am, nameserver.py:
34699
34700         Crossplatfrom execution of salome
34701
34702 2006-10-24 19:12  prascle
34703
34704         * src/: Container/SALOME_Container.cxx,
34705           ResourcesManager/SALOME_ResourcesManager.cxx:
34706
34707         PR: From Antony GEAY : non regression (2.2.x) on launch remote container without SALOME APPLICATION configuration
34708
34709 2006-10-24 14:07  prascle
34710
34711         * src/Container/SALOME_ContainerManager.cxx:
34712
34713         PR: Shutdown containers correction: avoid CORBA calls to a container during its shutdown (see KERNEL Unit Tests)
34714
34715 2006-10-24 10:17  abd
34716
34717         * bin/runSalome.py,
34718           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
34719
34720         Fix ModuleCatalog arguments on Linux
34721
34722 2006-10-23 14:56  abd
34723
34724         * bin/launchSalome.py:
34725
34726         Crossplatform launching of Salome
34727
34728 2006-10-23 09:46  prascle
34729
34730         * src/KERNEL_PY/import_hook.py:
34731
34732         PR: bug PAL 13665 and EDF 311
34733
34734 2006-10-23 09:00  abd
34735
34736         * bin/: orbmodule.py, runNS.py, runSalome.py:
34737
34738         Runnig without omniNames console
34739
34740 2006-10-19 15:18  abd
34741
34742         * bin/orbmodule.py:
34743
34744         First stable version after merging with V3_2_2
34745
34746 2006-10-19 08:34  abd
34747
34748         * configure.ac, DEPRECATED/configure.in.base, bin/Makefile.am,
34749           bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
34750           bin/config_appli.xml, bin/launchConfigureParser.py,
34751           bin/orbmodule.py, bin/runNS.py, bin/runSalome.py, bin/setenv.py,
34752           bin/virtual_salome.py, bin/appliskel/README,
34753           bin/appliskel/SalomeApp.xml, doc/INSTALL.txt,
34754           doc/README.cluster-CCRT, doc/SALOME_Application.txt,
34755           doc/salome/version.texi, doc/salome/tui/Makefile.am,
34756           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
34757           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
34758           idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
34759           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
34760           salome_adm/unix/make_common_starter.am,
34761           salome_adm/unix/DEPRECATED/make_commence.in,
34762           salome_adm/unix/DEPRECATED/make_conclude.in,
34763           salome_adm/unix/DEPRECATED/make_module.in,
34764           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
34765           salome_adm/unix/config_files/check_cas.m4,
34766           salome_adm/unix/config_files/config.guess,
34767           salome_adm/unix/config_files/config.sub,
34768           salome_adm/unix/config_files/enable_pthreads.m4,
34769           salome_adm/unix/config_files/ltmain.sh,
34770           salome_adm/unix/config_files/production.m4,
34771           src/Basics/BasicsGenericDestructor.cxx,
34772           src/Basics/BasicsGenericDestructor.hxx,
34773           src/Communication/Makefile.in, src/Container/Component_i.cxx,
34774           src/Container/Container_i.cxx,
34775           src/Container/Container_init_python.cxx,
34776           src/Container/Container_init_python.hxx,
34777           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
34778           src/Container/SALOME_Component_i.hxx,
34779           src/Container/SALOME_Container.cxx,
34780           src/Container/SALOME_Container.py,
34781           src/Container/SALOME_ContainerPy.py,
34782           src/Container/SALOME_Container_i.hxx, src/KERNEL_PY/Help.py,
34783           src/KERNEL_PY/PyInterp.py, src/KERNEL_PY/batchmode_salome.py,
34784           src/KERNEL_PY/import_hook.py,
34785           src/KERNEL_PY/kernel_shared_modules.py,
34786           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
34787           src/KERNEL_PY/salome_ComponentGUI.py,
34788           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
34789           src/KERNEL_PY/salome_shared_modules.py,
34790           src/KERNEL_PY/salome_study.py,
34791           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
34792           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
34793           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
34794           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
34795           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
34796           src/LifeCycleCORBA_SWIG/Makefile.am,
34797           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
34798           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
34799           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
34800           src/ModuleCatalog/PathPrefix.hxx,
34801           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
34802           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
34803           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
34804           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
34805           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
34806           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
34807           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
34808           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
34809           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
34810           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
34811           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
34812           src/ModuleCatalog/TestModuleCatalog.py,
34813           src/NamingService/NamingService_WaitForServerReadiness.cxx,
34814           src/NamingService/NamingService_WaitForServerReadiness.hxx,
34815           src/NamingService/SALOME_NamingService.cxx,
34816           src/NamingService/SALOME_NamingService.hxx,
34817           src/NamingService/SALOME_NamingService.i,
34818           src/NamingService/SALOME_NamingServicePy.py,
34819           src/NamingService/ServiceUnreachable.hxx,
34820           src/Notification/Makefile.in, src/Registry/Makefile.in,
34821           src/Registry/RegistryConnexion.cxx,
34822           src/Registry/RegistryConnexion.hxx,
34823           src/Registry/RegistryService.cxx,
34824           src/Registry/RegistryService.hxx,
34825           src/Registry/SALOME_Registry_Server.cxx,
34826           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
34827           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
34828           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
34829           src/ResourcesManager/SALOME_ResourcesManager.cxx,
34830           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
34831           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
34832           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
34833           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
34834           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
34835           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
34836           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
34837           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
34838           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
34839           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
34840           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
34841           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
34842           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
34843           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
34844           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
34845           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
34846           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
34847           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
34848           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
34849           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
34850           src/SALOMEDS/SALOMEDS.hxx, src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
34851           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
34852           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
34853           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
34854           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
34855           src/SALOMEDS/SALOMEDS_Attributes.hxx,
34856           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
34857           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
34858           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
34859           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
34860           src/SALOMEDS/SALOMEDS_Client.cxx,
34861           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
34862           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
34863           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
34864           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
34865           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
34866           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
34867           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
34868           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
34869           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
34870           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
34871           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
34872           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
34873           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
34874           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
34875           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
34876           src/SALOMEDS/SALOMEDS_FileType.cxx,
34877           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
34878           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
34879           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
34880           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
34881           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
34882           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
34883           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
34884           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
34885           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
34886           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
34887           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
34888           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
34889           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
34890           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
34891           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
34892           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
34893           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
34894           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
34895           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
34896           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
34897           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
34898           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
34899           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
34900           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
34901           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
34902           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
34903           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
34904           src/SALOMEDS/SALOMEDS_SObject.cxx,
34905           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
34906           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
34907           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
34908           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
34909           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
34910           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
34911           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
34912           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
34913           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
34914           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
34915           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
34916           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
34917           src/SALOMEDS/SALOMEDS_Server.cxx,
34918           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
34919           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
34920           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
34921           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
34922           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
34923           src/SALOMEDS/SALOMEDS_Study_i.cxx,
34924           src/SALOMEDS/SALOMEDS_Study_i.hxx,
34925           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
34926           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
34927           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
34928           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
34929           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
34930           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
34931           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
34932           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
34933           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
34934           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
34935           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
34936           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
34937           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
34938           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
34939           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
34940           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
34941           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
34942           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
34943           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
34944           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
34945           src/SALOMEDS/Test/SALOMEDSTest.cxx,
34946           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
34947           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
34948           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
34949           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
34950           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
34951           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
34952           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
34953           src/SALOMEDSImpl/testDS.cxx,
34954           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
34955           src/SALOMELocalTrace/BaseTraceCollector.cxx,
34956           src/SALOMELocalTrace/BaseTraceCollector.hxx,
34957           src/SALOMELocalTrace/FileTraceCollector.cxx,
34958           src/SALOMELocalTrace/FileTraceCollector.hxx,
34959           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
34960           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
34961           src/SALOMELocalTrace/LocalTraceCollector.cxx,
34962           src/SALOMELocalTrace/LocalTraceCollector.hxx,
34963           src/SALOMELocalTrace/utilities.h,
34964           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
34965           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
34966           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
34967           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
34968           src/TestContainer/SALOME_TestComponentPy.py,
34969           src/TestContainer/SALOME_TestComponent_i.cxx,
34970           src/TestContainer/SALOME_TestComponent_i.hxx,
34971           src/TestContainer/TestComponentPy.py,
34972           src/TestContainer/TestContainer.cxx,
34973           src/TestContainer/TestLogger.cxx,
34974           src/TestMPIContainer/TestMPIComponentEngine.cxx,
34975           src/TestMPIContainer/TestMPIComponentEngine.hxx,
34976           src/TestMPIContainer/TestMPIContainer.cxx,
34977           src/Utils/SALOME_Utils.hxx, src/Utils/SalomeString.hxx,
34978           src/Utils/Utils_CommException.cxx,
34979           src/Utils/Utils_CommException.hxx,
34980           src/Utils/Utils_CorbaException.hxx,
34981           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
34982           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
34983           src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
34984           src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
34985           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
34986           src/Utils/Utils_ORB_INIT.hxx,
34987           src/Utils/Utils_SALOME_Exception.cxx,
34988           src/Utils/Utils_SALOME_Exception.hxx,
34989           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
34990           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx:
34991
34992         First stable version after merging with V3_2_2
34993
34994 2006-10-18 14:36  vsr
34995
34996         * bin/: launchConfigureParser.py, runSalome.py:
34997
34998         Imp PAL13554 : -file option of runSalome
34999
35000 2006-10-17 13:31  mkr
35001
35002         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
35003
35004         Fix for bug IPAL13339 : Mandriva64 porting: "Fatal error" after trying to save study.
35005
35006 2006-10-17 12:49  srn
35007
35008         * src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx:
35009
35010         IMP PAL13614: Added a new attribute AttributeString
35011
35012 2006-10-17 12:29  srn
35013
35014         * idl/SALOMEDS_Attributes.idl, src/SALOMEDSClient/Makefile.am,
35015           src/SALOMEDSClient/SALOMEDSClient.hxx,
35016           src/SALOMEDSImpl/Makefile.am,
35017           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
35018           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
35019           src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
35020           src/SALOMEDS/Makefile.am,
35021           src/SALOMEDS/SALOMEDS_AttributeString.cxx,
35022           src/SALOMEDS/SALOMEDS_AttributeString.hxx,
35023           src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
35024           src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
35025           src/SALOMEDS/SALOMEDS_Attributes.hxx,
35026           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx:
35027
35028         IMP PAL13614: Added a new attrubute AttributeString
35029
35030 2006-10-16 15:21  mpv
35031
35032         * src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
35033           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
35034           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
35035           src/SALOMEDS/SALOMEDS_SObject.cxx,
35036           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
35037           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
35038           src/SALOMEDS/SALOMEDS_Study.cxx,
35039           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
35040           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
35041           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
35042           src/SALOMEDS/SALOMEDS_Study_i.cxx,
35043           src/SALOMEDS/SALOMEDS_Study_i.hxx, idl/SALOMEDS.idl:
35044
35045         MPV: fix for bug 13534
35046
35047         Result of GetLocalImp methods is pointer. For 64-bits platforms it is 8 bytes. Use CORBA::LongLong to send 8 bytes.
35048
35049 2006-10-16 13:23  mzn
35050
35051         * src/Container/Container_i.cxx:
35052
35053         Fix for PAL13517("Clean shutdown of Salome containers").
35054
35055 2006-10-12 16:24  epa
35056
35057         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeExpandable.cxx,
35058           SALOMEDSImpl_AttributeSelectable.cxx,
35059           SALOMEDSImpl_AttributeTextColor.cxx,
35060           SALOMEDSImpl_AttributeTextHighlightColor.cxx:
35061
35062         Incorrect default values of AttributeExpandable, AttributeSelectable, AttributeTextColor and AttributeTextHighlightColor corrected to be the same as in SALOME 2.2.x
35063
35064 2006-10-12 14:30  mpv
35065
35066         * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
35067
35068         MPV: Add '-m64' flag for all C and C++ compilation flags for 64bit platforms
35069
35070 2006-10-03 10:01  vsr
35071
35072         * bin/launchConfigureParser.py:
35073
35074         Fix PAL13553 : bug in launchConfigureParser.py when GUI_ROOT_DIR is bad defined
35075
35076 2006-09-28 10:35  mnt
35077
35078         * src/SALOMEDS/: SALOMEDS_SObject.cxx, SALOMEDS_Study.cxx:
35079
35080         CORBA::long as C++ long type collision on 64-bit Linux corrected
35081
35082 2006-09-28 10:15  jfa
35083
35084         * bin/launchConfigureParser.py:
35085
35086         PAL10867: noexcepthandler option in GUI not working. Disable signals catching.
35087
35088 2006-09-27 13:21  mnt
35089
35090         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
35091
35092         Correction for problem: Command "dump stydy" doesn't work at first time at load Post-Pro module.
35093
35094 2006-09-26 10:12  mnt
35095
35096         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
35097           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
35098           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
35099           SALOMEDS/SALOMEDS_Study_i.hxx,
35100           SALOMEDSClient/SALOMEDSClient_definitions.hxx:
35101
35102         Update for gcc4.1.1
35103
35104 2006-09-22 12:33  vsr
35105
35106         * doc/salome/tui/Makefile.am:
35107
35108         Fix bug with 'make dist' step - an absolute directory is created inside the dist archive because of mistake in EXTRA_DIST variable
35109
35110 2006-09-21 14:41  mkr
35111
35112         * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
35113
35114         Debug for correct Med files import in MED and VISU components on
35115         64-bit Mandriva platform (bugs IPAL13255, IPAL13300, IPAL13304, IPAL13309).
35116
35117 2006-09-18 10:16  ouv
35118
35119         * src/: KERNEL_PY/salome_test.py,
35120           ResourcesManager/SALOME_ResourcesManager.cxx:
35121
35122         Bug SWP13450 : Using of 'cp' command is incorrect
35123
35124 2006-09-11 09:18  prascle
35125
35126         * bin/appli_gen.py:
35127
35128         PR: Set MMGT_REENTRANT variable to 1, to allow thread safe behaviour of Cascade (see bug 12651)
35129
35130 2006-09-11 07:38  abd
35131
35132         * bin/launchSalome.py:
35133
35134         This file realise functionality instead runSalome (linux file)
35135
35136 2006-09-08 10:16  ouv
35137
35138         * src/TOOLSDS/SALOMEDS_Tool.cxx:
35139
35140         SWP13333 : Copy/Paste med-objects in Post-Pro is incorrect
35141
35142 2006-09-07 09:06  mkr
35143
35144         * doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
35145           idl/SALOMEDS_Attributes.idl:
35146
35147         Fix for bug PAL13386 : EDF PAL KERNEL DOC 276 Wrong links in documentation.
35148
35149 2006-09-05 17:28  prascle
35150
35151         * bin/appli_gen.py:
35152
35153         PR: ROOT_DIR to virtual link = APPLI directory
35154
35155 2006-09-05 13:34  vsr
35156
35157         * bin/virtual_salome.py:
35158
35159         PAL13340 : fix launching problem on 64-bit platforms (more correct check)
35160
35161 2006-09-05 08:13  vsr
35162
35163         * bin/runSalome.py, src/KERNEL_PY/salome_shared_modules.py:
35164
35165         PAL13340 : fix launching problem on 64-bit platforms (more correct check)
35166
35167 2006-09-04 13:19  jfa
35168
35169         * configure.ac, bin/launchConfigureParser.py,
35170           salome_adm/unix/config_files/check_cas.m4:
35171
35172         Join modifications from branch BR_For_OCT_611: migration to OCCT6.1.1 with new exception handling and improved threads support.
35173
35174 2006-09-04 10:39  prascle
35175
35176         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
35177
35178         PR: more explicit error trace on parsing ResourcesCatalog.xml
35179
35180 2006-09-04 08:00  prascle
35181
35182         * doc/SALOME_Application.txt, bin/Makefile.am, bin/appli_clean.sh,
35183           bin/appli_gen.py, bin/config_appli.xml, bin/virtual_salome.py:
35184
35185         PR: SALOME application (virtual links) installation based on an xml descriptor.
35186
35187 2006-09-04 07:45  prascle
35188
35189         * src/LifeCycleCORBA_SWIG/: libSALOME_LifeCycleCORBA.i,
35190           Test/LifeCycleCORBA_SWIGTest.py:
35191
35192         PR: EDF 260: transfer of the exception message to python
35193
35194 2006-09-04 07:29  prascle
35195
35196         * src/KERNEL_PY/omnipatch.py:
35197
35198         PR: Bug EDF 252, import problem from ASTER module
35199
35200 2006-09-04 07:27  prascle
35201
35202         * src/Container/: Component_i.cxx, Container_i.cxx,
35203           SALOME_Component_i.hxx:
35204
35205         PR: from Sergey Mozokhin, Supervisor problem, crash after killing a dataflow execution.
35206
35207 2006-09-01 11:03  prascle
35208
35209         * doc/salome/version.texi:
35210
35211         PR: PAL 12956
35212
35213 2006-09-01 10:34  vsr
35214
35215         * bin/runSalome.py, src/KERNEL_PY/salome_shared_modules.py:
35216
35217         PAL13340 : fix launching problem on 64-bit platforms
35218
35219 2006-08-31 17:15  mnt
35220
35221         * salome_adm/unix/config_files/check_cas.m4:
35222
35223         Update for new OCC6.1.1
35224
35225 2006-08-31 09:17  jfa
35226
35227         * bin/: launchConfigureParser.py, runSalome.py:
35228
35229         Join modifications from branch BR_JR_from_V3_2_0b1: --terminal option for CCRT.
35230
35231 2006-08-30 14:20  jfa
35232
35233         * src/ModuleCatalog/: Makefile.am, SALOME_TestModuleCatalog.py,
35234           TestModuleCatalog.py:
35235
35236         Join modifications from branch BR_JR_from_V3_2_0b1: rename a .py file because of clash with a module name.
35237
35238 2006-08-30 11:21  jfa
35239
35240         * doc/README.cluster-CCRT:
35241
35242         Join modifications from branch BR_JR_from_V3_2_0b1: --terminal option for CCRT.
35243
35244 2006-08-30 08:20  vsr
35245
35246         * src/KERNEL_PY/salome_shared_modules.py:
35247
35248         Correct problem with shared modules on 64-bit platforms ("lib64" directory should be used for modules searching instead of "lib")
35249
35250 2006-08-29 12:48  jfa
35251
35252         * bin/launchConfigureParser.py:
35253
35254         PAL10867: noexcepthandler option in GUI not working. Automatically set environment variable DISABLE_FPE if noexcepthandler option is used (or -r command line key).
35255
35256 2006-08-29 10:44  jfa
35257
35258         * configure.ac, DEPRECATED/configure.in.base:
35259
35260         Change version name to 3.2.2pre
35261
35262 2006-08-28 15:54  jfa
35263
35264         * salome_adm/unix/config_files/check_cas.m4:
35265
35266         Consider OCCT version
35267
35268 2006-08-25 12:20  akk
35269
35270         * src/KERNEL_PY/batchmode_salome.py:
35271
35272         Integration of improvements,proposed in PAL12404
35273
35274 2006-08-25 09:27  vsr
35275
35276         * doc/salome/version.texi:
35277
35278         Increment version number: 3.2.2
35279
35280 2006-08-25 09:08  vsr
35281
35282         * configure.ac:
35283
35284         Increment version number: 3.2.2
35285
35286 2006-08-24 14:16  srn
35287
35288         * src/SALOMEDS/SALOMEDS_Study.cxx:
35289
35290         BugID: IPAL13249, added initalization of CORBA implementation in method DumpStudy
35291
35292 2006-08-24 10:59  ouv
35293
35294         * src/KERNEL_PY/salome_test.py:
35295
35296         SUPERV testing removed from win32 version
35297
35298 2006-08-23 16:12  srn
35299
35300         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
35301           src/SALOMEDS/SALOMEDS_Study.hxx,
35302           src/SALOMEDS/SALOMEDS_Study_i.cxx,
35303           src/SALOMEDS/SALOMEDS_Study_i.hxx,
35304           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
35305           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
35306           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
35307           src/SALOMEDSImpl/testDS.cxx:
35308
35309         BugID: PAL10141, added a possibility to lock the study by several processes.
35310
35311 2006-08-23 10:45  mnt
35312
35313         * salome_adm/unix/config_files/check_cas.m4:
35314
35315         SMH: Version ported on new OCT6.1.1
35316
35317 2006-08-23 09:48  srn
35318
35319         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
35320           src/SALOMEDS/SALOMEDS_Study.hxx,
35321           src/SALOMEDS/SALOMEDS_Study_i.cxx,
35322           src/SALOMEDS/SALOMEDS_Study_i.hxx,
35323           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
35324           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
35325           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
35326           src/SALOMEDSImpl/testDS.cxx:
35327
35328         BugID PAL10141, Added 4 new methods for Study: SetStudyLock, IsStudyLocked,
35329         GetLockerID and UnLockStudy.
35330
35331 2006-08-21 09:35  ouv
35332
35333         * src/KERNEL_PY/salome_test.py:
35334
35335         SWP12925
35336
35337 2006-08-21 08:54  abd
35338
35339         * src/KERNEL_PY/salome_test.py:
35340
35341         Update lib name
35342
35343 2006-08-18 10:32  skt
35344
35345         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
35346
35347         SWP12966 - MutiFile is not saved correctly
35348         Fix in GetDirFromPath() - correct directory path generation
35349
35350 2006-08-17 15:13  abd
35351
35352         * bin/runSalome.py:
35353
35354         Save logger.log file in $HOME directory
35355
35356 2006-08-15 17:10  vsr
35357
35358         * bin/: runSalome.py, virtual_salome.py:
35359
35360         Fix an environment problem on 64-bit platforms (set_env() method should use "lib64" library path instead of "lib")
35361
35362 2006-08-15 15:20  abd
35363
35364         * src/SALOMELocalTrace/: BaseTraceCollector.hxx,
35365           FileTraceCollector.hxx, LocalTraceBufferPool.hxx,
35366           LocalTraceCollector.hxx, Makefile.am, Makefile.in:
35367
35368         fix linux compilation
35369
35370 2006-08-15 15:17  abd
35371
35372         * src/SALOMETraceCollector/: SALOMETraceCollector.cxx,
35373           SALOMETraceCollector.hxx:
35374
35375         Export symbols
35376
35377 2006-08-08 15:06  abd
35378
35379         * src/Utils/SALOME_Utils.hxx:
35380
35381         Fix filename in comment
35382
35383 2006-08-08 13:12  jfa
35384
35385         * src/: SALOMEDS/SALOMEDS_Study_i.cxx,
35386           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
35387
35388         PAL13000: Crash with 'import CALCULATOR_TEST_STUDY_WITHOUTIHM'
35389
35390 2006-08-04 09:53  abd
35391
35392         * bin/launchConfigureParser.py:
35393
35394         remove log message
35395
35396 2006-08-04 09:19  abd
35397
35398         * bin/launchConfigureParser.py:
35399
35400         Using of correct name of user resource file for WIN32 platrform ( *.xml instead *rc )
35401
35402 2006-08-02 15:00  skt
35403
35404         * src/TOOLSDS/SALOMEDS_Tool.cxx:
35405
35406         Bug  SWP12123 fixed. Removing temporary directories
35407
35408 2006-08-02 10:34  asv
35409
35410         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
35411
35412         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.
35413
35414 2006-08-02 10:33  jfa
35415
35416         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
35417           SALOMEDSImpl_StudyBuilder.cxx:
35418
35419         PAL13002: EDF231 Salome ask if we want to save the study even if it was just done.
35420
35421 2006-08-01 16:00  asv
35422
35423         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
35424
35425         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.
35426
35427 2006-08-01 08:15  srn
35428
35429         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
35430
35431         Fix of bug IPAL13069, fixed method LoadWith, changed the name of removed temporay file
35432
35433 2006-07-31 08:33  abd
35434
35435         * bin/nameserver.py:
35436
35437         BUG SWP12852
35438
35439         Using <"> in commad line for start omni names for case if $HOME includes some spaces
35440
35441 2006-07-28 15:03  jfa
35442
35443         * doc/salome/version.texi, src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
35444           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
35445
35446         Roll back invalid integration.
35447
35448 2006-07-28 14:53  jfa
35449
35450         * doc/salome/version.texi, src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
35451           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
35452
35453         PAL12781: EDF: different result between Working Plane and LCS. Implement and use general mechanism to obtain position from shape.
35454
35455 2006-07-28 12:15  asv
35456
35457         * src/Utils/Utils_Identity.cxx:
35458
35459         Fix for bug SWP12997: implemented method get_adip() on Win32 and improved method get_uname().
35460
35461 2006-07-26 08:42  asv
35462
35463         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
35464           SALOMEDSImpl_StudyBuilder.cxx:
35465
35466         Fix to bug SWP12996: "Modified" flag was incorrectly set on Study object in 2 cases:
35467         1) GetAttributeParameters() method always called FindOrCreateAttribute(), even when attribute was found and no creation was done.  FindOrCreateAttribute always sets "Modified" flag on internal document.
35468         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.
35469
35470 2006-07-18 14:11  ouv
35471
35472         * bin/server.py:
35473
35474         Minor changes.
35475
35476 2006-07-14 12:43  ptv
35477
35478         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
35479
35480         memory leaks and other errors and warnings noticed with help of Rational Purify on Windows
35481
35482 2006-07-14 07:39  ptv
35483
35484         * src/: NamingService/NamingService_WaitForServerReadiness.cxx,
35485           NamingService/SALOME_NamingService.cxx,
35486           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
35487           SALOMEDS/SALOMEDS_Study.cxx,
35488           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
35489           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
35490           SALOMEDS/SALOMEDS_Study_i.cxx, Utils/Utils_Identity.cxx:
35491
35492         remove memory leaks uninitalised memory read,  etc...
35493         noticed with Rational Purify on Windows
35494
35495 2006-07-13 15:10  jfa
35496
35497         * doc/salome/: version.texi:
35498
35499         PAL12956: Error at make install in doc/salome.
35500
35501 2006-07-13 14:41  jfa
35502
35503         * doc/salome/version.texi:
35504
35505         PAL12956: Error at make install in doc/salome.
35506
35507 2006-07-13 13:55  jfa
35508
35509         * doc/salome/version.texi:
35510
35511         PAL12956: Error at make install in doc/salome.
35512
35513 2006-07-11 11:35  jfa
35514
35515         * configure.ac, DEPRECATED/configure.in.base:
35516
35517         Change version name to 3.2.1
35518
35519 2006-07-10 14:09  eap
35520
35521         * bin/orbmodule.py:
35522
35523         fix bug 10560: set GIOP message size
35524
35525 2006-07-07 13:30  mpv
35526
35527         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
35528
35529         Windows porting
35530
35531 2006-07-07 13:27  mpv
35532
35533         * src/: Basics/BasicsGenericDestructor.hxx, HDFPersist/HDFascii.cc:
35534
35535         Windows porting
35536
35537 2006-07-07 12:27  prascle
35538
35539         * src/KERNEL_PY/: import_hook.py, kernel_shared_modules.py,
35540           omnipatch.py, salome_shared_modules.py:
35541
35542         PR: Corrections from C. Caremoli, for embedded python.
35543         No Driver attribute for SALOMEDS__POA.
35544         allow: from omniORB import any.
35545
35546 2006-07-07 12:14  prascle
35547
35548         * src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py:
35549
35550         PR: for 9772 (avoid deadlock with embedded python container)
35551
35552 2006-07-07 12:08  prascle
35553
35554         * src/LifeCycleCORBA_SWIG/: Makefile.am,
35555           libSALOME_LifeCycleCORBA.i:
35556
35557         PR: for 9772 (avoid deadlock with embedded python container)
35558
35559 2006-07-07 12:02  prascle
35560
35561         * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
35562
35563         PR: file close missing
35564
35565 2006-07-07 12:01  prascle
35566
35567         * src/Container/Container_i.cxx:
35568
35569         PR: correction proposal for 12797
35570
35571 2006-07-05 09:26  vsr
35572
35573         * bin/launchConfigureParser.py:
35574
35575         Print "Warning! File not found!" message rather then "Error!" if the user configuration file can not be found.
35576
35577 2006-07-04 16:02  vsr
35578
35579         * bin/launchConfigureParser.py:
35580
35581         Correct a bug: find appropriate user configuration file function does not return a file with nearest id.
35582
35583 2006-06-30 13:49  abd
35584
35585         * src/TestContainer/SALOME_TestComponent_i.cxx:
35586
35587         Right fix for Linux compilation
35588
35589 2006-06-30 13:07  abd
35590
35591         * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_Defines.hxx,
35592           SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyBuilder_i.hxx:
35593
35594         Fix for Linux compilation
35595
35596 2006-06-30 11:01  ptv
35597
35598         * src/SALOMEDS/: SALOMEDS_Attributes.hxx,
35599           SALOMEDS_GenericAttribute_i.cxx:
35600
35601         make macros more understandable + do not use pointer of temporary created TCollection_AsciiString for comparing.
35602
35603 2006-06-30 11:00  ptv
35604
35605         * src/Utils/Utils_Identity.cxx:
35606
35607         initialisation of variables
35608
35609 2006-06-29 15:20  abd
35610
35611         * src/Logger/SALOME_Logger_Server_main.cxx:
35612
35613         Rigth fix for compilation on WIN32 and Linux
35614
35615 2006-06-29 09:41  vsr
35616
35617         * bin/launchConfigureParser.py:
35618
35619         Fix possible problems with custom SALOME modules (resources folder does not include module name).
35620
35621 2006-06-28 12:41  vsr
35622
35623         * bin/runSalome.py:
35624
35625         Fix possible problems with custom SALOME modules (resources folder does not include module name).
35626
35627 2006-06-28 10:32  vsr
35628
35629         * bin/launchConfigureParser.py:
35630
35631         Fix possible problems with custom SALOME modules (resources folder does not include module name).
35632
35633 2006-06-27 11:14  abd
35634
35635         * src/SALOMELocalTrace/: FileTraceCollector.hxx,
35636           LocalTraceBufferPool.hxx, LocalTraceCollector.hxx:
35637
35638         Right include for Linux compilation
35639
35640 2006-06-27 09:39  asv
35641
35642         * configure.ac, DEPRECATED/configure.in.base, bin/appli_install.sh,
35643           bin/launchConfigureParser.py, bin/runSalome.py,
35644           bin/appliskel/README, bin/appliskel/SalomeApp.xml,
35645           doc/SALOME_Application.txt, doc/salome/version.texi,
35646           salome_adm/unix/make_common_starter.am,
35647           salome_adm/unix/DEPRECATED/make_commence.in,
35648           salome_adm/unix/DEPRECATED/make_conclude.in,
35649           salome_adm/unix/DEPRECATED/make_module.in,
35650           src/ResourcesManager/SALOME_ResourcesManager.cxx,
35651           src/SALOMEDS/Test/SALOMEDSTest.cxx,
35652           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx:
35653
35654         Fix to bug PAL10465.
35655         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.
35656
35657 2006-06-22 11:05  abd
35658
35659         * bin/nameserver.py:
35660
35661         Fixed bug with number in localhost name
35662
35663 2006-06-14 18:03  rahuel
35664
35665         * salome_adm/unix/config_files/python.m4:
35666
35667         lib64 on 64 bits machines
35668
35669 2006-06-14 18:02  rahuel
35670
35671         * src/ModuleCatalog/Makefile.am:
35672
35673         New name of a .py file ecause of clash with a module name
35674
35675 2006-06-14 18:01  rahuel
35676
35677         * src/ModuleCatalog/TestModuleCatalog.py:
35678
35679         New name because of clash with a module name
35680
35681 2006-06-14 18:00  rahuel
35682
35683         * src/ModuleCatalog/SALOME_TestModuleCatalog.py:
35684
35685         That name clashes with a module name
35686
35687 2006-06-14 17:59  rahuel
35688
35689         * salome_adm/unix/config_files/DEPRECATED/config.sub:
35690
35691         necessary on CCRT
35692
35693 2006-06-14 17:59  rahuel
35694
35695         * salome_adm/unix/config_files/libtool.m4:
35696
35697         from libtool necessary on CCRT
35698
35699 2006-06-14 17:57  rahuel
35700
35701         * salome_adm/unix/config_files/check_qt.m4:
35702
35703         lib64 on -' bits machines
35704
35705 2006-06-14 17:55  rahuel
35706
35707         * bin/launchConfigureParser.py, bin/runSalome.py,
35708           doc/README.cluster-CCRT:
35709
35710         --terminal option for CCRT
35711
35712 2006-06-14 08:37  abd
35713
35714         * src/Utils/: Makefile.in, Test/Makefile.am, Test/Makefile.in,
35715           Test/TestUtils.cxx, Test/TestUtils.py, Test/UtilsTest.cxx,
35716           Test/UtilsTest.hxx:
35717
35718         Merging from BR_DEBUG_3_2_0b1
35719
35720 2006-06-14 08:34  abd
35721
35722         * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
35723           SALOMELocalTrace/BaseTraceCollector.hxx,
35724           SALOMELocalTrace/FileTraceCollector.cxx,
35725           SALOMELocalTrace/FileTraceCollector.hxx,
35726           SALOMELocalTrace/LocalTraceBufferPool.cxx,
35727           SALOMELocalTrace/LocalTraceBufferPool.hxx,
35728           SALOMELocalTrace/LocalTraceCollector.cxx,
35729           SALOMELocalTrace/LocalTraceCollector.hxx,
35730           SALOMELocalTrace/Makefile.am, SALOMELocalTrace/utilities.h,
35731           SALOMELocalTrace/Test/Makefile.am,
35732           SALOMELocalTrace/Test/Makefile.in,
35733           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
35734           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
35735           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
35736           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
35737           SALOMETraceCollector/Makefile.am,
35738           SALOMETraceCollector/Makefile.in,
35739           SALOMETraceCollector/SALOMETraceCollector.cxx,
35740           SALOMETraceCollector/SALOMETraceCollector.hxx,
35741           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
35742           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
35743           SALOMETraceCollector/Test/Makefile.am,
35744           SALOMETraceCollector/Test/Makefile.in,
35745           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
35746           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
35747           SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
35748           SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
35749           TOOLSDS/Makefile.am, TOOLSDS/Makefile.in,
35750           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
35751           TestContainer/Makefile.am, TestContainer/Makefile.in,
35752           TestContainer/SALOME_TestComponentPy.py,
35753           TestContainer/SALOME_TestComponent_i.cxx,
35754           TestContainer/SALOME_TestComponent_i.hxx,
35755           TestContainer/TestComponentPy.py,
35756           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
35757           TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
35758           TestMPIContainer/Makefile.in,
35759           TestMPIContainer/TestMPIComponentEngine.cxx,
35760           TestMPIContainer/TestMPIComponentEngine.hxx,
35761           TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
35762           UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
35763           UnitTests/UnitTests.py, Utils/Makefile.am, Utils/OpUtil.cxx,
35764           Utils/OpUtil.hxx, Utils/SALOME_utilities.py,
35765           Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
35766           Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
35767           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
35768           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
35769           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
35770           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
35771           Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
35772           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
35773           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
35774           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
35775           Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
35776           Utils/duplicate.cxx:
35777
35778         Merging from BR_DEBUG_3_2_0b1
35779
35780 2006-06-14 08:29  abd
35781
35782         * src/: SALOMEDS/Test/Makefile.am, SALOMEDS/Test/SALOMEDSTest.cxx,
35783           SALOMEDS/Test/SALOMEDSTest.hxx, SALOMEDS/Test/TestSALOMEDS.cxx,
35784           SALOMEDS/Test/TestSALOMEDS.py, SALOMEDSClient/Makefile.am,
35785           SALOMEDSClient/Makefile.in, SALOMEDSClient/SALOMEDSClient.hxx,
35786           SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
35787           SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
35788           SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
35789           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
35790           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
35791           SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
35792           SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
35793           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
35794           SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
35795           SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
35796           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
35797           SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
35798           SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
35799           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
35800           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
35801           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
35802           SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
35803           SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
35804           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
35805           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
35806           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
35807           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
35808           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
35809           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
35810           SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
35811           SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
35812           SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
35813           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
35814           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
35815           SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
35816           SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
35817           SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
35818           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
35819           SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
35820           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
35821           SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
35822           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
35823           SALOMEDSClient/SALOMEDSClient_Study.hxx,
35824           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
35825           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
35826           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
35827           SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
35828           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
35829           SALOMEDSImpl/Makefile.am,
35830           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
35831           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
35832           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
35833           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
35834           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
35835           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
35836           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
35837           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
35838           SALOMEDSImpl/Makefile.in,
35839           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
35840           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
35841           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
35842           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
35843           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
35844           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
35845           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
35846           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
35847           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
35848           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
35849           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
35850           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
35851           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
35852           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
35853           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
35854           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
35855           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
35856           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
35857           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
35858           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
35859           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
35860           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
35861           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
35862           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
35863           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
35864           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
35865           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
35866           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
35867           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
35868           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
35869           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
35870           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
35871           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
35872           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
35873           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
35874           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
35875           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
35876           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
35877           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
35878           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
35879           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
35880           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
35881           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
35882           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
35883           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
35884           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
35885           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
35886           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
35887           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
35888           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
35889           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
35890           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
35891           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
35892           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
35893           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
35894           SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
35895           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
35896           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
35897           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
35898           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
35899           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
35900           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
35901           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
35902           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
35903           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
35904           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
35905           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
35906           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
35907           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
35908           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
35909           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
35910           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
35911           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
35912           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
35913           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
35914           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
35915           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
35916           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
35917           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
35918           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
35919           SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
35920           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
35921           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
35922           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
35923           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
35924           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
35925           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
35926           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
35927           SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
35928           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
35929           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
35930           SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
35931           SALOMEDSImpl/Test/TestSALOMEDSImpl.py:
35932
35933         Merging from BR_DEBUG_3_2_0b1
35934
35935 2006-06-14 08:24  abd
35936
35937         * src/: NOTIFICATION_SWIG/Makefile.am,
35938           NOTIFICATION_SWIG/Makefile.in, NOTIFICATION_SWIG/NOTIFICATION.i,
35939           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
35940           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
35941           NamingService/Makefile.am, NamingService/Makefile.in,
35942           NamingService/NamingService_WaitForServerReadiness.cxx,
35943           NamingService/NamingService_WaitForServerReadiness.hxx,
35944           NamingService/SALOME_NamingService.cxx,
35945           NamingService/SALOME_NamingService.hxx,
35946           NamingService/SALOME_NamingService.i,
35947           NamingService/SALOME_NamingServicePy.py,
35948           NamingService/ServiceUnreachable.cxx,
35949           NamingService/ServiceUnreachable.hxx,
35950           NamingService/Test/Makefile.am, NamingService/Test/Makefile.in,
35951           NamingService/Test/NamingServiceTest.cxx,
35952           NamingService/Test/NamingServiceTest.hxx,
35953           NamingService/Test/TestNamingService.cxx,
35954           NamingService/Test/TestNamingService.py,
35955           Notification/CosNotifyShorthands.h, Notification/Makefile.am,
35956           Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
35957           Notification/NOTIFICATION_Consumer.cxx,
35958           Notification/NOTIFICATION_Consumer.hxx,
35959           Notification/NOTIFICATION_Supplier.cxx,
35960           Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.am,
35961           Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
35962           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
35963           Registry/SALOME_Registry_Server.cxx,
35964           ResourcesManager/Makefile.am, ResourcesManager/Makefile.in,
35965           ResourcesManager/SALOME_LoadRateManager.cxx,
35966           ResourcesManager/SALOME_LoadRateManager.hxx,
35967           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
35968           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
35969           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
35970           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
35971           ResourcesManager/SALOME_ResourcesManager.cxx,
35972           ResourcesManager/SALOME_ResourcesManager.hxx,
35973           SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
35974           SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
35975           SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
35976           SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
35977           SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
35978           SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
35979           SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
35980           SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
35981           SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cdl,
35982           SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
35983           SALOMEDS/SALOMEDS_AttReal_i.cxx,
35984           SALOMEDS/SALOMEDS_AttributeComment.hxx,
35985           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
35986           SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
35987           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
35988           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
35989           SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
35990           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
35991           SALOMEDS/SALOMEDS_AttributeFileType.hxx,
35992           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
35993           SALOMEDS/SALOMEDS_AttributeFlags.cxx,
35994           SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
35995           SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
35996           SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
35997           SALOMEDS/SALOMEDS_AttributeIOR.hxx,
35998           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
35999           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
36000           SALOMEDS/SALOMEDS_AttributeName.cxx,
36001           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
36002           SALOMEDS/SALOMEDS_AttributeOpened.hxx,
36003           SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
36004           SALOMEDS/SALOMEDS_AttributeParameter.cxx,
36005           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
36006           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
36007           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
36008           SALOMEDS/SALOMEDS_AttributeReal.cxx,
36009           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
36010           SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
36011           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
36012           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
36013           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
36014           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
36015           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
36016           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
36017           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
36018           SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
36019           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
36020           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
36021           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
36022           SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
36023           SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
36024           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
36025           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
36026           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
36027           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
36028           SALOMEDS/SALOMEDS_ChildIterator.hxx,
36029           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
36030           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
36031           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
36032           SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
36033           SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
36034           SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
36035           SALOMEDS/SALOMEDS_Driver_i.cxx,
36036           SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
36037           SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
36038           SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
36039           SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
36040           SALOMEDS/SALOMEDS_FileType.jxx,
36041           SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
36042           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
36043           SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
36044           SALOMEDS/SALOMEDS_IORAttribute.cxx,
36045           SALOMEDS/SALOMEDS_IORAttribute.jxx,
36046           SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
36047           SALOMEDS/SALOMEDS_OCAFApplication.cxx,
36048           SALOMEDS/SALOMEDS_OCAFApplication.jxx,
36049           SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
36050           SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
36051           SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
36052           SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
36053           SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
36054           SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
36055           SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
36056           SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
36057           SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
36058           SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
36059           SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
36060           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
36061           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
36062           SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
36063           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
36064           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
36065           SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
36066           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
36067           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
36068           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
36069           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
36070           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
36071           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
36072           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
36073           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
36074           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
36075           SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
36076           SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
36077           SALOMEDS/SALOMEDS_TargetAttribute.cxx,
36078           SALOMEDS/SALOMEDS_TargetAttribute.jxx,
36079           SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
36080           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
36081           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
36082           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
36083           SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
36084           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
36085           SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
36086           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
36087           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
36088           SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
36089           SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
36090           SALOMEDS/Handle_SALOMEDS_FileType.hxx,
36091           SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
36092           SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
36093           SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
36094           SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
36095           SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
36096           SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
36097           SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
36098           SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
36099           SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
36100           SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
36101           SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
36102           SALOMEDS/SALOMEDS_AttReal_i.hxx,
36103           SALOMEDS/SALOMEDS_AttributeComment.cxx,
36104           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
36105           SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
36106           SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
36107           SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
36108           SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
36109           SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
36110           SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
36111           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
36112           SALOMEDS/SALOMEDS_AttributeFileType.cxx,
36113           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
36114           SALOMEDS/SALOMEDS_AttributeFlags.hxx,
36115           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
36116           SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
36117           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
36118           SALOMEDS/SALOMEDS_AttributeIOR.cxx,
36119           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
36120           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
36121           SALOMEDS/SALOMEDS_AttributeInteger.cxx,
36122           SALOMEDS/SALOMEDS_AttributeInteger.hxx,
36123           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
36124           SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
36125           SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
36126           SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
36127           SALOMEDS/SALOMEDS_AttributeName.hxx,
36128           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
36129           SALOMEDS/SALOMEDS_AttributeOpened.cxx,
36130           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
36131           SALOMEDS/SALOMEDS_AttributeParameter.hxx,
36132           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
36133           SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
36134           SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
36135           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
36136           SALOMEDS/SALOMEDS_AttributePixMap.cxx,
36137           SALOMEDS/SALOMEDS_AttributePixMap.hxx,
36138           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
36139           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
36140           SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
36141           SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
36142           SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
36143           SALOMEDS/SALOMEDS_AttributeReal.hxx,
36144           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
36145           SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
36146           SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
36147           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
36148           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
36149           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
36150           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
36151           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
36152           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
36153           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
36154           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
36155           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
36156           SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
36157           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
36158           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
36159           SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
36160           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
36161           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
36162           SALOMEDS/SALOMEDS_AttributeTarget.hxx,
36163           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
36164           SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
36165           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
36166           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
36167           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
36168           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
36169           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
36170           SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
36171           SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
36172           SALOMEDS/SALOMEDS_AttributeUserID.cxx,
36173           SALOMEDS/SALOMEDS_AttributeUserID.hxx,
36174           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
36175           SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
36176           SALOMEDS/SALOMEDS_Attributes.hxx,
36177           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
36178           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
36179           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
36180           SALOMEDS/SALOMEDS_Callback_i.hxx,
36181           SALOMEDS/SALOMEDS_ChildIterator.cxx,
36182           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
36183           SALOMEDS/SALOMEDS_Client.cxx,
36184           SALOMEDS/SALOMEDS_ClientAttributes.hxx,
36185           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
36186           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
36187           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
36188           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
36189           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
36190           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
36191           SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
36192           SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
36193           SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
36194           SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
36195           SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
36196           SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
36197           SALOMEDS/SALOMEDS_Driver_i.hxx,
36198           SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
36199           SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
36200           SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
36201           SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
36202           SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
36203           SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
36204           SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
36205           SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
36206           SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
36207           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
36208           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
36209           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
36210           SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
36211           SALOMEDS/SALOMEDS_IORAttribute.cdl,
36212           SALOMEDS/SALOMEDS_IORAttribute.hxx,
36213           SALOMEDS/SALOMEDS_IORAttribute.ixx,
36214           SALOMEDS/SALOMEDS_IParameters.cxx,
36215           SALOMEDS/SALOMEDS_IParameters.hxx,
36216           SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
36217           SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
36218           SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
36219           SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
36220           SALOMEDS/SALOMEDS_OCAFApplication.cdl,
36221           SALOMEDS/SALOMEDS_OCAFApplication.hxx,
36222           SALOMEDS/SALOMEDS_OCAFApplication.ixx,
36223           SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
36224           SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
36225           SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
36226           SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
36227           SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
36228           SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
36229           SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
36230           SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
36231           SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
36232           SALOMEDS/SALOMEDS_SAttribute_i.hxx,
36233           SALOMEDS/SALOMEDS_SComponent.cxx,
36234           SALOMEDS/SALOMEDS_SComponent.hxx,
36235           SALOMEDS/SALOMEDS_SComponentIterator.cxx,
36236           SALOMEDS/SALOMEDS_SComponentIterator.hxx,
36237           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
36238           SALOMEDS/SALOMEDS_SComponent_i.cxx,
36239           SALOMEDS/SALOMEDS_SComponent_i.hxx,
36240           SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
36241           SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
36242           SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
36243           SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
36244           SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
36245           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
36246           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
36247           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
36248           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
36249           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
36250           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
36251           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
36252           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
36253           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.hxx,
36254           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
36255           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
36256           SALOMEDS/SALOMEDS_StudyManager.cxx,
36257           SALOMEDS/SALOMEDS_StudyManager.hxx,
36258           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
36259           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
36260           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
36261           SALOMEDS/SALOMEDS_Study_i.hxx, SALOMEDS/SALOMEDS_TMPFile_i.cxx,
36262           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
36263           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
36264           SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
36265           SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
36266           SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
36267           SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
36268           SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
36269           SALOMEDS/SALOMEDS_TargetAttribute.cdl,
36270           SALOMEDS/SALOMEDS_TargetAttribute.hxx,
36271           SALOMEDS/SALOMEDS_TargetAttribute.ixx,
36272           SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
36273           SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
36274           SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
36275           SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
36276           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
36277           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
36278           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
36279           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
36280           SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
36281           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
36282           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
36283           SALOMEDS/SALOME_DriverPy.py:
36284
36285         Merging from BR_DEBUG_3_2_0b1
36286
36287 2006-06-14 08:21  abd
36288
36289         * src/: ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
36290           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
36291           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
36292           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
36293           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
36294           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
36295           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
36296           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
36297           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
36298           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
36299           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
36300           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
36301           ModuleCatalog/SALOME_TestModuleCatalog.py,
36302           ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
36303           ModuleGenerator/Makefile.in, ModuleGenerator/testIDLparser.in,
36304           ModuleGenerator/tests/Truc2Component.idl,
36305           ModuleGenerator/tests/TrucComponent.idl,
36306           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
36307           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
36308           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh:
36309
36310         Merging from BR_DEBUG_3_2_0b1
36311
36312 2006-06-14 08:18  abd
36313
36314         * src/: KERNEL_PY/Help.py, KERNEL_PY/Makefile.am,
36315           KERNEL_PY/Makefile.in, KERNEL_PY/PyInterp.py,
36316           KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
36317           KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
36318           KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
36319           KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
36320           KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
36321           KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
36322           KERNEL_PY/salome_version.py, LifeCycleCORBA/Launchers.cxx,
36323           LifeCycleCORBA/Launchers.hxx, LifeCycleCORBA/Launchers.py,
36324           LifeCycleCORBA/Makefile.am, LifeCycleCORBA/Makefile.in,
36325           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
36326           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
36327           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
36328           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
36329           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
36330           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
36331           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
36332           LifeCycleCORBA/Test/Makefile.am, LifeCycleCORBA/Test/Makefile.in,
36333           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
36334           LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
36335           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
36336           LifeCycleCORBA_SWIG/Makefile.am, LifeCycleCORBA_SWIG/Makefile.in,
36337           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
36338           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
36339           LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
36340           LifeCycleCORBA_SWIG/Test/Makefile.am,
36341           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
36342           Logger/Makefile.am, Logger/Makefile.in,
36343           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
36344           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
36345           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
36346           Logger/Test/Makefile.am, Logger/Test/Makefile.in,
36347           Logger/Test/TestKiller.py, MPIContainer/MPIContainer_i.cxx,
36348           MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
36349           MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.am,
36350           MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx:
36351
36352         Merging from BR_DEBUG_3_2_0b1
36353
36354 2006-06-14 08:14  abd
36355
36356         * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
36357           Communication/MatrixClient.hxx,
36358           Communication/MultiCommException.cxx,
36359           Communication/MultiCommException.hxx, Communication/Receiver.cxx,
36360           Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
36361           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
36362           Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
36363           Communication/SALOMEMultiComm.hxx,
36364           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
36365           Communication/SALOME_Matrix_i.cxx,
36366           Communication/SALOME_Matrix_i.hxx,
36367           Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
36368           Communication/libSALOME_Comm.i, Communication_SWIG/Makefile.am,
36369           Communication_SWIG/Makefile.in,
36370           Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
36371           Container/Container_i.cxx, Container/Container_init_python.cxx,
36372           Container/Container_init_python.hxx, Container/Makefile.am,
36373           Container/SALOME_ComponentPy.py,
36374           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
36375           Container/SALOME_Container.py,
36376           Container/SALOME_ContainerManager.cxx,
36377           Container/SALOME_ContainerManager.hxx,
36378           Container/SALOME_ContainerManagerServer.cxx,
36379           Container/SALOME_ContainerPy.py,
36380           Container/SALOME_Container_SignalsHandler.cxx,
36381           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
36382           Container/SALOME_FileRef_i.hxx,
36383           Container/SALOME_FileTransfer_i.cxx,
36384           Container/SALOME_FileTransfer_i.hxx, GenericObj/Makefile.am,
36385           GenericObj/Makefile.in, GenericObj/SALOME_GenericObj_i.cc,
36386           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
36387           HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
36388           HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
36389           HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
36390           HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
36391           HDFPersist/HDFattribute.cc, HDFPersist/HDFcontainerObject.cc,
36392           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
36393           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
36394           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
36395           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
36396           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
36397           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
36398           HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
36399           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
36400           HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
36401           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFfile.cc,
36402           HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
36403           HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
36404           HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroupClose.c,
36405           HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
36406           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
36407           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
36408           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
36409           HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
36410           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
36411           HDFPersist/test4.cxx, HDFPersist/test6.cxx, HDFPersist/test7.cxx,
36412           HDFPersist/test8.cxx, HDFPersist/test9.cxx,
36413           HDFPersist/HDFattrClose.c, HDFPersist/HDFattribute.hxx,
36414           HDFPersist/HDFfile.hxx, HDFPersist/HDFgroup.cc,
36415           HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
36416           HDFPersist/Makefile.in, HDFPersist/test5.cxx:
36417
36418         Merging from BR_DEBUG_3_2_0b1
36419
36420 2006-06-14 08:09  abd
36421
36422         * salome_adm/Makefile.am, salome_adm/Makefile.in,
36423           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
36424           salome_adm/unix/SALOMEconfig.ref.in, salome_adm/unix/config.h.in,
36425           salome_adm/unix/depend.in, salome_adm/unix/envScript.in,
36426           salome_adm/unix/make_commence.in,
36427           salome_adm/unix/make_common_starter.am,
36428           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
36429           salome_adm/unix/make_omniorb.in, salome_adm/unix/pythonbe.py,
36430           salome_adm/unix/DEPRECATED/Doxyfile,
36431           salome_adm/unix/DEPRECATED/F77config.h.in,
36432           salome_adm/unix/DEPRECATED/config.h.in,
36433           salome_adm/unix/DEPRECATED/depend.in,
36434           salome_adm/unix/DEPRECATED/envScript.in,
36435           salome_adm/unix/DEPRECATED/make_commence.in,
36436           salome_adm/unix/DEPRECATED/make_conclude.in,
36437           salome_adm/unix/DEPRECATED/make_module.in,
36438           salome_adm/unix/DEPRECATED/make_omniorb.in,
36439           salome_adm/unix/DEPRECATED/sstream.in,
36440           salome_adm/unix/config_files/Makefile.am,
36441           salome_adm/unix/config_files/ac_cxx_bool.m4,
36442           salome_adm/unix/config_files/ac_cxx_mutable.m4,
36443           salome_adm/unix/config_files/ac_cxx_option.m4,
36444           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
36445           salome_adm/unix/config_files/ac_cxx_typename.m4,
36446           salome_adm/unix/config_files/ac_linker_options.m4,
36447           salome_adm/unix/config_files/acx_pthread.m4,
36448           salome_adm/unix/config_files/check_Kernel.m4,
36449           salome_adm/unix/config_files/check_boost.m4,
36450           salome_adm/unix/config_files/check_cas.m4,
36451           salome_adm/unix/config_files/check_cppunit.m4,
36452           salome_adm/unix/config_files/check_hdf5.m4,
36453           salome_adm/unix/config_files/check_htmlgen.m4,
36454           salome_adm/unix/config_files/check_lam.m4,
36455           salome_adm/unix/config_files/check_local.m4,
36456           salome_adm/unix/config_files/check_lsf.m4,
36457           salome_adm/unix/config_files/check_mico.m4,
36458           salome_adm/unix/config_files/check_mpi.m4,
36459           salome_adm/unix/config_files/check_mpich.m4,
36460           salome_adm/unix/config_files/check_msg2qm.m4,
36461           salome_adm/unix/config_files/check_omniorb.m4,
36462           salome_adm/unix/config_files/check_opengl.m4,
36463           salome_adm/unix/config_files/check_openpbs.m4,
36464           salome_adm/unix/config_files/check_pthreads.m4,
36465           salome_adm/unix/config_files/check_pyqt.m4,
36466           salome_adm/unix/config_files/check_qt.m4,
36467           salome_adm/unix/config_files/check_qwt.m4,
36468           salome_adm/unix/config_files/check_sip.m4,
36469           salome_adm/unix/config_files/check_swig.m4,
36470           salome_adm/unix/config_files/check_vtk.m4,
36471           salome_adm/unix/config_files/enable_pthreads.m4,
36472           salome_adm/unix/config_files/install-sh,
36473           salome_adm/unix/config_files/libtool.m4,
36474           salome_adm/unix/config_files/mkinstalldirs,
36475           salome_adm/unix/config_files/production.m4,
36476           salome_adm/unix/config_files/python.m4,
36477           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
36478           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
36479           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
36480           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
36481           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
36482           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
36483           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
36484           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
36485           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
36486           salome_adm/unix/config_files/DEPRECATED/config.guess,
36487           salome_adm/unix/config_files/DEPRECATED/config.sub,
36488           salome_adm/unix/config_files/DEPRECATED/install-sh,
36489           salome_adm/unix/config_files/DEPRECATED/libtool.m4,
36490           salome_adm/unix/config_files/DEPRECATED/ltconfig,
36491           salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
36492           salome_adm/unix/config_files/DEPRECATED/missing,
36493           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
36494           src/Makefile.am, src/Makefile.in,
36495           src/Basics/BasicsGenericDestructor.cxx,
36496           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
36497           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
36498           src/Basics/Test/Makefile.in:
36499
36500         Merging from BR_DEBUG_3_2_0b1
36501
36502 2006-06-14 08:06  abd
36503
36504         * doc/salome/tui/Makefile.am, doc/salome/tui/Makefile.in,
36505           doc/salome/tui/pythfilter.py, idl/Logger.idl, idl/Makefile.am,
36506           idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
36507           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
36508           idl/SALOME_ContainerManager.idl, idl/SALOME_DataTypeCatalog.idl,
36509           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
36510           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
36511           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
36512           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_TestComponent.idl,
36513           idl/SALOME_TestMPIComponent.idl,
36514           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
36515           idl/TypeData.idl, idl/nstest.idl, resources/CatalogResources.xml,
36516           resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
36517           resources/KERNELCatalog.xml.in, resources/Makefile.am,
36518           resources/Plugin.in:
36519
36520         Merging from BR_DEBUG_3_2_0b1
36521
36522 2006-06-14 08:01  abd
36523
36524         * doc/: INSTALL.txt, KERNEL_Services.txt, Makefile.am, Makefile.in,
36525           SALOME_Application.txt, UnitTests.txt, index.txt,
36526           kernel_resources.txt, rst.css, txt2html.sh, userguide.txt,
36527           configuration_examples/example_prerequis.sh,
36528           salome/DevelopersGuide.pdf, salome/KERNEL_index.html,
36529           salome/Makefile.am, salome/Makefile.in,
36530           salome/OrganisationProduction_PAL.pdf,
36531           salome/OrganisationProduction_PAL.ps,
36532           salome/OrganisationProduction_PAL.sxw,
36533           salome/Parallelisme_dans_Salome.pdf,
36534           salome/Parallelisme_dans_Salome.ps,
36535           salome/ResourcesManagerManual.pdf, salome/Utilitaires_SALOME.doc,
36536           salome/Utilitaires_SALOME.pdf, salome/Utilitaires_SALOME.ps,
36537           salome/kernel_resources.pdf, salome/kernel_resources.ps,
36538           salome/version.texi, salome/Batch.texi,
36539           salome/DevelopersGuide.ps, salome/gui/Makefile.in:
36540
36541         Merging from BR_DEBUG_3_2_0b1
36542
36543 2006-06-14 07:57  abd
36544
36545         * AUTHORS, COPYING, ChangeLog, INSTALL, KERNEL_version.h.in,
36546           Makefile.am, Makefile.in, NEWS, README, build_configure,
36547           clean_configure, configure.ac, configure.in.base, make_config.in,
36548           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
36549           DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
36550           bin/VERSION, bin/VERSION.in, bin/addToKillList.py,
36551           bin/appli_clean.sh, bin/appli_install.sh, bin/createAppli.sh,
36552           bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
36553           bin/launchConfigureParser.py, bin/orbmodule.py,
36554           bin/runIDLparser.in, bin/runNS.sh, bin/runSalome,
36555           bin/runSalome.ksh, bin/runSalome.py, bin/salomeConsole.py,
36556           bin/salome_session.py, bin/server.py, bin/setenv.py,
36557           bin/showNS.py, bin/virtual_salome.py,
36558           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
36559           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
36560           bin/appliskel/runSession, bin/appliskel/runTests,
36561           bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh:
36562
36563         Merging from BR_DEBUG_3_2_0b1
36564
36565 2006-06-08 12:49  prascle
36566
36567         * doc/: INSTALL.txt, KERNEL_Services.txt:
36568
36569         PR: typo
36570
36571 2006-06-08 12:49  prascle
36572
36573         * doc/salome/tui/Makefile.am:
36574
36575         PR: dist incomplete
36576
36577 2006-06-06 11:12  abd
36578
36579         * src/Utils/Utils_SignalsHandler.cxx:
36580
36581         [no log message]
36582
36583 2006-06-06 11:01  abd
36584
36585         * src/Basics/Makefile.in:
36586
36587         [no log message]
36588
36589 2006-06-05 08:40  abd
36590
36591         * bin/server.py:
36592
36593         NO create console for new install version
36594
36595 2006-06-02 14:52  prascle
36596
36597         * doc/KERNEL_Services.txt:
36598
36599         PR: documentation modifications
36600
36601 2006-06-02 14:42  prascle
36602
36603         * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
36604           UnitTests.txt, index.txt, kernel_resources.txt, userguide.txt:
36605
36606         PR: documentation modifications
36607
36608 2006-06-02 11:25  prascle
36609
36610         * doc/salome/: tui/Makefile.am, DevelopersGuide.pdf,
36611           DevelopersGuide.ps, OrganisationProduction_PAL.pdf,
36612           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw,
36613           Parallelisme_dans_Salome.pdf, Parallelisme_dans_Salome.ps,
36614           ResourcesManagerManual.pdf, Utilitaires_SALOME.doc,
36615           Utilitaires_SALOME.pdf, Utilitaires_SALOME.ps:
36616
36617         PR: documentation modifications
36618
36619 2006-06-02 11:22  prascle
36620
36621         * Makefile.am, configure.ac, doc/KERNEL_Services.txt,
36622           doc/Makefile.am, doc/index.txt, doc/salome/Batch.texi,
36623           doc/salome/Makefile.am, doc/salome/version.texi:
36624
36625         PR: documentation modifications
36626
36627 2006-06-01 13:15  jfa
36628
36629         * INSTALL, KERNEL_version.h.in, Makefile.am, README, configure.ac,
36630           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
36631           bin/Makefile.am, bin/NSparam.py, bin/VERSION, bin/VERSION.in,
36632           bin/addToKillList.py, bin/appli_clean.sh, bin/appli_install.sh,
36633           bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
36634           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
36635           bin/orbmodule.py, bin/runNS.sh, bin/runSalome.py,
36636           bin/salomeConsole.py, bin/salome_session.py, bin/showNS.py,
36637           bin/virtual_salome.py, bin/appliskel/runRemote.sh,
36638           bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
36639           doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
36640           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
36641           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
36642           doc/userguide.txt,
36643           doc/configuration_examples/example_prerequis.sh,
36644           doc/salome/KERNEL_index.html, doc/salome/Makefile.am,
36645           doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
36646           idl/Logger.idl, idl/Makefile.am, idl/SALOMEDS.idl,
36647           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
36648           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
36649           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
36650           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
36651           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
36652           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
36653           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
36654           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
36655           idl/TypeData.idl, idl/nstest.idl, resources/CatalogResources.xml,
36656           resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
36657           resources/KERNELCatalog.xml.in, resources/Makefile.am,
36658           salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
36659           salome_adm/unix/SALOMEconfig.h.in,
36660           salome_adm/unix/SALOMEconfig.ref.in, salome_adm/unix/pythonbe.py,
36661           salome_adm/unix/DEPRECATED/make_conclude.in,
36662           salome_adm/unix/DEPRECATED/make_module.in,
36663           salome_adm/unix/config_files/Makefile.am,
36664           salome_adm/unix/config_files/check_boost.m4,
36665           salome_adm/unix/config_files/DEPRECATED/config.sub,
36666           src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
36667           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
36668           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
36669           src/Communication/Makefile.am,
36670           src/Communication/MatrixClient.cxx,
36671           src/Communication/MatrixClient.hxx,
36672           src/Communication/MultiCommException.cxx,
36673           src/Communication/MultiCommException.hxx,
36674           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
36675           src/Communication/ReceiverFactory.cxx,
36676           src/Communication/ReceiverFactory.hxx,
36677           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
36678           src/Communication/SALOMEMultiComm.cxx,
36679           src/Communication/SALOMEMultiComm.hxx,
36680           src/Communication/SALOME_Comm_i.cxx,
36681           src/Communication/SALOME_Comm_i.hxx,
36682           src/Communication/SALOME_Matrix_i.cxx,
36683           src/Communication/SALOME_Matrix_i.hxx,
36684           src/Communication/SenderFactory.cxx,
36685           src/Communication/SenderFactory.hxx,
36686           src/Communication/libSALOME_Comm.i,
36687           src/Communication_SWIG/Makefile.am,
36688           src/Communication_SWIG/libSALOME_Comm.i,
36689           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
36690           src/Container/Container_init_python.cxx,
36691           src/Container/Container_init_python.hxx,
36692           src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
36693           src/Container/SALOME_Component_i.hxx,
36694           src/Container/SALOME_Container.cxx,
36695           src/Container/SALOME_Container.py,
36696           src/Container/SALOME_ContainerManager.cxx,
36697           src/Container/SALOME_ContainerManager.hxx,
36698           src/Container/SALOME_ContainerManagerServer.cxx,
36699           src/Container/SALOME_ContainerPy.py,
36700           src/Container/SALOME_Container_SignalsHandler.cxx,
36701           src/Container/SALOME_Container_i.hxx,
36702           src/Container/SALOME_FileRef_i.cxx,
36703           src/Container/SALOME_FileRef_i.hxx,
36704           src/Container/SALOME_FileTransfer_i.cxx,
36705           src/Container/SALOME_FileTransfer_i.hxx,
36706           src/GenericObj/Makefile.am,
36707           src/GenericObj/SALOME_GenericObj_i.cc,
36708           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
36709           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
36710           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
36711           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
36712           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
36713           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
36714           src/HDFPersist/HDFattribute.hxx,
36715           src/HDFPersist/HDFcontainerObject.cc,
36716           src/HDFPersist/HDFcontainerObject.hxx,
36717           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
36718           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
36719           src/HDFPersist/HDFdatasetClose.c,
36720           src/HDFPersist/HDFdatasetCreate.c,
36721           src/HDFPersist/HDFdatasetGetDim.c,
36722           src/HDFPersist/HDFdatasetGetOrder.c,
36723           src/HDFPersist/HDFdatasetGetSize.c,
36724           src/HDFPersist/HDFdatasetGetType.c,
36725           src/HDFPersist/HDFdatasetGetnDim.c,
36726           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
36727           src/HDFPersist/HDFdatasetWrite.c,
36728           src/HDFPersist/HDFerrorModeLock.c,
36729           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
36730           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
36731           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
36732           src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
36733           src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
36734           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
36735           src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
36736           src/HDFPersist/HDFgroupOpen.c,
36737           src/HDFPersist/HDFinternalObject.cc,
36738           src/HDFPersist/HDFinternalObject.hxx,
36739           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
36740           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
36741           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
36742           src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
36743           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
36744           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
36745           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
36746           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
36747           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
36748           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
36749           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
36750           src/KERNEL_PY/iparameters.py,
36751           src/KERNEL_PY/kernel_shared_modules.py,
36752           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
36753           src/KERNEL_PY/salome_ComponentGUI.py,
36754           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
36755           src/KERNEL_PY/salome_shared_modules.py,
36756           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
36757           src/KERNEL_PY/salome_version.py,
36758           src/LifeCycleCORBA/LifeCycleCORBA.py,
36759           src/LifeCycleCORBA/Makefile.am,
36760           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
36761           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
36762           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
36763           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
36764           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
36765           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
36766           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
36767           src/LifeCycleCORBA/Test/Makefile.am,
36768           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
36769           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
36770           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
36771           src/LifeCycleCORBA_SWIG/Makefile.am,
36772           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
36773           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
36774           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
36775           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
36776           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
36777           src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
36778           src/Logger/SALOME_Logger_Server.hxx,
36779           src/Logger/SALOME_Logger_Server_main.cxx,
36780           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
36781           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
36782           src/Logger/Test/TestKiller.py,
36783           src/MPIContainer/MPIContainer_i.cxx,
36784           src/MPIContainer/MPIContainer_i.hxx,
36785           src/MPIContainer/MPIObject_i.cxx,
36786           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
36787           src/MPIContainer/SALOME_MPIContainer.cxx,
36788           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
36789           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
36790           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
36791           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
36792           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
36793           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
36794           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
36795           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
36796           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
36797           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
36798           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
36799           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
36800           src/ModuleCatalog/SALOME_TestModuleCatalog.py,
36801           src/ModuleGenerator/IDLparser.py,
36802           src/ModuleGenerator/Makefile.am,
36803           src/ModuleGenerator/tests/Truc2Component.idl,
36804           src/ModuleGenerator/tests/TrucComponent.idl,
36805           src/ModuleGenerator/tests/test1.sh,
36806           src/ModuleGenerator/tests/test1b.sh,
36807           src/ModuleGenerator/tests/test2.sh,
36808           src/ModuleGenerator/tests/test3.sh,
36809           src/ModuleGenerator/tests/test4.sh,
36810           src/ModuleGenerator/tests/test5.sh,
36811           src/NOTIFICATION_SWIG/Makefile.am,
36812           src/NOTIFICATION_SWIG/NOTIFICATION.i,
36813           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
36814           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
36815           src/NamingService/Makefile.am,
36816           src/NamingService/NamingService_WaitForServerReadiness.cxx,
36817           src/NamingService/NamingService_WaitForServerReadiness.hxx,
36818           src/NamingService/SALOME_NamingService.cxx,
36819           src/NamingService/SALOME_NamingService.hxx,
36820           src/NamingService/SALOME_NamingService.i,
36821           src/NamingService/SALOME_NamingServicePy.py,
36822           src/NamingService/ServiceUnreachable.cxx,
36823           src/NamingService/ServiceUnreachable.hxx,
36824           src/NamingService/Test/Makefile.am,
36825           src/NamingService/Test/NamingServiceTest.cxx,
36826           src/NamingService/Test/NamingServiceTest.hxx,
36827           src/NamingService/Test/TestNamingService.cxx,
36828           src/NamingService/Test/TestNamingService.py,
36829           src/Notification/CosNotifyShorthands.h,
36830           src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
36831           src/Notification/NOTIFICATION.hxx,
36832           src/Notification/NOTIFICATION_Consumer.cxx,
36833           src/Notification/NOTIFICATION_Consumer.hxx,
36834           src/Notification/NOTIFICATION_Supplier.cxx,
36835           src/Notification/NOTIFICATION_Supplier.hxx,
36836           src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
36837           src/Registry/RegistryConnexion.hxx,
36838           src/Registry/RegistryService.cxx,
36839           src/Registry/RegistryService.hxx,
36840           src/Registry/SALOME_Registry_Server.cxx,
36841           src/ResourcesManager/Makefile.am,
36842           src/ResourcesManager/SALOME_LoadRateManager.cxx,
36843           src/ResourcesManager/SALOME_LoadRateManager.hxx,
36844           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
36845           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
36846           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
36847           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
36848           src/ResourcesManager/SALOME_ResourcesManager.cxx,
36849           src/ResourcesManager/SALOME_ResourcesManager.hxx,
36850           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
36851           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
36852           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
36853           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
36854           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
36855           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
36856           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
36857           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
36858           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
36859           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
36860           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
36861           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
36862           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
36863           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
36864           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
36865           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
36866           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
36867           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
36868           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
36869           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
36870           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
36871           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
36872           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
36873           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
36874           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
36875           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
36876           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
36877           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
36878           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
36879           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
36880           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
36881           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
36882           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
36883           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
36884           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
36885           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
36886           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
36887           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
36888           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
36889           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
36890           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
36891           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
36892           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
36893           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
36894           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
36895           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
36896           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
36897           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
36898           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
36899           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
36900           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
36901           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
36902           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
36903           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
36904           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
36905           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
36906           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
36907           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
36908           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
36909           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
36910           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
36911           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
36912           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
36913           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
36914           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
36915           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
36916           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
36917           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
36918           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
36919           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
36920           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
36921           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
36922           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
36923           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
36924           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
36925           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
36926           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
36927           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
36928           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
36929           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
36930           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
36931           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
36932           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
36933           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
36934           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
36935           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
36936           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
36937           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
36938           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
36939           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
36940           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
36941           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
36942           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
36943           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
36944           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
36945           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
36946           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
36947           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
36948           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
36949           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
36950           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
36951           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
36952           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
36953           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
36954           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
36955           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
36956           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
36957           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
36958           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
36959           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
36960           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
36961           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
36962           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
36963           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
36964           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
36965           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
36966           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
36967           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
36968           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
36969           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
36970           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
36971           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
36972           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
36973           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
36974           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
36975           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
36976           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
36977           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
36978           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
36979           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
36980           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
36981           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
36982           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
36983           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
36984           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
36985           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
36986           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
36987           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
36988           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
36989           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
36990           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
36991           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
36992           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
36993           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
36994           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
36995           src/SALOMEDS/SALOMEDS_Attributes.hxx,
36996           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
36997           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
36998           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
36999           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
37000           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
37001           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
37002           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
37003           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
37004           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
37005           src/SALOMEDS/SALOMEDS_Client.cxx,
37006           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
37007           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
37008           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
37009           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
37010           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
37011           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
37012           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
37013           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
37014           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
37015           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
37016           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
37017           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
37018           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
37019           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
37020           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
37021           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
37022           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
37023           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
37024           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
37025           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
37026           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
37027           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
37028           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
37029           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
37030           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
37031           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
37032           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
37033           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
37034           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
37035           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
37036           src/SALOMEDS/SALOMEDS_FileType.cdl,
37037           src/SALOMEDS/SALOMEDS_FileType.cxx,
37038           src/SALOMEDS/SALOMEDS_FileType.hxx,
37039           src/SALOMEDS/SALOMEDS_FileType.ixx,
37040           src/SALOMEDS/SALOMEDS_FileType.jxx,
37041           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
37042           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
37043           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
37044           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
37045           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
37046           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
37047           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
37048           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
37049           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
37050           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
37051           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
37052           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
37053           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
37054           src/SALOMEDS/SALOMEDS_IParameters.cxx,
37055           src/SALOMEDS/SALOMEDS_IParameters.hxx,
37056           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
37057           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
37058           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
37059           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
37060           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
37061           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
37062           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
37063           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
37064           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
37065           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
37066           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
37067           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
37068           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
37069           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
37070           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
37071           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
37072           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
37073           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
37074           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
37075           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
37076           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
37077           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
37078           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
37079           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
37080           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
37081           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
37082           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
37083           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
37084           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
37085           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
37086           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
37087           src/SALOMEDS/SALOMEDS_SComponent.cxx,
37088           src/SALOMEDS/SALOMEDS_SComponent.hxx,
37089           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
37090           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
37091           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
37092           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
37093           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
37094           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
37095           src/SALOMEDS/SALOMEDS_SObject.cxx,
37096           src/SALOMEDS/SALOMEDS_SObject.hxx,
37097           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
37098           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
37099           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
37100           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
37101           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
37102           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
37103           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
37104           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
37105           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
37106           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
37107           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
37108           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
37109           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
37110           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
37111           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
37112           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
37113           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
37114           src/SALOMEDS/SALOMEDS_Server.cxx,
37115           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
37116           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
37117           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
37118           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
37119           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
37120           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
37121           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
37122           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
37123           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
37124           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
37125           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
37126           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
37127           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
37128           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
37129           src/SALOMEDS/SALOMEDS_Study_i.cxx,
37130           src/SALOMEDS/SALOMEDS_Study_i.hxx,
37131           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
37132           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
37133           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
37134           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
37135           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
37136           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
37137           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
37138           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
37139           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
37140           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
37141           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
37142           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
37143           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
37144           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
37145           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
37146           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
37147           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
37148           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
37149           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
37150           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
37151           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
37152           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
37153           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
37154           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
37155           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
37156           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
37157           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
37158           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
37159           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
37160           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
37161           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
37162           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
37163           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
37164           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
37165           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
37166           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
37167           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
37168           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
37169           src/SALOMEDS/Test/SALOMEDSTest.cxx,
37170           src/SALOMEDS/Test/SALOMEDSTest.hxx,
37171           src/SALOMEDS/Test/TestSALOMEDS.cxx,
37172           src/SALOMEDS/Test/TestSALOMEDS.py,
37173           src/SALOMEDSClient/Makefile.am,
37174           src/SALOMEDSClient/SALOMEDSClient.hxx,
37175           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
37176           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
37177           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
37178           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
37179           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
37180           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
37181           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
37182           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
37183           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
37184           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
37185           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
37186           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
37187           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
37188           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
37189           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
37190           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
37191           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
37192           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
37193           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
37194           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
37195           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
37196           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
37197           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
37198           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
37199           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
37200           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
37201           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
37202           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
37203           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
37204           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
37205           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
37206           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
37207           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
37208           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
37209           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
37210           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
37211           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
37212           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
37213           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
37214           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
37215           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
37216           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
37217           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
37218           src/SALOMEDSImpl/Makefile.am,
37219           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
37220           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
37221           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
37222           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
37223           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
37224           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
37225           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
37226           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
37227           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
37228           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
37229           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
37230           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
37231           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
37232           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
37233           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
37234           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
37235           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
37236           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
37237           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
37238           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
37239           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
37240           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
37241           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
37242           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
37243           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
37244           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
37245           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
37246           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
37247           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
37248           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
37249           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
37250           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
37251           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
37252           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
37253           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
37254           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
37255           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
37256           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
37257           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
37258           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
37259           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
37260           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
37261           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
37262           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
37263           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
37264           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
37265           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
37266           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
37267           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
37268           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
37269           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
37270           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
37271           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
37272           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
37273           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
37274           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
37275           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
37276           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
37277           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
37278           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
37279           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
37280           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
37281           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
37282           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
37283           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
37284           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
37285           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
37286           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
37287           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
37288           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
37289           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
37290           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
37291           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
37292           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
37293           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
37294           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
37295           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
37296           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
37297           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
37298           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
37299           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
37300           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
37301           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
37302           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
37303           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
37304           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
37305           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
37306           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
37307           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
37308           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
37309           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
37310           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
37311           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
37312           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
37313           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
37314           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
37315           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
37316           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
37317           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
37318           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
37319           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
37320           src/SALOMELocalTrace/BaseTraceCollector.cxx,
37321           src/SALOMELocalTrace/BaseTraceCollector.hxx,
37322           src/SALOMELocalTrace/FileTraceCollector.cxx,
37323           src/SALOMELocalTrace/FileTraceCollector.hxx,
37324           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
37325           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
37326           src/SALOMELocalTrace/LocalTraceCollector.cxx,
37327           src/SALOMELocalTrace/LocalTraceCollector.hxx,
37328           src/SALOMELocalTrace/Makefile.am,
37329           src/SALOMELocalTrace/utilities.h,
37330           src/SALOMELocalTrace/Test/Makefile.am,
37331           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
37332           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
37333           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
37334           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
37335           src/SALOMETraceCollector/Makefile.am,
37336           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
37337           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
37338           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
37339           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
37340           src/SALOMETraceCollector/Test/Makefile.am,
37341           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
37342           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
37343           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
37344           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
37345           src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
37346           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
37347           src/TestContainer/SALOME_TestComponentPy.py,
37348           src/TestContainer/SALOME_TestComponent_i.cxx,
37349           src/TestContainer/SALOME_TestComponent_i.hxx,
37350           src/TestContainer/TestComponentPy.py,
37351           src/TestContainer/TestContainer.cxx,
37352           src/TestContainer/TestLogger.cxx,
37353           src/TestContainer/TestLogger.py,
37354           src/TestMPIContainer/Makefile.am,
37355           src/TestMPIContainer/TestMPIComponentEngine.cxx,
37356           src/TestMPIContainer/TestMPIComponentEngine.hxx,
37357           src/TestMPIContainer/TestMPIContainer.cxx,
37358           src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
37359           src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
37360           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
37361           src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
37362           src/Utils/Utils_CommException.cxx,
37363           src/Utils/Utils_CommException.hxx,
37364           src/Utils/Utils_CorbaException.hxx,
37365           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
37366           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
37367           src/Utils/Utils_ExceptHandlers.cxx,
37368           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
37369           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
37370           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
37371           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
37372           src/Utils/Utils_SALOME_Exception.cxx,
37373           src/Utils/Utils_SALOME_Exception.hxx,
37374           src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
37375           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
37376           src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
37377           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
37378           src/Utils/Test/UtilsTest.hxx:
37379
37380         Join modifications from branch BR_DEBUG_3_2_0b1
37381
37382 2006-05-30 14:01  abd
37383
37384         * bin/runSalome.py:
37385
37386         [no log message]
37387
37388 2006-05-30 11:44  prascle
37389
37390         * doc/txt2html.sh:
37391
37392         PR: another one
37393
37394 2006-05-30 10:46  abd
37395
37396         * bin/appliskel/runRemote.sh:
37397
37398         fix comment in files after inserting copyrights
37399
37400 2006-05-30 10:24  abd
37401
37402         * bin/: appli_clean.sh, appli_install.sh, createAppli.sh, runNS.sh,
37403           appliskel/searchFreePort.sh, appliskel/setAppliPath.sh:
37404
37405         fix comment in files after inserting copyrights
37406
37407 2006-05-30 09:49  abd
37408
37409         * bin/: NSparam.py, addToKillList.py, envSalome.py, killSalome.py,
37410           killSalomeWithPort.py, runSalome.py, salomeConsole.py, showNS.py:
37411
37412         fix comment in .py filex after insertin copyrights
37413
37414 2006-05-29 15:56  mkr
37415
37416         * doc/salome/tui/Makefile.am:
37417
37418         Update build and install processes for GUI and TUI documentation.
37419
37420 2006-05-29 15:49  mkr
37421
37422         * doc/: Makefile.am, salome/KERNEL_index.html, salome/Makefile.am:
37423
37424         Update build and install processes for GUI and TUI documentation.
37425
37426 2006-05-29 15:01  vsr
37427
37428         * src/Makefile.am:
37429
37430         Fix KERNEL compilation problem in light mode (without CORBA) if cppunit package is installed (avoid compilation of CORBA-based tests)
37431
37432 2006-05-29 13:56  vsr
37433
37434         * src/: Makefile.am, UnitTests/Makefile.am,
37435           UnitTests/UnitTests.cxx:
37436
37437         Fix KERNEL compilation problem in light mode (without CORBA) if cppunit package is installed (avoid compilation of CORBA-based tests)
37438
37439 2006-05-29 12:15  abd
37440
37441         * src/: UnitTests/Makefile.am, UnitTests/UnitTests.cxx,
37442           UnitTests/UnitTests.py, Utils/Makefile.am, Utils/OpUtil.cxx,
37443           Utils/OpUtil.hxx, Utils/SALOME_utilities.py,
37444           Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
37445           Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
37446           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
37447           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
37448           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
37449           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
37450           Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
37451           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
37452           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
37453           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
37454           Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
37455           Utils/duplicate.cxx, Utils/Test/Makefile.am,
37456           Utils/Test/TestUtils.cxx, Utils/Test/TestUtils.py,
37457           Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx,
37458           Communication_SWIG/Makefile.am,
37459           Communication_SWIG/libSALOME_Comm.i:
37460
37461         Update Copyrights and Contacts
37462
37463 2006-05-29 12:12  abd
37464
37465         * src/: SALOMEDSImpl/Test/Makefile.am,
37466           SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
37467           SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
37468           SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
37469           SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
37470           SALOMELocalTrace/BaseTraceCollector.cxx,
37471           SALOMELocalTrace/BaseTraceCollector.hxx,
37472           SALOMELocalTrace/FileTraceCollector.cxx,
37473           SALOMELocalTrace/FileTraceCollector.hxx,
37474           SALOMELocalTrace/LocalTraceBufferPool.cxx,
37475           SALOMELocalTrace/LocalTraceBufferPool.hxx,
37476           SALOMELocalTrace/LocalTraceCollector.cxx,
37477           SALOMELocalTrace/LocalTraceCollector.hxx,
37478           SALOMELocalTrace/Makefile.am, SALOMELocalTrace/utilities.h,
37479           SALOMELocalTrace/Test/Makefile.am,
37480           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
37481           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
37482           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
37483           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
37484           SALOMETraceCollector/Makefile.am,
37485           SALOMETraceCollector/SALOMETraceCollector.cxx,
37486           SALOMETraceCollector/SALOMETraceCollector.hxx,
37487           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
37488           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
37489           SALOMETraceCollector/Test/Makefile.am,
37490           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
37491           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
37492           SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
37493           SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
37494           TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
37495           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
37496           TestContainer/SALOME_TestComponentPy.py,
37497           TestContainer/SALOME_TestComponent_i.cxx,
37498           TestContainer/SALOME_TestComponent_i.hxx,
37499           TestContainer/TestComponentPy.py,
37500           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
37501           TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
37502           TestMPIContainer/TestMPIComponentEngine.cxx,
37503           TestMPIContainer/TestMPIComponentEngine.hxx,
37504           TestMPIContainer/TestMPIContainer.cxx:
37505
37506         Update Copyrights and Contacts
37507
37508 2006-05-29 12:09  abd
37509
37510         * src/: Notification/CosNotifyShorthands.h,
37511           Notification/Makefile.am, Notification/NOTIFICATION.cxx,
37512           Notification/NOTIFICATION.hxx,
37513           Notification/NOTIFICATION_Consumer.cxx,
37514           Notification/NOTIFICATION_Consumer.hxx,
37515           Notification/NOTIFICATION_Supplier.cxx,
37516           Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.am,
37517           Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
37518           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
37519           Registry/SALOME_Registry_Server.cxx,
37520           ResourcesManager/Makefile.am,
37521           ResourcesManager/SALOME_LoadRateManager.cxx,
37522           ResourcesManager/SALOME_LoadRateManager.hxx,
37523           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
37524           ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
37525           ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
37526           ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
37527           ResourcesManager/SALOME_ResourcesManager.cxx,
37528           ResourcesManager/SALOME_ResourcesManager.hxx,
37529           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
37530           SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
37531           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
37532           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
37533           SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
37534           SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
37535           SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
37536           SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
37537           SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
37538           SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
37539           SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
37540           SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
37541           SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
37542           SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
37543           SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
37544           SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
37545           SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
37546           SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
37547           SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
37548           SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
37549           SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
37550           SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cdl,
37551           SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
37552           SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.cxx,
37553           SALOMEDS/SALOMEDS_AttributeComment.cxx,
37554           SALOMEDS/SALOMEDS_AttributeComment.hxx,
37555           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
37556           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
37557           SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
37558           SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
37559           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
37560           SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
37561           SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
37562           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
37563           SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
37564           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
37565           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
37566           SALOMEDS/SALOMEDS_AttributeFileType.cxx,
37567           SALOMEDS/SALOMEDS_AttributeFileType.hxx,
37568           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
37569           SALOMEDS/SALOMEDS_AttributeFlags.cxx,
37570           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
37571           SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
37572           SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
37573           SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
37574           SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
37575           SALOMEDS/SALOMEDS_AttributeIOR.cxx,
37576           SALOMEDS/SALOMEDS_AttributeIOR.hxx,
37577           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
37578           SALOMEDS/SALOMEDS_AttributeInteger.hxx,
37579           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
37580           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
37581           SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
37582           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
37583           SALOMEDS/SALOMEDS_AttributeName.cxx,
37584           SALOMEDS/SALOMEDS_AttributeName.hxx,
37585           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
37586           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
37587           SALOMEDS/SALOMEDS_AttributeOpened.cxx,
37588           SALOMEDS/SALOMEDS_AttributeOpened.hxx,
37589           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
37590           SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
37591           SALOMEDS/SALOMEDS_AttributeParameter.cxx,
37592           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
37593           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
37594           SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
37595           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
37596           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
37597           SALOMEDS/SALOMEDS_AttributePixMap.cxx,
37598           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
37599           SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
37600           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
37601           SALOMEDS/SALOMEDS_AttributeReal.cxx,
37602           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
37603           SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
37604           SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
37605           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
37606           SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
37607           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
37608           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
37609           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
37610           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
37611           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
37612           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
37613           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
37614           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
37615           SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
37616           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
37617           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
37618           SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
37619           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
37620           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
37621           SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
37622           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
37623           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
37624           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
37625           SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
37626           SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
37627           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
37628           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
37629           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
37630           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
37631           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
37632           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
37633           SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
37634           SALOMEDS/SALOMEDS_AttributeUserID.cxx,
37635           SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
37636           SALOMEDS/SALOMEDS_Attributes.hxx,
37637           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
37638           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
37639           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
37640           SALOMEDS/SALOMEDS_Callback_i.hxx,
37641           SALOMEDS/SALOMEDS_ChildIterator.cxx,
37642           SALOMEDS/SALOMEDS_ChildIterator.hxx,
37643           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
37644           SALOMEDS/SALOMEDS_Client.cxx,
37645           SALOMEDS/SALOMEDS_ClientAttributes.hxx,
37646           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
37647           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
37648           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
37649           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
37650           SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
37651           SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
37652           SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
37653           SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
37654           SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
37655           SALOMEDS/SALOMEDS_Driver_i.cxx,
37656           SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
37657           SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
37658           SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
37659           SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
37660           SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
37661           SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
37662           SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
37663           SALOMEDS/SALOMEDS_FileType.jxx,
37664           SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
37665           SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
37666           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
37667           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
37668           SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
37669           SALOMEDS/SALOMEDS_IORAttribute.cdl,
37670           SALOMEDS/SALOMEDS_IORAttribute.cxx,
37671           SALOMEDS/SALOMEDS_IORAttribute.ixx,
37672           SALOMEDS/SALOMEDS_IORAttribute.jxx,
37673           SALOMEDS/SALOMEDS_IParameters.cxx,
37674           SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
37675           SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
37676           SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
37677           SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
37678           SALOMEDS/SALOMEDS_OCAFApplication.cdl,
37679           SALOMEDS/SALOMEDS_OCAFApplication.cxx,
37680           SALOMEDS/SALOMEDS_OCAFApplication.ixx,
37681           SALOMEDS/SALOMEDS_OCAFApplication.jxx,
37682           SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
37683           SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
37684           SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
37685           SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
37686           SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
37687           SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
37688           SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
37689           SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
37690           SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
37691           SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
37692           SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
37693           SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
37694           SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
37695           SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
37696           SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
37697           SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
37698           SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
37699           SALOMEDS/SALOMEDS_SComponent.cxx,
37700           SALOMEDS/SALOMEDS_SComponentIterator.cxx,
37701           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
37702           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
37703           SALOMEDS/SALOMEDS_SComponent_i.hxx,
37704           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
37705           SALOMEDS/SALOMEDS_SObject_i.hxx,
37706           SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
37707           SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
37708           SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
37709           SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
37710           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
37711           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
37712           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
37713           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
37714           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
37715           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
37716           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
37717           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
37718           SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
37719           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
37720           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
37721           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
37722           SALOMEDS/SALOMEDS_StudyManager.cxx,
37723           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
37724           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
37725           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
37726           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
37727           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
37728           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
37729           SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
37730           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
37731           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
37732           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
37733           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
37734           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
37735           SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
37736           SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
37737           SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
37738           SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
37739           SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
37740           SALOMEDS/SALOMEDS_TargetAttribute.cdl,
37741           SALOMEDS/SALOMEDS_TargetAttribute.cxx,
37742           SALOMEDS/SALOMEDS_TargetAttribute.ixx,
37743           SALOMEDS/SALOMEDS_TargetAttribute.jxx,
37744           SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
37745           SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
37746           SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
37747           SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
37748           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
37749           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
37750           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
37751           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
37752           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
37753           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
37754           SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
37755           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
37756           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
37757           SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
37758           SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
37759           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
37760           SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
37761           SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
37762           SALOMEDS/Handle_SALOMEDS_FileType.hxx,
37763           SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
37764           SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
37765           SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
37766           SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
37767           SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
37768           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
37769           SALOMEDS/SALOMEDS_AttributeFlags.hxx,
37770           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
37771           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
37772           SALOMEDS/SALOMEDS_AttributeInteger.cxx,
37773           SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
37774           SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
37775           SALOMEDS/SALOMEDS_AttributeParameter.hxx,
37776           SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
37777           SALOMEDS/SALOMEDS_AttributePixMap.hxx,
37778           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
37779           SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
37780           SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
37781           SALOMEDS/SALOMEDS_AttributeReal.hxx,
37782           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
37783           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
37784           SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
37785           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
37786           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
37787           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
37788           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
37789           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
37790           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
37791           SALOMEDS/SALOMEDS_AttributeTarget.hxx,
37792           SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
37793           SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
37794           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
37795           SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
37796           SALOMEDS/SALOMEDS_AttributeUserID.hxx,
37797           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
37798           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
37799           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
37800           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
37801           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
37802           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
37803           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
37804           SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
37805           SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
37806           SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
37807           SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
37808           SALOMEDS/SALOMEDS_Driver_i.hxx,
37809           SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
37810           SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
37811           SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
37812           SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
37813           SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
37814           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
37815           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
37816           SALOMEDS/SALOMEDS_IORAttribute.hxx,
37817           SALOMEDS/SALOMEDS_IParameters.hxx,
37818           SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
37819           SALOMEDS/SALOMEDS_OCAFApplication.hxx,
37820           SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
37821           SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
37822           SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
37823           SALOMEDS/SALOMEDS_SAttribute_i.hxx,
37824           SALOMEDS/SALOMEDS_SComponent.hxx,
37825           SALOMEDS/SALOMEDS_SComponentIterator.hxx,
37826           SALOMEDS/SALOMEDS_SComponent_i.cxx,
37827           SALOMEDS/SALOMEDS_SObject_i.cxx,
37828           SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
37829           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
37830           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
37831           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
37832           SALOMEDS/SALOMEDS_StudyManager.hxx,
37833           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
37834           SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
37835           SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
37836           SALOMEDS/SALOMEDS_TargetAttribute.hxx,
37837           SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
37838           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
37839           SALOMEDS/SALOME_DriverPy.py, SALOMEDS/Test/Makefile.am,
37840           SALOMEDS/Test/SALOMEDSTest.cxx, SALOMEDS/Test/SALOMEDSTest.hxx,
37841           SALOMEDS/Test/TestSALOMEDS.cxx, SALOMEDS/Test/TestSALOMEDS.py,
37842           SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
37843           SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
37844           SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
37845           SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
37846           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
37847           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
37848           SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
37849           SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
37850           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
37851           SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
37852           SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
37853           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
37854           SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
37855           SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
37856           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
37857           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
37858           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
37859           SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
37860           SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
37861           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
37862           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
37863           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
37864           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
37865           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
37866           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
37867           SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
37868           SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
37869           SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
37870           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
37871           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
37872           SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
37873           SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
37874           SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
37875           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
37876           SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
37877           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
37878           SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
37879           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
37880           SALOMEDSClient/SALOMEDSClient_Study.hxx,
37881           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
37882           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
37883           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
37884           SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
37885           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
37886           SALOMEDSImpl/Makefile.am,
37887           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
37888           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
37889           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
37890           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
37891           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
37892           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
37893           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
37894           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
37895           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
37896           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
37897           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
37898           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
37899           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
37900           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
37901           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
37902           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
37903           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
37904           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
37905           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
37906           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
37907           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
37908           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
37909           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
37910           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
37911           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
37912           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
37913           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
37914           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
37915           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
37916           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
37917           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
37918           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
37919           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
37920           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
37921           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
37922           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
37923           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
37924           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
37925           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
37926           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
37927           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
37928           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
37929           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
37930           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
37931           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
37932           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
37933           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
37934           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
37935           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
37936           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
37937           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
37938           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
37939           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
37940           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
37941           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
37942           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
37943           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
37944           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
37945           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
37946           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
37947           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
37948           SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
37949           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
37950           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
37951           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
37952           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
37953           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
37954           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
37955           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
37956           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
37957           SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
37958           SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
37959           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
37960           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
37961           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
37962           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
37963           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
37964           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
37965           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
37966           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
37967           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
37968           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
37969           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
37970           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
37971           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
37972           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
37973           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
37974           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
37975           SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
37976           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
37977           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
37978           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
37979           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
37980           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
37981           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
37982           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
37983           SALOMEDSImpl/testDS.cxx:
37984
37985         Update Copyrights and Contacts
37986
37987 2006-05-29 12:06  abd
37988
37989         * src/: LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
37990           LifeCycleCORBA_SWIG/Test/Makefile.am,
37991           LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
37992           Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
37993           Logger/SALOME_Logger_Server.hxx,
37994           Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
37995           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
37996           Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
37997           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
37998           MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
37999           MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
38000           ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
38001           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
38002           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
38003           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
38004           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
38005           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
38006           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
38007           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
38008           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
38009           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
38010           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
38011           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
38012           ModuleCatalog/SALOME_TestModuleCatalog.py,
38013           ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
38014           ModuleGenerator/tests/Truc2Component.idl,
38015           ModuleGenerator/tests/TrucComponent.idl,
38016           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
38017           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
38018           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
38019           NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
38020           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
38021           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
38022           NamingService/Makefile.am,
38023           NamingService/NamingService_WaitForServerReadiness.cxx,
38024           NamingService/NamingService_WaitForServerReadiness.hxx,
38025           NamingService/SALOME_NamingService.cxx,
38026           NamingService/SALOME_NamingService.hxx,
38027           NamingService/SALOME_NamingService.i,
38028           NamingService/SALOME_NamingServicePy.py,
38029           NamingService/ServiceUnreachable.cxx,
38030           NamingService/ServiceUnreachable.hxx,
38031           NamingService/Test/Makefile.am,
38032           NamingService/Test/NamingServiceTest.cxx,
38033           NamingService/Test/NamingServiceTest.hxx,
38034           NamingService/Test/TestNamingService.cxx,
38035           NamingService/Test/TestNamingService.py:
38036
38037         Update Copyrights and Contacts
38038
38039 2006-05-29 12:03  abd
38040
38041         * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
38042           Communication/MatrixClient.hxx,
38043           Communication/MultiCommException.cxx,
38044           Communication/MultiCommException.hxx, Communication/Receiver.cxx,
38045           Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
38046           Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
38047           Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
38048           Communication/SALOMEMultiComm.hxx,
38049           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
38050           Communication/SALOME_Matrix_i.cxx,
38051           Communication/SALOME_Matrix_i.hxx,
38052           Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
38053           Communication/libSALOME_Comm.i, Container/Component_i.cxx,
38054           Container/Container_i.cxx, Container/Container_init_python.cxx,
38055           Container/Container_init_python.hxx, Container/Makefile.am,
38056           Container/SALOME_ComponentPy.py,
38057           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
38058           Container/SALOME_Container.py,
38059           Container/SALOME_ContainerManager.cxx,
38060           Container/SALOME_ContainerManager.hxx,
38061           Container/SALOME_ContainerManagerServer.cxx,
38062           Container/SALOME_ContainerPy.py,
38063           Container/SALOME_Container_SignalsHandler.cxx,
38064           Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
38065           Container/SALOME_FileRef_i.hxx,
38066           Container/SALOME_FileTransfer_i.cxx,
38067           Container/SALOME_FileTransfer_i.hxx, GenericObj/Makefile.am,
38068           GenericObj/SALOME_GenericObj_i.cc,
38069           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
38070           HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
38071           HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
38072           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
38073           HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
38074           HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
38075           HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
38076           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
38077           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
38078           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
38079           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
38080           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
38081           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
38082           HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
38083           HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
38084           HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
38085           HDFPersist/HDFexplorer.hxx, HDFPersist/HDFfile.cc,
38086           HDFPersist/HDFfile.hxx, HDFPersist/HDFfileClose.c,
38087           HDFPersist/HDFfileCreate.c, HDFPersist/HDFfileMount.c,
38088           HDFPersist/HDFfileOpen.c, HDFPersist/HDFfileUmount.c,
38089           HDFPersist/HDFgroup.cc, HDFPersist/HDFgroup.hxx,
38090           HDFPersist/HDFgroupClose.c, HDFPersist/HDFgroupCreate.c,
38091           HDFPersist/HDFgroupOpen.c, HDFPersist/HDFinternalObject.cc,
38092           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
38093           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
38094           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
38095           HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
38096           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
38097           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
38098           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
38099           KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
38100           KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
38101           KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
38102           KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
38103           KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
38104           KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
38105           KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
38106           LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
38107           LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
38108           LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
38109           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
38110           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
38111           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
38112           LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
38113           LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
38114           LifeCycleCORBA/Test/Makefile.am,
38115           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
38116           LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
38117           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
38118           LifeCycleCORBA_SWIG/Makefile.am,
38119           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
38120           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
38121
38122         Update Copyrights and Contacts
38123
38124 2006-05-29 11:58  abd
38125
38126         * idl/Logger.idl, idl/Makefile.am, idl/SALOMEDS.idl,
38127           idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
38128           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
38129           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
38130           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
38131           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
38132           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
38133           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
38134           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
38135           idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
38136           salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
38137           salome_adm/unix/pythonbe.py,
38138           salome_adm/unix/config_files/Makefile.am, src/Makefile.am,
38139           src/Basics/BasicsGenericDestructor.cxx,
38140           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
38141           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am:
38142
38143         Update Copyrights and Contacts
38144
38145 2006-05-29 11:55  abd
38146
38147         * DEPRECATED/Makefile.in, Makefile.am, bin/Makefile.am,
38148           bin/NSparam.py, bin/addToKillList.py, bin/appli_clean.sh,
38149           bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
38150           bin/killSalome.py, bin/killSalomeWithPort.py,
38151           bin/launchConfigureParser.py, bin/orbmodule.py, bin/runNS.sh,
38152           bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
38153           bin/showNS.py, bin/virtual_salome.py, bin/appliskel/runRemote.sh,
38154           bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
38155           doc/Makefile.am, doc/txt2html.sh,
38156           doc/configuration_examples/example_prerequis.sh,
38157           doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
38158           doc/salome/tui/pythfilter.py:
38159
38160         Update Copyrights and Contacts
38161
38162 2006-05-26 10:28  vsr
38163
38164         * salome_adm/unix/DEPRECATED/make_module.in:
38165
38166         SALOME versioning system improvement
38167
38168 2006-05-26 09:06  vsr
38169
38170         * salome_adm/unix/DEPRECATED/make_module.in:
38171
38172         SALOME versioning system improvement
38173
38174 2006-05-25 16:34  vsr
38175
38176         * salome_adm/unix/DEPRECATED/make_conclude.in:
38177
38178         SALOME versioning system improvement
38179
38180 2006-05-25 15:27  enk
38181
38182         * salome_adm/unix/config_files/check_boost.m4,
38183           salome_adm/unix/config_files/DEPRECATED/config.sub,
38184           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
38185           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx:
38186
38187         Porting to 64bit platform
38188
38189 2006-05-25 11:02  vsr
38190
38191         * README:
38192
38193         SALOME versioning system improvement:
38194         1) Add KERNEL_version.h file
38195         2) Remove version numbers duplication
38196         3) Provide Python script to get version number
38197
38198 2006-05-25 10:52  vsr
38199
38200         * INSTALL, KERNEL_version.h.in, Makefile.am, configure.ac,
38201           DEPRECATED/configure.in.base, bin/VERSION, bin/VERSION.in,
38202           doc/salome/tui/Makefile.am, resources/CatalogResources.xml,
38203           resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
38204           resources/KERNELCatalog.xml.in, src/KERNEL_PY/Makefile.am,
38205           src/KERNEL_PY/salome_version.py:
38206
38207         SALOME versioning system improvement:
38208         1) Add KERNEL_version.h file
38209         2) Remove version numbers duplication
38210         3) Provide Python script to get version number
38211
38212 2006-05-25 06:23  abd
38213
38214         * bin/runSalome.py,
38215           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
38216
38217         Updare for path with space
38218
38219 2006-05-24 19:59  prascle
38220
38221         * idl/SALOME_Component.idl, doc/KERNEL_Services.txt,
38222           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
38223
38224         PR: doc improvement (in progress)
38225
38226 2006-05-24 16:38  prascle
38227
38228         * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
38229           UnitTests.txt, index.txt, kernel_resources.txt, userguide.txt:
38230
38231         PR: doc improvement (in progress)
38232
38233 2006-05-24 14:34  prascle
38234
38235         * doc/salome/tui/Makefile.am, doc/INSTALL.txt,
38236           doc/KERNEL_Services.txt, doc/Makefile.am,
38237           doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
38238           doc/kernel_resources.txt, doc/rst.css, doc/userguide.txt,
38239           configure.ac:
38240
38241         PR: doc improvement (in progress)
38242
38243 2006-05-24 13:44  abd
38244
38245         * bin/runSalome.py:
38246
38247         Updare for path with space
38248
38249 2006-05-24 11:59  vsr
38250
38251         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
38252
38253         Modify version number : 3.2.0
38254
38255 2006-05-23 12:37  abd
38256
38257         * bin/runSalome.py, src/Utils/Utils_Identity.py:
38258
38259         PyHello execution
38260
38261 2006-05-23 11:15  prascle
38262
38263         * salome_adm/unix/SALOMEconfig.h.in:
38264
38265         PR: previous correction of bug 12461 was incompatible with other modules
38266
38267 2006-05-23 10:27  prascle
38268
38269         * salome_adm/unix/Makefile.am, clean_configure,
38270           salome_adm/unix/SALOMEconfig.ref.in:
38271
38272         PR: previous correction of bug 12461 was incompatible with other modules
38273
38274 2006-05-22 18:06  prascle
38275
38276         * Makefile.am, clean_configure, configure.ac,
38277           salome_adm/unix/Makefile.am:
38278
38279         BUG 12461: avoid unnecessary recompilations after build_configure
38280
38281 2006-05-19 09:21  prascle
38282
38283         * bin/Makefile.am:
38284
38285         PR: Bug 12159 (reinstall in red only mode)
38286
38287 2006-05-19 09:16  prascle
38288
38289         * src/Container/SALOME_ComponentPy.py:
38290
38291         PR: Bug 6709: method _get_interfaceName not implemented in SALOME_ComponentPy_i
38292
38293 2006-05-16 16:26  ouv
38294
38295         * src/NOTIFICATION_SWIG/: NOTIFICATION.i, NOTIFICATION_Swig.hxx,
38296           SALOME_NOTIFICATION_SWIG.hxx:
38297
38298         Windows porting.
38299
38300 2006-05-16 09:26  ptv
38301
38302         * bin/killSalomeWithPort.py, bin/nameserver.py, bin/runNS.py,
38303           bin/runSalome.py, src/TestContainer/TestComponentPy.py:
38304
38305         use specila function from Util_Identity to get name of host
38306
38307 2006-05-12 09:06  ptv
38308
38309         * src/KERNEL_PY/salome_shared_modules.py,
38310           bin/launchConfigureParser.py, bin/setenv.py:
38311
38312         correct after SWP12334
38313
38314 2006-05-12 08:48  ptv
38315
38316         * src/KERNEL_PY/: salome_shared_modules.py:
38317
38318         correct after SWP12334
38319
38320 2006-05-11 14:16  ptv
38321
38322         * bin/setenv.py:
38323
38324         win32 porting for libraries and scripts
38325
38326 2006-05-11 09:17  prascle
38327
38328         * src/ResourcesManager/SALOME_ResourcesManager.cxx, bin/runSalome:
38329
38330         PR: patch from Sergey Mozokhin (remote containers without SALOME APPLI)
38331
38332 2006-05-06 10:04  jfa
38333
38334         * INSTALL, README, build_configure, configure.ac,
38335           DEPRECATED/configure.in.base, bin/Makefile.am, bin/VERSION,
38336           bin/appli_clean.sh, bin/appli_install.sh,
38337           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
38338           bin/runSalome, bin/runSalome.ksh, bin/runSalome.py,
38339           bin/salomeConsole.py, bin/salome_session.py,
38340           bin/virtual_salome.py, bin/appliskel/runAppli,
38341           bin/appliskel/runConsole, bin/appliskel/runSession,
38342           bin/appliskel/runTests, doc/SALOME_Application.txt,
38343           doc/UnitTests.txt, doc/salome/Makefile.am,
38344           doc/salome/gui/Makefile.am, doc/salome/tui/Makefile.am,
38345           idl/Makefile.am, idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
38346           idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Session.idl,
38347           idl/SALOME_TestModuleCatalog.idl,
38348           resources/Application-About.png, resources/Application-Logo.png,
38349           resources/Application-Splash.png, resources/CatalogResources.xml,
38350           resources/KERNELCatalog.xml, resources/Makefile.am,
38351           resources/back.xpm, resources/cascade.png, resources/close.png,
38352           resources/copy.png, resources/default.png,
38353           resources/dl_delete.png, resources/dl_insert.png,
38354           resources/dl_movedown.png, resources/dl_moveup.png,
38355           resources/forward.xpm, resources/help.png, resources/home.xpm,
38356           resources/new.png, resources/open.png, resources/paste.png,
38357           resources/plot2d_dump.png, resources/plot2d_fitall.png,
38358           resources/plot2d_fitarea.png, resources/plot2d_legend.png,
38359           resources/plot2d_linear.png, resources/plot2d_linear_y.png,
38360           resources/plot2d_lines.png, resources/plot2d_log.png,
38361           resources/plot2d_log_y.png, resources/plot2d_pan.png,
38362           resources/plot2d_points.png, resources/plot2d_settings.png,
38363           resources/plot2d_splines.png, resources/plot2d_zoom.png,
38364           resources/print.png, resources/redo.png, resources/reset.png,
38365           resources/salomeCommonModel.spml, resources/save.png,
38366           resources/select1.png, resources/tile.png, resources/uc_add.png,
38367           resources/uc_clear.png, resources/uc_current.png,
38368           resources/uc_del.png, resources/uc_new.png, resources/undo.png,
38369           resources/view_back.png, resources/view_bottom.png,
38370           resources/view_camera_dump.png, resources/view_fitall.png,
38371           resources/view_fitarea.png, resources/view_front.png,
38372           resources/view_glpan.png, resources/view_left.png,
38373           resources/view_pan.png, resources/view_reset.png,
38374           resources/view_right.png, resources/view_rotate.png,
38375           resources/view_top.png, resources/view_triedre.png,
38376           resources/view_zoom.png, salome_adm/unix/make_common_starter.am,
38377           salome_adm/unix/DEPRECATED/make_commence.in,
38378           salome_adm/unix/DEPRECATED/make_conclude.in,
38379           salome_adm/unix/config_files/ac_linker_options.m4,
38380           salome_adm/unix/config_files/check_Kernel.m4,
38381           salome_adm/unix/config_files/check_htmlgen.m4,
38382           salome_adm/unix/config_files/check_opengl.m4,
38383           salome_adm/unix/config_files/check_qt.m4,
38384           salome_adm/unix/config_files/production.m4,
38385           salome_adm/unix/config_files/python.m4, src/Makefile.am,
38386           src/Basics/Makefile.am, src/Communication/Makefile.am,
38387           src/Communication/MatrixClient.cxx,
38388           src/Communication/MatrixClient.hxx,
38389           src/Communication/SALOME_Matrix_i.cxx,
38390           src/Communication/SALOME_Matrix_i.hxx,
38391           src/Communication_SWIG/Makefile.am,
38392           src/Communication_SWIG/libSALOME_Comm.i,
38393           src/Container/Container_i.cxx, src/Container/Makefile.am,
38394           src/Container/SALOME_ComponentPy.py,
38395           src/Container/SALOME_Container_i.hxx,
38396           src/Container/SALOME_FileRef_i.cxx,
38397           src/Container/SALOME_FileRef_i.hxx,
38398           src/Container/SALOME_FileTransfer_i.cxx,
38399           src/Container/SALOME_FileTransfer_i.hxx,
38400           src/KERNEL_PY/iparameters.py, src/KERNEL_PY/salome.py,
38401           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
38402           src/KERNEL_PY/salome_test.py, src/LifeCycleCORBA/Launchers.cxx,
38403           src/LifeCycleCORBA/Launchers.hxx,
38404           src/LifeCycleCORBA/Launchers.py, src/LifeCycleCORBA/Makefile.am,
38405           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
38406           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
38407           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
38408           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
38409           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
38410           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
38411           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
38412           src/LifeCycleCORBA_SWIG/Makefile.am,
38413           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
38414           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
38415           src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
38416           src/LifeCycleCORBA_SWIG/Test/Makefile.am,
38417           src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
38418           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
38419           src/SALOMEDS/SALOMEDS_IParameters.cxx,
38420           src/SALOMEDS/SALOMEDS_IParameters.hxx,
38421           src/SALOMEDS/SALOMEDS_SComponent.cxx,
38422           src/SALOMEDS/SALOMEDS_SObject.cxx,
38423           src/SALOMEDS/SALOMEDS_SObject.hxx,
38424           src/SALOMEDS/SALOMEDS_Study.cxx,
38425           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
38426           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
38427           src/SALOMEDSClient/Makefile.am,
38428           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
38429           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
38430           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
38431           src/SALOMEDSImpl/Makefile.am,
38432           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
38433           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
38434           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
38435           src/Utils/Utils_SALOME_Exception.hxx:
38436
38437         Join modifications from branch BR_PR_V320b1
38438
38439 2006-05-06 07:47  vsr
38440
38441         * bin/launchConfigureParser.py:
38442
38443         Improve launchConfigureParser.py script (modules configurating process):
38444         - correct a method to find nearest user configuration file (version_id());
38445         - print "Warning" message instead of "Error" if some configuration file is not found.
38446
38447 2006-05-05 15:37  abd
38448
38449         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
38450
38451         IMP SWP12334
38452         New project structure. Detail description see in bug attachments
38453
38454 2006-05-05 15:34  abd
38455
38456         * bin/nameserver.py, bin/runSalome.py, bin/setenv.py,
38457           src/Communication/Receivers.cxx,
38458           src/Communication/SALOME_Comm_i.cxx,
38459           src/Container/SALOME_Container_SignalsHandler.cxx,
38460           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
38461           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
38462           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
38463           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
38464
38465         IMP SWP12334
38466         New project structure. Detail description see in bug attachments
38467
38468 2006-05-05 14:27  asv
38469
38470         * src/SALOMEDS/SALOMEDS_IParameters.cxx:
38471
38472         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.
38473         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.
38474
38475 2006-05-05 09:55  ptv
38476
38477         * src/KERNEL_PY/salome_shared_modules.py:
38478
38479         remove excess debug print
38480
38481 2006-05-05 08:55  ptv
38482
38483         * src/: KERNEL_PY/import_hook.py,
38484           KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/salome.py,
38485           KERNEL_PY/salome_shared_modules.py,
38486           Container/SALOME_ContainerPy.py:
38487
38488         use omnipatch for tests on WIN32
38489
38490 2006-05-03 15:36  eap
38491
38492         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
38493
38494         fix bug 11933. Adaptation of the script produced by DumpPython functionality to TUI mode execution: "salome.salome_init()" added
38495
38496 2006-05-03 13:28  abd
38497
38498         * src/TOOLSDS/SALOMEDS_Tool.cxx:
38499
38500         Fix bug SWP12334
38501
38502 2006-04-28 16:14  abd
38503
38504         * resources/: Application-About.png, Application-Logo.png,
38505           Application-Splash.png, cascade.png, close.png, copy.png,
38506           default.png, dl_delete.png, dl_insert.png, dl_movedown.png,
38507           dl_moveup.png, help.png, new.png, open.png, paste.png,
38508           plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
38509           plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
38510           plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
38511           plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
38512           plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
38513           reset.png, save.png, select1.png, tile.png, uc_add.png,
38514           uc_clear.png, uc_current.png, uc_del.png, uc_new.png, undo.png,
38515           view_back.png, view_bottom.png, view_camera_dump.png,
38516           view_fitall.png, view_fitarea.png, view_front.png,
38517           view_glpan.png, view_left.png, view_pan.png, view_reset.png,
38518           view_right.png, view_rotate.png, view_top.png, view_triedre.png,
38519           view_zoom.png:
38520
38521         Add icons as bynary files
38522
38523 2006-04-28 16:12  abd
38524
38525         * resources/: Application-About.png, Application-Logo.png,
38526           Application-Splash.png, cascade.png, close.png, copy.png,
38527           default.png, dl_delete.png, dl_insert.png, dl_movedown.png,
38528           dl_moveup.png, help.png, new.png, open.png, paste.png,
38529           plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
38530           plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
38531           plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
38532           plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
38533           plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
38534           reset.png, save.png, select1.png, tile.png, uc_add.png,
38535           uc_clear.png, uc_current.png, uc_del.png, uc_new.png, undo.png,
38536           view_back.png, view_bottom.png, view_camera_dump.png,
38537           view_fitall.png, view_fitarea.png, view_front.png,
38538           view_glpan.png, view_left.png, view_pan.png, view_reset.png,
38539           view_right.png, view_rotate.png, view_top.png, view_triedre.png,
38540           view_zoom.png:
38541
38542         Remove text format of icons
38543
38544 2006-04-28 11:58  prascle
38545
38546         * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
38547
38548         PR: patch from Sergey Mozokhin
38549
38550 2006-04-28 08:38  ptv
38551
38552         * bin/: nameserver.py, killSalomeWithPort.py,
38553           launchConfigureParser.py, orbmodule.py, runSalome.py,
38554           salomeConsole.py, server.py:
38555
38556         wnt adopted version of runSalome and killSalome scripts
38557
38558 2006-04-27 14:19  abd
38559
38560         * src/KERNEL_PY/salome_shared_modules.py:
38561
38562         temprorary fix of shared modules
38563
38564 2006-04-26 12:37  abd
38565
38566         * idl/SALOME_Session.idl:
38567
38568         Move SALOME_Session.idl from GUI_SRC/idl to KERNEL_SRC/idl.
38569
38570 2006-04-21 17:23  prascle
38571
38572         * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
38573
38574         PR: improve trace info
38575
38576 2006-04-21 16:54  prascle
38577
38578         * bin/salome_session.py:
38579
38580         PR: salome_session does not work on distributed computers
38581
38582 2006-04-21 14:34  abd
38583
38584         * src/: SALOMEDS/SALOMEDS_SObject.cxx, Utils/Utils_ORB_INIT.hxx:
38585
38586         [no log message]
38587
38588 2006-04-20 23:44  prascle
38589
38590         * src/LifeCycleCORBA_SWIG/: TestLifeCycleCORBA.py,
38591           libSALOME_LifeCycleCORBA.i:
38592
38593         PR: swig for file transfer
38594
38595 2006-04-20 21:43  prascle
38596
38597         * idl/Makefile.am:
38598
38599         PR: remove unused files
38600
38601 2006-04-20 21:40  prascle
38602
38603         * configure.ac:
38604
38605         PR: remove unused files
38606
38607 2006-04-20 21:24  prascle
38608
38609         * resources/channel.cfg, idl/SALOME_DataTypeCatalog.idl:
38610
38611         PR: remove unused files
38612
38613 2006-04-20 21:18  prascle
38614
38615         * resources/: Application-About.png, Application-Logo.png,
38616           Application-Splash.png, back.xpm, cascade.png, channel.cfg,
38617           close.png, config, copy.png, default.png, dl_delete.png,
38618           dl_insert.png, dl_movedown.png, dl_moveup.png, forward.xpm,
38619           help.png, home.xpm, new.png, open.png, paste.png,
38620           plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
38621           plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
38622           plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
38623           plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
38624           plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
38625           reset.png, salomeCommonModel.spml, save.png, select1.png,
38626           tile.png, uc_add.png, uc_clear.png, uc_current.png, uc_del.png,
38627           uc_new.png, undo.png, view_back.png, view_bottom.png,
38628           view_camera_dump.png, view_fitall.png, view_fitarea.png,
38629           view_front.png, view_glpan.png, view_left.png, view_pan.png,
38630           view_reset.png, view_right.png, view_rotate.png, view_top.png,
38631           view_triedre.png, view_zoom.png:
38632
38633         PR: remove unused files
38634
38635 2006-04-20 21:12  prascle
38636
38637         * src/LifeCycleCORBA/: Launchers.cxx, Launchers.hxx, Launchers.py:
38638
38639         PR: remove unused files
38640
38641 2006-04-20 21:10  prascle
38642
38643         * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
38644           src/Container/Makefile.am, src/Container/SALOME_Container_i.hxx,
38645           src/Container/SALOME_FileRef_i.cxx,
38646           src/Container/SALOME_FileRef_i.hxx,
38647           src/Container/SALOME_FileTransfer_i.cxx,
38648           src/Container/SALOME_FileTransfer_i.hxx,
38649           src/LifeCycleCORBA/Makefile.am,
38650           src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
38651           src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
38652           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
38653           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
38654           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
38655           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
38656           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx:
38657
38658         PR: add service for large file transfer via CORBA
38659
38660 2006-04-20 13:06  jfa
38661
38662         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
38663
38664         Change version name to 2.2.9
38665
38666 2006-04-20 10:19  prascle
38667
38668         * bin/appliskel/runTests:
38669
38670         PR: bash required on linux
38671
38672 2006-04-20 10:19  prascle
38673
38674         * bin/appli_install.sh:
38675
38676         PR: add missing links
38677
38678 2006-04-19 17:29  san
38679
38680         * bin/runSalome.py:
38681
38682         PYTHONBIN variable used
38683
38684 2006-04-19 16:16  prascle
38685
38686         * bin/launchConfigureParser.py:
38687
38688         PR: modification from Vadim Sandler, modules configuration improvement
38689
38690 2006-04-19 13:16  san
38691
38692         * src/LifeCycleCORBA/LifeCycleCORBA.py:
38693
38694         Obsolete script removed
38695
38696 2006-04-19 12:11  srn
38697
38698         * bin/runSalome.py:
38699
38700         BugID: 12199. Move a following line:
38701         session=clt.waitNSPID("/Kernel/Session",mySessionServ.PID,SALOME.Session)
38702         after launching the CPP, Py and Supervision containers
38703
38704 2006-04-18 16:55  san
38705
38706         * bin/runSalome.py:
38707
38708         Debug version of python executable used in debug mode
38709
38710 2006-04-18 16:24  prascle
38711
38712         * src/Communication/Makefile.am,
38713           src/Communication/MatrixClient.cxx,
38714           src/Communication/MatrixClient.hxx,
38715           src/Communication/SALOME_Matrix_i.cxx,
38716           src/Communication/SALOME_Matrix_i.hxx,
38717           src/Communication_SWIG/Makefile.am,
38718           src/Communication_SWIG/libSALOME_Comm.i, idl/SALOME_Comm.idl:
38719
38720         PR: add matrix type
38721
38722 2006-04-18 16:24  prascle
38723
38724         * src/Makefile.am:
38725
38726         PR: remove unnecessary directories
38727
38728 2006-04-18 16:23  prascle
38729
38730         * resources/Makefile.am:
38731
38732         PR: remove unnecessary files
38733
38734 2006-04-18 16:22  prascle
38735
38736         * bin/Makefile.am, idl/Makefile.am:
38737
38738         PR: remove unnecessary file
38739
38740 2006-04-18 16:21  prascle
38741
38742         * README:
38743
38744         PR: update comment
38745
38746 2006-04-18 16:20  prascle
38747
38748         * src/Basics/Makefile.am:
38749
38750         PR: merge from OCC_debug_for_3_2_0b1_18avr06
38751
38752 2006-04-18 16:17  prascle
38753
38754         * resources/CatalogResources.xml, resources/KERNELCatalog.xml,
38755           salome_adm/unix/make_common_starter.am,
38756           salome_adm/unix/DEPRECATED/make_commence.in,
38757           salome_adm/unix/DEPRECATED/make_conclude.in,
38758           salome_adm/unix/config_files/check_Kernel.m4,
38759           salome_adm/unix/config_files/check_qt.m4,
38760           salome_adm/unix/config_files/python.m4:
38761
38762         PR: merge from OCC_debug_for_3_2_0b1_18avr06
38763
38764 2006-04-18 16:12  prascle
38765
38766         * INSTALL, DEPRECATED/configure.in.base, bin/VERSION:
38767
38768         PR: merge from OCC_debug_for_3_2_0b1_18avr06
38769
38770 2006-04-18 10:28  prascle
38771
38772         * doc/UnitTests.txt:
38773
38774         PR: work on doc
38775
38776 2006-04-18 10:26  prascle
38777
38778         * bin/: runSalome, runSalome.ksh:
38779
38780         PR: clean comments
38781
38782 2006-04-17 17:24  san
38783
38784         * src/: Container/SALOME_ContainerPy.py,
38785           KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/salome.py,
38786           KERNEL_PY/salome_shared_modules.py:
38787
38788         Not using omnipatch on Win32
38789
38790 2006-04-14 16:03  apo
38791
38792         * salome_adm/unix/DEPRECATED/make_conclude.in:
38793
38794         Porting on Mandriva 64 (to unify libdir usage)
38795
38796 2006-04-14 15:30  apo
38797
38798         * DEPRECATED/configure.in.base,
38799           salome_adm/unix/make_common_starter.am,
38800           salome_adm/unix/DEPRECATED/make_commence.in,
38801           salome_adm/unix/DEPRECATED/make_conclude.in,
38802           salome_adm/unix/config_files/check_Kernel.m4,
38803           salome_adm/unix/config_files/check_qt.m4, src/Basics/Makefile.am:
38804
38805         Porting on Mandriva 64 (to unify libdir usage)
38806
38807 2006-04-13 09:54  mpv
38808
38809         * salome_adm/unix/config_files/python.m4:
38810
38811         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".
38812
38813 2006-04-12 15:52  san
38814
38815         * src/Utils/Utils_Identity.py:
38816
38817         Win32 correction
38818
38819 2006-04-12 15:31  san
38820
38821         * bin/runNS.py:
38822
38823         runNS.sh replaced with a cross-platform runNS.py
38824
38825 2006-04-12 11:26  jfa
38826
38827         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
38828           resources/KERNELCatalog.xml:
38829
38830         Change version name to 3.2.0b1
38831
38832 2006-04-12 10:53  prascle
38833
38834         * bin/: appli_install.sh, virtual_salome.py:
38835
38836         PR: application install improvment
38837
38838 2006-04-12 10:52  prascle
38839
38840         * salome_adm/unix/config_files/check_opengl.m4:
38841
38842         PR: merge from branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_11avr06
38843
38844 2006-04-12 10:48  prascle
38845
38846         * configure.ac, idl/SALOME_TestModuleCatalog.idl:
38847
38848         PR: merge from branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_11avr06
38849
38850 2006-04-11 07:10  mpv
38851
38852         * configure.ac:
38853
38854         in case when CORBA using is disabled (light configuration) python product is excluded from list of mandatory products
38855
38856 2006-04-10 16:05  prascle
38857
38858         * configure.ac, bin/runSalome.py, doc/salome/Makefile.am,
38859           doc/salome/gui/Makefile.am, idl/Makefile.am,
38860           idl/SALOME_Session.idl,
38861           salome_adm/unix/config_files/ac_linker_options.m4,
38862           salome_adm/unix/config_files/check_opengl.m4,
38863           salome_adm/unix/config_files/check_qt.m4,
38864           salome_adm/unix/config_files/production.m4,
38865           salome_adm/unix/config_files/python.m4,
38866           src/Container/SALOME_ComponentPy.py,
38867           src/KERNEL_PY/iparameters.py, src/KERNEL_PY/salome_test.py,
38868           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
38869           src/SALOMEDSImpl/Makefile.am:
38870
38871         PR: mergefrom branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_07apr06
38872
38873 2006-04-10 16:01  mkr
38874
38875         * idl/SALOME_TestModuleCatalog.idl:
38876
38877         Fix incorrect execution of Addition function from AddComponent.
38878
38879 2006-04-10 08:00  apo
38880
38881         * salome_adm/unix/config_files/check_opengl.m4:
38882
38883         To improve the check
38884
38885 2006-04-07 16:08  jfa
38886
38887         * configure.ac, doc/salome/Makefile.am, doc/salome/gui/Makefile.am:
38888
38889         Remove gui documentation from KERNEL as it is present in GUI.
38890
38891 2006-04-07 16:07  jfa
38892
38893         * idl/: Makefile.am, SALOME_Session.idl:
38894
38895         Move SALOME_Session.idl from GUI_SRC/idl to KERNEL_SRC/idl.
38896
38897 2006-04-07 13:37  apo
38898
38899         * salome_adm/unix/config_files/ac_linker_options.m4,
38900           salome_adm/unix/config_files/check_opengl.m4,
38901           salome_adm/unix/config_files/check_qt.m4,
38902           salome_adm/unix/config_files/production.m4,
38903           salome_adm/unix/config_files/python.m4,
38904           salome_adm/unix/config_files/DEPRECATED/config.sub,
38905           src/SALOMEDS/Makefile.am, src/SALOMEDSImpl/Makefile.am:
38906
38907         Porting on Mandriva 64
38908
38909 2006-04-07 10:20  srn
38910
38911         * src/KERNEL_PY/iparameters.py:
38912
38913         Added comments to IParameters interface
38914
38915 2006-04-06 13:48  abd
38916
38917         * bin/launchConfigureParser.py:
38918
38919         Temprorary fix
38920
38921 2006-04-06 12:57  apo
38922
38923         * salome_adm/unix/config_files/ac_linker_options.m4,
38924           salome_adm/unix/config_files/check_opengl.m4,
38925           salome_adm/unix/config_files/check_qt.m4,
38926           salome_adm/unix/config_files/production.m4,
38927           salome_adm/unix/config_files/python.m4,
38928           salome_adm/unix/config_files/DEPRECATED/config.sub,
38929           src/SALOMEDS/Makefile.am, src/SALOMEDSImpl/Makefile.am:
38930
38931         Porting on Mandriva 64 (without libtool modifications)
38932
38933 2006-04-06 10:38  apo
38934
38935         * salome_adm/unix/config_files/DEPRECATED/config.sub:
38936
38937         Mandriva 64 porting
38938
38939 2006-04-05 15:12  apo
38940
38941         * salome_adm/unix/DEPRECATED/make_conclude.in:
38942
38943         Porting on Mandriva 64 (use libtool way as much as possible)
38944
38945 2006-04-05 14:54  srn
38946
38947         * bin/runSalome.py:
38948
38949         BugID: 12080, moved showing of a splash to beging of startSalome function
38950
38951 2006-04-05 14:08  srn
38952
38953         * src/SALOMEDS/SALOMEDS.cxx:
38954
38955         Removed debug cout
38956
38957 2006-04-04 15:28  srn
38958
38959         * src/Container/SALOME_ComponentPy.py:
38960
38961         BugID PAL12117 fixed the method DumpPython in order it has a correct signature and a method's body
38962
38963 2006-04-03 13:01  prascle
38964
38965         * doc/SALOME_Application.txt:
38966
38967         PR: work in progress...
38968
38969 2006-04-03 12:41  jfa
38970
38971         * src/KERNEL_PY/salome_test.py:
38972
38973         Fix bug 11063: Prevent running salome_test in a study with MED data.
38974
38975 2006-04-03 11:12  prascle
38976
38977         * configure.ac, doc/SALOME_Application.txt,
38978           doc/salome/tui/Makefile.am, idl/SALOME_TestModuleCatalog.idl,
38979           salome_adm/unix/config_files/check_htmlgen.m4,
38980           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
38981           src/SALOMEDS/SALOMEDS_IParameters.hxx,
38982           src/SALOMEDS/SALOMEDS_SComponent.cxx,
38983           src/SALOMEDS/SALOMEDS_SObject.cxx,
38984           src/SALOMEDS/SALOMEDS_SObject.hxx,
38985           src/SALOMEDS/SALOMEDS_Study.cxx,
38986           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
38987           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
38988           src/SALOMEDSClient/Makefile.am,
38989           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
38990           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
38991           src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
38992           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
38993           src/Utils/Utils_SALOME_Exception.hxx:
38994
38995         PR: mergefrom branch BR_OCC_For_3_1_0b1 tag mergeto_BR_PR_V320b1_31mar06
38996
38997 2006-04-03 08:59  apo
38998
38999         * salome_adm/unix/config_files/Makefile.am,
39000           salome_adm/unix/config_files/ac_linker_options.m4,
39001           salome_adm/unix/config_files/check_opengl.m4,
39002           salome_adm/unix/config_files/check_qt.m4,
39003           salome_adm/unix/config_files/production.m4,
39004           salome_adm/unix/config_files/python.m4, src/SALOMEDS/Makefile.am,
39005           src/SALOMEDSImpl/Makefile.am:
39006
39007         Porting on Mandriva 64
39008
39009 2006-03-31 13:31  asl
39010
39011         * configure.ac:
39012
39013         in case when CORBA using is disabled (light configuration) swig product is excluded from list of mandatory products
39014
39015 2006-03-31 13:07  prascle
39016
39017         * src/LifeCycleCORBA_SWIG/: Makefile.am,
39018           libSALOME_LifeCycleCORBA.i:
39019
39020         PR: exception handling
39021
39022 2006-03-31 13:05  prascle
39023
39024         * src/KERNEL_PY/salome.py:
39025
39026         PR: python traceback
39027
39028 2006-03-31 13:05  asl
39029
39030         * configure.ac:
39031
39032         new configuration option --enable-batch, which control of including to compilation process for packages Batch and Batch_SWIG (default: yes)
39033
39034 2006-03-31 13:04  prascle
39035
39036         * bin/appli_install.sh:
39037
39038         PR: add .bashrc
39039
39040 2006-03-31 12:37  abd
39041
39042         * src/Container/Container_i.cxx:
39043
39044         Update executive version
39045         Temprorary fix python of calls
39046
39047 2006-03-31 08:39  prascle
39048
39049         * src/KERNEL_PY/salome_iapp.py:
39050
39051         PR: False is with first letter upper case.
39052
39053 2006-03-31 08:36  prascle
39054
39055         * bin/killSalomeWithPort.py:
39056
39057         PR: add omniORB config files cleaning in case of SALOME application
39058
39059 2006-03-30 14:24  enk
39060
39061         * salome_adm/unix/config_files/check_htmlgen.m4,
39062           doc/salome/tui/Makefile.am:
39063
39064         Added support for doxygen1.4.4 and higher (with PYTHON documenation support)
39065
39066 2006-03-28 19:07  prascle
39067
39068         * src/KERNEL_PY/: salome.py, salome_iapp.py, salome_study.py:
39069
39070         corrections for batch mode
39071
39072 2006-03-28 19:06  prascle
39073
39074         * bin/Makefile.am:
39075
39076         corrections for batch mode and symlink application
39077
39078 2006-03-28 19:00  prascle
39079
39080         * bin/: appliskel/runAppli, appliskel/runConsole,
39081           appliskel/runSession, salomeConsole.py, killSalomeWithPort.py,
39082           salome_session.py:
39083
39084         corrections for batch mode
39085
39086 2006-03-28 18:58  prascle
39087
39088         * bin/: appli_clean.sh, appli_install.sh, virtual_salome.py:
39089
39090         SALOME Application with symbolic links
39091
39092 2006-03-27 09:59  srn
39093
39094         * src/SALOMEDSClient/Makefile.am:
39095
39096         BugID: IPAL12013, Added linker flags to allow the library to export dynamically all defined methods.
39097
39098 2006-03-27 09:58  srn
39099
39100         * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx:
39101
39102         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.
39103
39104 2006-03-24 07:40  asl
39105
39106         * src/Utils/Utils_SALOME_Exception.hxx:
39107
39108         fix for compilation errors in MED in optimized mode
39109
39110 2006-03-24 07:22  eap
39111
39112         * salome_adm/unix/config_files/check_sip.m4:
39113
39114         "specific SALOME for ALLIANCES". Fix SIP_INCLUDES (add missing -I)
39115
39116 2006-03-22 09:55  asl
39117
39118         * src/Utils/Utils_SALOME_Exception.hxx:
39119
39120         PAL11052 - exception messages must don't contain file and line number info in optimized mode
39121
39122 2006-03-20 14:48  san
39123
39124         * src/: Basics/BasicsGenericDestructor.cxx,
39125           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
39126           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
39127           SALOMEDS/SALOMEDS_AttributeTarget.cxx,
39128           SALOMELocalTrace/BaseTraceCollector.cxx,
39129           SALOMELocalTrace/LocalTraceCollector.cxx:
39130
39131         Compilation and run-time problems on Win32: mutex initialization, copy-paste errors
39132
39133 2006-03-20 14:26  san
39134
39135         * bin/: orbmodule.py, runSalome.py:
39136
39137         [no log message]
39138
39139 2006-03-20 13:30  srn
39140
39141         * src/SALOMEDSClient/: Makefile.am,
39142           SALOMEDSClient_ClientFactory.cxx,
39143           SALOMEDSClient_ClientFactory.hxx, SALOMEDSClient_IParameters.hxx:
39144
39145         Implemented a possibility to dlopen SalomeDS libarary and create SObject, Study, StudyBuilder, StudyManager objects and IParameter interaface
39146
39147 2006-03-20 13:29  srn
39148
39149         * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_IParameters.hxx,
39150           SALOMEDS_SComponent.cxx, SALOMEDS_SObject.cxx,
39151           SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
39152           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx:
39153
39154         Implemented a possibility to dlopen SalomeDS libarary and create SObject, Study, StudyBuilder, StudyManager objects
39155
39156 2006-03-20 13:25  srn
39157
39158         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
39159
39160         Bug IPAL11479, added a removal a temporary file "hdf_from_ascii.hdf"
39161
39162 2006-03-17 15:38  prascle
39163
39164         * configure.ac, src/Makefile.am:
39165
39166         PR: add Unit Tests for LifeCycleCORBA_SWIG
39167
39168 2006-03-17 15:34  prascle
39169
39170         * src/LifeCycleCORBA_SWIG/: libSALOME_LifeCycleCORBA.i,
39171           Test/LifeCycleCORBA_SWIGTest.py, Test/Makefile.am,
39172           Test/TestLifeCycleCORBA_SWIG.py:
39173
39174         PR: add Unit Tests for LifeCycleCORBA_SWIG
39175
39176 2006-03-17 15:33  prascle
39177
39178         * build_configure:
39179
39180         PR: allow execution from anywhere
39181
39182 2006-03-16 17:03  prascle
39183
39184         * configure.ac, resources/Makefile.am:
39185
39186         PR: add resources/Plugin in Install
39187
39188 2006-03-15 13:59  jfa
39189
39190         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
39191           resources/KERNELCatalog.xml:
39192
39193         Change version name to 3.2.0a2
39194
39195 2006-03-14 15:34  prascle
39196
39197         * src/SALOMEDSClient/Makefile.am, bin/Makefile.am:
39198
39199         PR: bug detected by OCN
39200
39201 2006-03-13 20:08  prascle
39202
39203         * salome_adm/unix/config_files/check_htmlgen.m4, doc/Makefile.am:
39204
39205         PR: conditional definition
39206
39207 2006-03-13 13:18  vsr
39208
39209         * salome_adm/unix/config_files/check_vtk.m4:
39210
39211         file check_vtk.m4 was added on branch V5_1_main on 2010-06-17 12:54:32 +0000
39212
39213 2006-03-13 13:18  vsr
39214
39215         * salome_adm/unix/config_files/check_vtk.m4:
39216
39217         file check_vtk.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
39218
39219 2006-03-13 13:18  caremoli
39220
39221         * salome_adm/unix/config_files/check_vtk.m4:
39222
39223         file check_vtk.m4 was added on branch BR_Observer on 2010-06-18 07:05:19 +0000
39224
39225 2006-03-13 13:18  prascle
39226
39227         * AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in, NEWS,
39228           build_configure, clean_configure, configure.ac,
39229           configure.in.base, make_config.in, DEPRECATED/Makefile.in,
39230           DEPRECATED/configure.in.base, DEPRECATED/make_config.in,
39231           bin/Makefile.am, bin/createAppli.sh, bin/killSalomeWithPort.py,
39232           bin/launchConfigureParser.py, bin/runIDLparser.in, bin/runNS.sh,
39233           bin/runSalome.ksh, bin/runSalome.py,
39234           bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
39235           bin/appliskel/runSession, bin/appliskel/runTests,
39236           bin/appliskel/searchFreePort.sh, doc/Makefile.am,
39237           doc/Makefile.in, doc/SALOME_Application.txt, doc/index.txt,
39238           doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
39239           doc/userguide.txt, doc/salome/Makefile.am,
39240           doc/salome/Makefile.in, doc/salome/kernel_resources.pdf,
39241           doc/salome/kernel_resources.ps, doc/salome/gui/Makefile.am,
39242           doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.am,
39243           doc/salome/tui/Makefile.in, idl/Makefile.am, idl/Makefile.in,
39244           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
39245           resources/Makefile.am, resources/Plugin.in,
39246           salome_adm/Makefile.am, salome_adm/Makefile.in,
39247           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
39248           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
39249           salome_adm/unix/config.h.in, salome_adm/unix/depend.in,
39250           salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
39251           salome_adm/unix/make_common_starter.am,
39252           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
39253           salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
39254           salome_adm/unix/DEPRECATED/Doxyfile,
39255           salome_adm/unix/DEPRECATED/F77config.h.in,
39256           salome_adm/unix/DEPRECATED/config.h.in,
39257           salome_adm/unix/DEPRECATED/depend.in,
39258           salome_adm/unix/DEPRECATED/envScript.in,
39259           salome_adm/unix/DEPRECATED/make_commence.in,
39260           salome_adm/unix/DEPRECATED/make_conclude.in,
39261           salome_adm/unix/DEPRECATED/make_module.in,
39262           salome_adm/unix/DEPRECATED/make_omniorb.in,
39263           salome_adm/unix/DEPRECATED/sstream.in,
39264           salome_adm/unix/config_files/Makefile.am,
39265           salome_adm/unix/config_files/ac_cc_warnings.m4,
39266           salome_adm/unix/config_files/ac_cxx_bool.m4,
39267           salome_adm/unix/config_files/ac_cxx_mutable.m4,
39268           salome_adm/unix/config_files/ac_cxx_option.m4,
39269           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
39270           salome_adm/unix/config_files/ac_cxx_typename.m4,
39271           salome_adm/unix/config_files/acx_pthread.m4,
39272           salome_adm/unix/config_files/check_Salome.m4,
39273           salome_adm/unix/config_files/check_boost.m4,
39274           salome_adm/unix/config_files/check_cas.m4,
39275           salome_adm/unix/config_files/check_cppunit.m4,
39276           salome_adm/unix/config_files/check_hdf5.m4,
39277           salome_adm/unix/config_files/check_htmlgen.m4,
39278           salome_adm/unix/config_files/check_java.m4,
39279           salome_adm/unix/config_files/check_lam.m4,
39280           salome_adm/unix/config_files/check_local.m4,
39281           salome_adm/unix/config_files/check_lsf.m4,
39282           salome_adm/unix/config_files/check_mico.m4,
39283           salome_adm/unix/config_files/check_mpi.m4,
39284           salome_adm/unix/config_files/check_mpich.m4,
39285           salome_adm/unix/config_files/check_msg2qm.m4,
39286           salome_adm/unix/config_files/check_omniorb.m4,
39287           salome_adm/unix/config_files/check_opengl.m4,
39288           salome_adm/unix/config_files/check_openpbs.m4,
39289           salome_adm/unix/config_files/check_pthreads.m4,
39290           salome_adm/unix/config_files/check_pyqt.m4,
39291           salome_adm/unix/config_files/check_qt.m4,
39292           salome_adm/unix/config_files/check_qwt.m4,
39293           salome_adm/unix/config_files/check_sip.m4,
39294           salome_adm/unix/config_files/check_swig.m4,
39295           salome_adm/unix/config_files/check_vtk.m4,
39296           salome_adm/unix/config_files/config.guess,
39297           salome_adm/unix/config_files/config.sub,
39298           salome_adm/unix/config_files/enable_pthreads.m4,
39299           salome_adm/unix/config_files/install-sh,
39300           salome_adm/unix/config_files/libtool.m4,
39301           salome_adm/unix/config_files/ltconfig,
39302           salome_adm/unix/config_files/ltmain.sh,
39303           salome_adm/unix/config_files/missing,
39304           salome_adm/unix/config_files/mkinstalldirs,
39305           salome_adm/unix/config_files/python.m4,
39306           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
39307           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
39308           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
39309           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
39310           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
39311           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
39312           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
39313           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
39314           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
39315           salome_adm/unix/config_files/DEPRECATED/config.guess,
39316           salome_adm/unix/config_files/DEPRECATED/config.sub,
39317           salome_adm/unix/config_files/DEPRECATED/install-sh,
39318           salome_adm/unix/config_files/DEPRECATED/libtool.m4,
39319           salome_adm/unix/config_files/DEPRECATED/ltconfig,
39320           salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
39321           salome_adm/unix/config_files/DEPRECATED/missing,
39322           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
39323           src/Makefile.am, src/Makefile.in,
39324           src/Basics/BasicsGenericDestructor.cxx, src/Basics/Makefile.am,
39325           src/Basics/Makefile.in, src/Basics/Test/Makefile.am,
39326           src/Basics/Test/Makefile.in, src/Communication/Makefile.am,
39327           src/Communication/Makefile.in,
39328           src/Communication_SWIG/Makefile.am,
39329           src/Communication_SWIG/Makefile.in,
39330           src/Container/Container_i.cxx,
39331           src/Container/Container_init_python.cxx,
39332           src/Container/Makefile.am, src/Container/Makefile.in,
39333           src/Container/SALOME_Container.cxx,
39334           src/Container/SALOME_ContainerManagerServer.cxx,
39335           src/Container/SALOME_Container_i.hxx, src/GenericObj/Makefile.am,
39336           src/GenericObj/Makefile.in, src/HDFPersist/HDFdataset.cc,
39337           src/HDFPersist/Makefile.am, src/HDFPersist/Makefile.in,
39338           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
39339           src/KERNEL_PY/iparameters.py, src/LifeCycleCORBA/Launchers.cxx,
39340           src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
39341           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
39342           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
39343           src/LifeCycleCORBA/Test/Makefile.am,
39344           src/LifeCycleCORBA/Test/Makefile.in,
39345           src/LifeCycleCORBA_SWIG/Makefile.am,
39346           src/LifeCycleCORBA_SWIG/Makefile.in,
39347           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
39348           src/Logger/Makefile.am, src/Logger/Makefile.in,
39349           src/Logger/SALOME_Logger_Server.cxx,
39350           src/Logger/SALOME_Logger_Server_main.cxx,
39351           src/Logger/Test/Makefile.am, src/Logger/Test/Makefile.in,
39352           src/MPIContainer/MPIContainer_i.cxx,
39353           src/MPIContainer/Makefile.am, src/MPIContainer/Makefile.in,
39354           src/MPIContainer/SALOME_MPIContainer.cxx,
39355           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
39356           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
39357           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
39358           src/ModuleGenerator/testIDLparser.in,
39359           src/ModuleGenerator/tests/test1.sh,
39360           src/ModuleGenerator/tests/test1b.sh,
39361           src/ModuleGenerator/tests/test2.sh,
39362           src/ModuleGenerator/tests/test3.sh,
39363           src/ModuleGenerator/tests/test4.sh,
39364           src/ModuleGenerator/tests/test5.sh,
39365           src/NOTIFICATION_SWIG/Makefile.am,
39366           src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
39367           src/NamingService/Makefile.in,
39368           src/NamingService/SALOME_NamingService.cxx,
39369           src/NamingService/Test/Makefile.am,
39370           src/NamingService/Test/Makefile.in, src/Notification/Makefile.am,
39371           src/Notification/Makefile.in, src/Registry/Makefile.am,
39372           src/Registry/Makefile.in,
39373           src/Registry/SALOME_Registry_Server.cxx,
39374           src/ResourcesManager/Makefile.am,
39375           src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.am,
39376           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
39377           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
39378           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
39379           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
39380           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
39381           src/SALOMEDS/SALOMEDS_Attributes.hxx,
39382           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
39383           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
39384           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
39385           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
39386           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
39387           src/SALOMEDS/SALOMEDS_IParameters.cxx,
39388           src/SALOMEDS/SALOMEDS_IParameters.hxx,
39389           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
39390           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
39391           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
39392           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
39393           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
39394           src/SALOMEDS/SALOMEDS_Study_i.cxx,
39395           src/SALOMEDS/SALOMEDS_Study_i.hxx,
39396           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
39397           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
39398           src/SALOMEDS/Test/Makefile.am,
39399           src/SALOMEDS/Test/SALOMEDSTest.cxx,
39400           src/SALOMEDS/Test/SALOMEDSTest.hxx,
39401           src/SALOMEDS/Test/TestSALOMEDS.cxx,
39402           src/SALOMEDS/Test/TestSALOMEDS.py,
39403           src/SALOMEDSClient/Makefile.am, src/SALOMEDSClient/Makefile.in,
39404           src/SALOMEDSClient/SALOMEDSClient.hxx,
39405           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
39406           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
39407           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
39408           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
39409           src/SALOMEDSImpl/Makefile.am, src/SALOMEDSImpl/Makefile.in,
39410           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
39411           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
39412           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
39413           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
39414           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
39415           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
39416           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
39417           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
39418           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
39419           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
39420           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
39421           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
39422           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
39423           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
39424           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
39425           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
39426           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
39427           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
39428           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
39429           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
39430           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
39431           src/SALOMELocalTrace/BaseTraceCollector.cxx,
39432           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
39433           src/SALOMELocalTrace/Makefile.am,
39434           src/SALOMELocalTrace/Makefile.in,
39435           src/SALOMELocalTrace/Test/Makefile.am,
39436           src/SALOMELocalTrace/Test/Makefile.in,
39437           src/SALOMETraceCollector/Makefile.am,
39438           src/SALOMETraceCollector/Makefile.in,
39439           src/SALOMETraceCollector/Test/Makefile.am,
39440           src/SALOMETraceCollector/Test/Makefile.in,
39441           src/TOOLSDS/Makefile.am, src/TOOLSDS/Makefile.in,
39442           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
39443           src/TestContainer/Makefile.am, src/TestContainer/Makefile.in,
39444           src/TestContainer/TestComponentPy.py,
39445           src/TestContainer/TestContainer.cxx,
39446           src/TestContainer/TestLogger.py,
39447           src/TestMPIContainer/Makefile.am,
39448           src/TestMPIContainer/Makefile.in,
39449           src/TestMPIContainer/TestMPIContainer.cxx,
39450           src/UnitTests/Makefile.am, src/UnitTests/Makefile.in,
39451           src/UnitTests/UnitTests.cxx, src/Utils/Makefile.am,
39452           src/Utils/Makefile.in, src/Utils/Utils_SignalsHandler.cxx,
39453           src/Utils/Utils_SignalsHandler.h, src/Utils/Test/Makefile.am,
39454           src/Utils/Test/Makefile.in:
39455
39456         PR: merge from branch BR_auto_V310 tag mergefrom_OCC_development_for_3_2_0a2_10mar06
39457
39458 2006-03-13 10:57  prascle
39459
39460         * src/UnitTests/: Makefile.am, UnitTests.cxx:
39461
39462         PR: add unit tests from SALOMDSImpl and SALOMEDS
39463
39464 2006-03-13 10:54  prascle
39465
39466         * bin/appliskel/: killCurrentPort, runAppli, runConsole, runParam,
39467           runRemote.sh, runSession, runTests, searchFreePort.sh,
39468           setAppliPath.sh:
39469
39470         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.
39471
39472 2006-03-13 10:34  abd
39473
39474         * src/: Container/Makefile.in, ModuleCatalog/Makefile.in,
39475           Registry/Makefile.in, Notification/Makefile.in,
39476           SALOMEDS/Makefile.in, SALOMELocalTrace/Makefile.in,
39477           Utils/Makefile.in:
39478
39479         Added file for Win32 export/import defines
39480
39481 2006-03-13 10:32  abd
39482
39483         * src/Communication/Makefile.in:
39484
39485         Added file with WIN32 export/import defines
39486
39487 2006-03-12 16:58  prascle
39488
39489         * configure.ac, bin/createAppli.sh, bin/runNS.sh, bin/runSalome.py,
39490           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
39491           salome_adm/unix/DEPRECATED/make_commence.in,
39492           salome_adm/unix/DEPRECATED/make_conclude.in,
39493           salome_adm/unix/config_files/Makefile.am,
39494           salome_adm/unix/config_files/acx_pthread.m4,
39495           salome_adm/unix/config_files/check_boost.m4,
39496           salome_adm/unix/config_files/check_cas.m4,
39497           salome_adm/unix/config_files/check_msg2qm.m4,
39498           salome_adm/unix/config_files/check_pyqt.m4,
39499           salome_adm/unix/config_files/check_qwt.m4,
39500           salome_adm/unix/config_files/check_sip.m4,
39501           salome_adm/unix/config_files/check_vtk.m4,
39502           salome_adm/unix/config_files/enable_pthreads.m4, src/Makefile.am,
39503           src/Container/Container_i.cxx, src/HDFPersist/HDFdataset.cc,
39504           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/iparameters.py,
39505           src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
39506           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
39507           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
39508           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
39509           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
39510           src/SALOMEDS/SALOMEDS_Attributes.hxx,
39511           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
39512           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
39513           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
39514           src/SALOMEDS/SALOMEDS_IParameters.cxx,
39515           src/SALOMEDS/SALOMEDS_IParameters.hxx,
39516           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
39517           src/SALOMEDS/SALOMEDS_Study_i.cxx,
39518           src/SALOMEDS/SALOMEDS_Study_i.hxx,
39519           src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
39520           src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
39521           src/SALOMEDS/Test/Makefile.am,
39522           src/SALOMEDS/Test/SALOMEDSTest.cxx,
39523           src/SALOMEDS/Test/SALOMEDSTest.hxx,
39524           src/SALOMEDS/Test/TestSALOMEDS.cxx,
39525           src/SALOMEDS/Test/TestSALOMEDS.py,
39526           src/SALOMEDSClient/Makefile.am,
39527           src/SALOMEDSClient/SALOMEDSClient.hxx,
39528           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
39529           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
39530           src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
39531           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
39532           src/SALOMEDSImpl/Makefile.am,
39533           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
39534           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
39535           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
39536           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
39537           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
39538           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
39539           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
39540           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
39541           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
39542           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
39543           src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
39544           src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
39545           src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
39546           src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
39547           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
39548           src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
39549           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
39550           src/Utils/Makefile.am, src/Utils/Utils_SignalsHandler.cxx,
39551           src/Utils/Utils_SignalsHandler.h:
39552
39553         merge from OCC_development_for_3_2_0a2 tag mergeto_BR_auto_V310_10mar06
39554
39555 2006-03-10 13:11  asv
39556
39557         * src/KERNEL_PY/: Makefile.in, iparameters.py:
39558
39559         Implementation of GUI persistent states in Python.
39560
39561 2006-03-10 08:04  apo
39562
39563         * src/: SALOMEDSImpl/Test/Makefile.in, SALOMEDS/Test/Makefile.in:
39564
39565         To fix problem with compilation of the binraies
39566
39567 2006-03-09 15:32  jfa
39568
39569         * bin/: runSalome.py:
39570
39571         PAL10512: Improve fix, avoiding modifications of 'args' dictionary, common for all processes.
39572
39573 2006-03-09 15:08  srn
39574
39575         * salome_adm/Makefile.in:
39576
39577         Added empty tests: target
39578
39579 2006-03-09 14:43  srn
39580
39581         * src/SALOMEDS/Test/Makefile.in:
39582
39583         Added required linker options
39584
39585 2006-03-09 14:14  vsr
39586
39587         * bin/runSalome.py:
39588
39589         PAL11821: Do not show splash screen if SALOME is launched in 'terminal' mode
39590
39591 2006-03-09 13:47  srn
39592
39593         * salome_adm/unix/make_conclude.in:
39594
39595         Modified a step "tests", now it redirected to target "unittest"
39596
39597 2006-03-09 13:45  srn
39598
39599         * src/SALOMEDSImpl/Test/: Makefile.in, SALOMEDSImplTest.cxx,
39600           SALOMEDSImplTest.hxx, TestSALOMEDSImpl.cxx, TestSALOMEDSImpl.py:
39601
39602         Cppunit tests for SALOMEDSImpl
39603
39604 2006-03-09 13:38  srn
39605
39606         * src/SALOMEDS/Test/: Makefile.in, SALOMEDSTest.cxx,
39607           SALOMEDSTest.hxx, TestSALOMEDS.cxx, TestSALOMEDS.py:
39608
39609         Cppunit tests for SALOMEDS
39610
39611 2006-03-09 13:38  srn
39612
39613         * src/Makefile.in:
39614
39615         Cppunit tests for SALOMEDS and SALOMEDSmpl
39616
39617 2006-03-09 13:37  srn
39618
39619         * src/SALOMEDSImpl/Test/: Makefile.in, SALOMEDSImplTest.cxx,
39620           SALOMEDSImplTest.hxx, TestSALOMEDSImpl.cxx, TestSALOMEDSImpl.py:
39621
39622         Cppunit tests for AttributeParameters
39623
39624 2006-03-09 13:02  san
39625
39626         * src/NOTIFICATION_SWIG/NOTIFICATION.i:
39627
39628         Corrected following ABV remark - #define should be put outside %{ ... %} block in .i file in order not to be put into generated C++ files.
39629
39630 2006-03-09 12:47  abd
39631
39632         * src/NOTIFICATION_SWIG/NOTIFICATION.i:
39633
39634         SWIG compability on win32
39635
39636 2006-03-09 07:15  nds
39637
39638         * configure.in.base:
39639
39640         Changes in Salome configuration scripts
39641
39642 2006-03-09 07:11  nds
39643
39644         * salome_adm/unix/: config_files/check_msg2qm.m4,
39645           config_files/check_pyqt.m4, config_files/check_qwt.m4,
39646           config_files/check_sip.m4, config_files/check_vtk.m4,
39647           config_files/check_cas.m4, make_commence.in:
39648
39649         Changes in Salome configuration scripts
39650
39651 2006-03-07 16:30  asv
39652
39653         * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
39654           src/SALOMEDS/Makefile.in,
39655           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
39656           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
39657           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
39658           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
39659           src/SALOMEDS/SALOMEDS_Attributes.hxx,
39660           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
39661           src/SALOMEDS/SALOMEDS_IParameters.cxx,
39662           src/SALOMEDS/SALOMEDS_IParameters.hxx,
39663           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
39664           src/SALOMEDS/SALOMEDS_Study_i.cxx,
39665           src/SALOMEDS/SALOMEDS_Study_i.hxx,
39666           src/SALOMEDSClient/Makefile.in,
39667           src/SALOMEDSClient/SALOMEDSClient.hxx,
39668           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
39669           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
39670           src/SALOMEDSImpl/Makefile.in,
39671           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
39672           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
39673           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
39674           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
39675           src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
39676           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
39677           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
39678           src/SALOMEDSImpl/testDS.cxx:
39679
39680         Merged with OCC_visual_parameters_2006 branch.  It consists development of persistent visual parameters (GUI states) and Dump Python functionality.  Developers: srn, asv.
39681
39682 2006-03-07 10:35  asv
39683
39684         * salome_adm/unix/pythonbe.pyc:
39685
39686         merged with current.
39687
39688 2006-03-06 15:01  prascle
39689
39690         * bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
39691           bin/runIDLparser.in, bin/runSalome.ksh, bin/runSalome.py,
39692           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
39693           bin/appliskel/runConsole, bin/appliskel/runParam,
39694           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
39695           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
39696           bin/appliskel/setAppliPath.sh,
39697           salome_adm/unix/DEPRECATED/envScript.in,
39698           salome_adm/unix/DEPRECATED/make_conclude.in,
39699           salome_adm/unix/config_files/ac_cxx_option.m4,
39700           salome_adm/unix/config_files/check_boost.m4,
39701           salome_adm/unix/config_files/check_cas.m4,
39702           salome_adm/unix/config_files/check_cppunit.m4,
39703           salome_adm/unix/config_files/check_msg2qm.m4,
39704           salome_adm/unix/config_files/check_omniorb.m4,
39705           salome_adm/unix/config_files/check_pyqt.m4,
39706           salome_adm/unix/config_files/check_qwt.m4,
39707           salome_adm/unix/config_files/check_sip.m4,
39708           salome_adm/unix/config_files/check_vtk.m4,
39709           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
39710           salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
39711           salome_adm/unix/config_files/DEPRECATED/install-sh,
39712           src/Basics/BasicsGenericDestructor.cxx,
39713           src/Container/Container_i.cxx,
39714           src/Container/Container_init_python.cxx,
39715           src/Container/SALOME_Container.cxx,
39716           src/Container/SALOME_ContainerManagerServer.cxx,
39717           src/Container/SALOME_Container_i.hxx,
39718           src/LifeCycleCORBA/Launchers.cxx,
39719           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
39720           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
39721           src/MPIContainer/MPIContainer_i.cxx,
39722           src/ModuleCatalog/Makefile.am,
39723           src/ModuleGenerator/testIDLparser.in,
39724           src/ModuleGenerator/tests/test1.sh,
39725           src/ModuleGenerator/tests/test1b.sh,
39726           src/ModuleGenerator/tests/test2.sh,
39727           src/ModuleGenerator/tests/test3.sh,
39728           src/ModuleGenerator/tests/test4.sh,
39729           src/ModuleGenerator/tests/test5.sh,
39730           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
39731           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
39732           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
39733           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
39734           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
39735           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
39736           src/SALOMEDS/SALOMEDS_Study_i.cxx,
39737           src/SALOMEDS/SALOMEDS_Study_i.hxx,
39738           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
39739           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
39740           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
39741           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
39742           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
39743           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
39744           src/SALOMELocalTrace/BaseTraceCollector.cxx,
39745           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
39746           src/TestContainer/Makefile.am,
39747           src/TestContainer/TestComponentPy.py,
39748           src/TestContainer/TestContainer.cxx,
39749           src/TestContainer/TestLogger.py,
39750           src/Utils/Utils_SignalsHandler.cxx:
39751
39752         PR: merge from branch BR_V3_1_0_CCRT tag mergeto_BR_auto_V310_06mar06
39753
39754 2006-03-06 13:37  asv
39755
39756         * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDSClient/Makefile.in,
39757           SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
39758           SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx:
39759
39760         merged with KERNEL from current dev version.
39761
39762 2006-03-06 10:22  nds
39763
39764         * salome_adm/unix/config_files/check_cas.m4:
39765
39766         Delete dependency current check file from KERNEL.
39767
39768 2006-03-06 09:28  abd
39769
39770         * src/: SALOMELocalTrace/SALOME_LocalTrace.hxx,
39771           Utils/SALOME_Utils.hxx:
39772
39773         Updated environment and import/export directives
39774
39775 2006-03-06 09:17  abd
39776
39777         * src/Communication/: MultiCommException.hxx, ReceiverFactory.hxx,
39778           SALOMEMultiComm.hxx, SALOME_Comm_i.hxx, SALOME_Communication.hxx,
39779           SenderFactory.hxx:
39780
39781         Updated environment and import/export directives
39782
39783 2006-03-06 09:14  abd
39784
39785         * src/: Notification/NOTIFICATION.hxx,
39786           Notification/NOTIFICATION_Consumer.hxx,
39787           Notification/NOTIFICATION_Supplier.hxx,
39788           Notification/SALOME_NOTIFICATION.hxx,
39789           NamingService/NamingService_WaitForServerReadiness.hxx,
39790           NamingService/ServiceUnreachable.hxx,
39791           ModuleCatalog/SALOME_ModuleCatalog.hxx,
39792           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
39793           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
39794           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
39795           HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFobjectType.c,
39796           Container/Container_init_python.hxx,
39797           Container/SALOME_Component_i.hxx, Container/SALOME_Container.hxx,
39798           Container/SALOME_ContainerManager.hxx,
39799           Container/SALOME_Container_i.hxx:
39800
39801         Updated environment and import/export directives
39802
39803 2006-03-06 09:10  abd
39804
39805         * src/: SALOMEDSImpl/SALOMEDSImpl_Study.hxx, SALOMEDS/SALOMEDS.hxx,
39806           SALOMEDS/SALOMEDS_Defines.hxx,
39807           ResourcesManager/SALOME_ResourcesManager.hxx,
39808           Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
39809           Registry/SALOME_Registry.hxx:
39810
39811         Updated environment and import/export directives
39812
39813 2006-03-06 09:06  abd
39814
39815         * src/: Basics/BasicsGenericDestructor.hxx, Utils/OpUtil.hxx,
39816           Utils/SalomeString.hxx, Utils/Utils_CommException.hxx,
39817           Utils/Utils_CorbaException.hxx,
39818           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
39819           Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.hxx,
39820           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.hxx,
39821           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
39822           Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.hxx,
39823           TOOLSDS/SALOMEDS_Tool.hxx,
39824           SALOMELocalTrace/BaseTraceCollector.hxx,
39825           SALOMELocalTrace/FileTraceCollector.hxx,
39826           SALOMELocalTrace/LocalTraceBufferPool.hxx,
39827           SALOMELocalTrace/LocalTraceCollector.hxx:
39828
39829         Updated environment and import/export directives
39830
39831 2006-03-03 13:25  apo
39832
39833         * src/Utils/: Makefile.in, Utils_SignalsHandler.cxx,
39834           Utils_SignalsHandler.h:
39835
39836         Remove unused files
39837
39838 2006-03-03 12:07  asl
39839
39840         * src/Container/Container_i.cxx:
39841
39842         PAL9103 : if engine cannot start, the unknown exception is raised
39843
39844 2006-03-02 12:06  srn
39845
39846         * src/Container/Container_i.cxx:
39847
39848         Removed unnecessary dlopen flag
39849
39850 2006-03-02 10:06  jfa
39851
39852         * src/HDFPersist/HDFdataset.cc:
39853
39854         Replacing misused '==' operator with a correct assignment.
39855
39856 2006-02-28 15:05  nds
39857
39858         * salome_adm/unix/: make_commence.in, config_files/check_msg2qm.m4,
39859           config_files/check_pyqt.m4, config_files/check_qwt.m4,
39860           config_files/check_sip.m4, config_files/check_vtk.m4:
39861
39862         Change configuration
39863
39864 2006-02-28 15:03  nds
39865
39866         * configure.in.base:
39867
39868         [no log message]
39869
39870 2006-02-28 14:46  srn
39871
39872         * src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
39873
39874         Restored previous declaration of operator= method
39875
39876 2006-02-28 12:55  srn
39877
39878         * src/Container/Container_i.cxx:
39879
39880         Added a flag RTLD to dlopen
39881
39882 2006-02-28 12:48  srn
39883
39884         * src/SALOMEDSClient/: SALOMEDSClient_ClientFactory.cxx,
39885           SALOMEDSClient_definitions.hxx:
39886
39887         Added a flag RTLD to dlopen
39888
39889 2006-02-27 09:25  eap
39890
39891         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
39892
39893         "specific SALOME for ALLIANCES". fix pb that ALLIANCES hangs up during study saving
39894
39895 2006-02-27 09:23  eap
39896
39897         * src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx:
39898
39899         "specific SALOME for ALLIANCES". fix memory pb in Store()
39900
39901 2006-02-26 11:20  stv
39902
39903         * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
39904
39905         Updated SALOME GUI sources for building under Ms Visual .NET on Windows platform.
39906
39907 2006-02-21 16:10  prascle
39908
39909         * INSTALL, bin/VERSION, bin/createAppli.sh, bin/runSalome.py,
39910           idl/SALOMEDS.idl, resources/CatalogResources.xml,
39911           resources/KERNELCatalog.xml,
39912           salome_adm/unix/config_files/check_boost.m4,
39913           salome_adm/unix/config_files/check_lam.m4,
39914           src/Communication/ReceiverFactory.cxx,
39915           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
39916           src/Communication/SALOME_Comm_i.cxx,
39917           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
39918           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
39919           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
39920           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
39921           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
39922           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
39923           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
39924           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
39925           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
39926           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
39927           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
39928           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
39929           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
39930           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
39931           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
39932           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
39933           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
39934           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
39935           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
39936           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
39937           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
39938           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
39939           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
39940           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
39941           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
39942           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
39943           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
39944           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
39945           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
39946           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
39947           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
39948           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
39949           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
39950           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
39951           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
39952           src/SALOMEDS/SALOMEDS_SComponent.cxx,
39953           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
39954           src/SALOMEDS/SALOMEDS_SObject.cxx,
39955           src/SALOMEDS/SALOMEDS_Study.cxx,
39956           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
39957           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
39958           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
39959           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
39960           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
39961           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
39962           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
39963           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
39964           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
39965           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
39966           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
39967
39968         PR: mergefrom V3_2_0a1
39969
39970 2006-02-21 09:10  stv
39971
39972         * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
39973
39974         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
39975
39976 2006-02-21 08:10  srn
39977
39978         * src/SALOMEDSClient/: Makefile.in,
39979           SALOMEDSClient_ClientFactory.hxx:
39980
39981         Fixed bug with missing SALOMEDS CORBA headers
39982
39983 2006-02-20 15:11  prascle
39984
39985         * doc/index.txt:
39986
39987         PR: work in progress
39988
39989 2006-02-20 12:24  srn
39990
39991         * src/SALOMEDSClient/: Makefile.in,
39992           SALOMEDSClient_ClientFactory.cxx,
39993           SALOMEDSClient_ClientFactory.hxx:
39994
39995         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.
39996
39997 2006-02-20 12:21  srn
39998
39999         * src/SALOMEDS/SALOMEDS.cxx:
40000
40001         Added a factory methods to convert CORBA SALOMEDS objects to SALOMEDSClient wrappers
40002
40003 2006-02-20 10:20  stv
40004
40005         * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
40006
40007         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40008
40009 2006-02-20 10:17  stv
40010
40011         * src/SALOMEDS/SALOMEDS_Client.cxx:
40012
40013         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40014
40015 2006-02-20 10:08  stv
40016
40017         * src/TOOLSDS/SALOMEDS_Tool.cxx:
40018
40019         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40020
40021 2006-02-20 10:05  stv
40022
40023         * src/: SALOMELocalTrace/FileTraceCollector.cxx,
40024           SALOMELocalTrace/LocalTraceBufferPool.cxx,
40025           TestContainer/SALOME_TestComponent_i.cxx,
40026           TestContainer/SALOME_TestComponent_i.hxx:
40027
40028         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40029
40030 2006-02-20 09:55  stv
40031
40032         * src/SALOMEDS/: SALOMEDS_AttributePythonObject.hxx,
40033           SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.hxx:
40034
40035         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40036
40037 2006-02-20 09:13  stv
40038
40039         * src/: Container/Container_i.cxx, HDFPersist/HDFascii.cc,
40040           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFobjectIdentify.c:
40041
40042         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40043
40044 2006-02-20 08:56  stv
40045
40046         * src/Basics/BasicsGenericDestructor.hxx:
40047
40048         Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
40049
40050 2006-02-19 11:02  prascle
40051
40052         * salome_adm/unix/config_files/Makefile.am:
40053
40054         PR: other modules not generated with autotools still need old versions of tools
40055
40056 2006-02-19 11:01  prascle
40057
40058         * salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4:
40059
40060         PR: still required by other modules
40061
40062 2006-02-18 18:36  prascle
40063
40064         * doc/salome/: gui/Makefile.am, tui/Makefile.am:
40065
40066         PR: make dist must copy from src
40067
40068 2006-02-18 18:34  prascle
40069
40070         * doc/index.txt:
40071
40072         PR: work in progress
40073
40074 2006-02-18 18:31  prascle
40075
40076         * src/NamingService/SALOME_NamingService.cxx, idl/SALOMEDS.idl:
40077
40078         PR: doxygen comments
40079
40080 2006-02-18 18:28  prascle
40081
40082         * salome_adm/unix/config_files/check_cppunit.m4:
40083
40084         PR: AM_CONDITIONAL must be outside if then else bloc
40085
40086 2006-02-17 13:35  prascle
40087
40088         * clean_configure:
40089
40090         PR: update with changes on doc
40091
40092 2006-02-17 13:34  prascle
40093
40094         * doc/salome/: kernel_resources.pdf, kernel_resources.ps:
40095
40096         PR: replacement for Lyx document
40097
40098 2006-02-17 13:29  prascle
40099
40100         * doc/: Makefile.am, SALOME_Application.txt, kernel_resources.txt,
40101           txt2html.sh:
40102
40103         PR: replacement for Lyx document
40104
40105 2006-02-17 09:18  apo
40106
40107         * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
40108
40109         To use native BOOST libraries
40110
40111 2006-02-17 08:33  asv
40112
40113         * INSTALL, salome_adm/unix/make_commence.in,
40114           salome_adm/unix/config_files/check_boost.m4,
40115           salome_adm/unix/config_files/check_lam.m4,
40116           salome_adm/unix/config_files/check_pthreads.m4, idl/SALOMEDS.idl,
40117           src/Communication/ReceiverFactory.cxx,
40118           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
40119           src/Communication/SALOME_Comm_i.cxx,
40120           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40121           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
40122           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
40123           bin/VERSION, bin/createAppli.sh, resources/CatalogResources.xml,
40124           resources/KERNELCatalog.xml:
40125
40126         Merge with head and (in salome_adm) with OCC_development..a2 branch.
40127
40128 2006-02-16 22:35  prascle
40129
40130         * doc/Makefile.am, doc/Makefile.in, doc/SALOME_Application.txt,
40131           doc/salome/Makefile.am, doc/salome/Makefile.in,
40132           doc/salome/gui/Makefile.am, doc/salome/gui/Makefile.in,
40133           doc/salome/tui/Makefile.am, doc/salome/tui/Makefile.in,
40134           Makefile.am, salome_adm/unix/make_common_starter.am:
40135
40136         PR: generate user doc with target userdoc
40137
40138 2006-02-16 14:20  prascle
40139
40140         * Makefile.am, build_configure, configure.ac,
40141           resources/Makefile.am, salome_adm/unix/config_files/Makefile.am,
40142           src/HDFPersist/Makefile.am:
40143
40144         PR: add missing files to dist
40145
40146 2006-02-15 20:08  prascle
40147
40148         * clean_configure:
40149
40150         PR: keep only CVS files
40151
40152 2006-02-15 20:01  prascle
40153
40154         * salome_adm/unix/config_files/: acx_pthread.m4, check_pthreads.m4:
40155
40156         PR: new macro
40157
40158 2006-02-15 16:40  prascle
40159
40160         * Makefile.am, bin/Makefile.am, idl/Makefile.am:
40161
40162         PR: make distcheck works
40163
40164 2006-02-15 15:05  mkr
40165
40166         * salome_adm/unix/config_files/check_boost.m4:
40167
40168         Porting to Mandriva 2006 platform.
40169
40170 2006-02-15 10:09  srn
40171
40172         * src/SALOMEDSImpl/: SALOMEDSImpl_IParameters.cxx,
40173           SALOMEDSImpl_IParameters.hxx:
40174
40175         Added method decodeEntry
40176
40177 2006-02-14 23:31  prascle
40178
40179         * bin/Makefile.am, idl/Makefile.am, src/Makefile.am,
40180           src/Communication/Makefile.am, src/Container/Makefile.am,
40181           src/GenericObj/Makefile.am, src/LifeCycleCORBA/Makefile.am,
40182           src/LifeCycleCORBA/Test/Makefile.am, src/Logger/Makefile.am,
40183           src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
40184           src/NamingService/Makefile.am,
40185           src/NamingService/Test/Makefile.am, src/Registry/Makefile.am,
40186           src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
40187           src/SALOMETraceCollector/Makefile.am, src/TOOLSDS/Makefile.am,
40188           src/TestContainer/Makefile.am, src/TestMPIContainer/Makefile.am,
40189           src/UnitTests/Makefile.am, src/Utils/Makefile.am:
40190
40191         PR: idl c++ in a library
40192
40193 2006-02-14 20:15  prascle
40194
40195         * Makefile.am, bin/Makefile.am, doc/Makefile.in, idl/Makefile.am,
40196           resources/Makefile.am, salome_adm/unix/Makefile.am,
40197           src/Makefile.am, src/Basics/Makefile.am,
40198           src/Communication/Makefile.am, src/Container/Makefile.am,
40199           src/GenericObj/Makefile.am, src/LifeCycleCORBA/Makefile.am,
40200           src/LifeCycleCORBA/Test/Makefile.am,
40201           src/LifeCycleCORBA_SWIG/Makefile.am, src/Logger/Makefile.am,
40202           src/Logger/Test/Makefile.am, src/MPIContainer/Makefile.am,
40203           src/ModuleCatalog/Makefile.am, src/ModuleGenerator/Makefile.am,
40204           src/NamingService/Makefile.am,
40205           src/NamingService/Test/Makefile.am, src/Registry/Makefile.am,
40206           src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
40207           src/SALOMEDSImpl/Makefile.am, src/SALOMELocalTrace/Makefile.am,
40208           src/SALOMELocalTrace/Test/Makefile.am,
40209           src/SALOMETraceCollector/Makefile.am,
40210           src/SALOMETraceCollector/Test/Makefile.am,
40211           src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
40212           src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
40213           src/Utils/Makefile.am, src/Utils/Test/Makefile.am:
40214
40215         PR: conditionnal compilation and make dist
40216
40217 2006-02-14 20:14  prascle
40218
40219         * configure.ac:
40220
40221         PR: conditionnal check prerequisite following user options
40222
40223 2006-02-14 20:12  prascle
40224
40225         * salome_adm/unix/config_files/: Makefile.am, check_cppunit.m4,
40226           check_hdf5.m4, check_lam.m4, check_mpi.m4, check_mpich.m4,
40227           check_opengl.m4, check_swig.m4, enable_pthreads.m4, python.m4:
40228
40229         PR: improve tests and --help option of configure
40230
40231 2006-02-14 15:55  srn
40232
40233         * src/SALOMEDSImpl/: SALOMEDSImpl_IParameters.cxx,
40234           SALOMEDSImpl_IParameters.hxx:
40235
40236         Added a method getDefaultScript
40237
40238 2006-02-14 15:54  srn
40239
40240         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_IParameters.cxx,
40241           src/SALOMEDS/SALOMEDS_IParameters.hxx,
40242           src/SALOMEDS/SALOMEDS_Study_i.cxx,
40243           src/SALOMEDS/SALOMEDS_Study_i.hxx:
40244
40245         Added a method GetDefaultScript
40246
40247 2006-02-14 14:08  srn
40248
40249         * src/SALOMEDSImpl/: Makefile.in, SALOMEDSImpl_IParameters.cxx,
40250           SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_Study.cxx,
40251           SALOMEDSImpl_Study.hxx:
40252
40253         Changed method DumpStudy, added IParameters
40254
40255 2006-02-14 14:07  srn
40256
40257         * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
40258           src/SALOMEDS/SALOMEDS_IParameters.cxx,
40259           src/SALOMEDS/SALOMEDS_IParameters.hxx,
40260           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
40261           src/SALOMEDS/SALOMEDS_Study_i.cxx,
40262           src/SALOMEDS/SALOMEDS_Study_i.hxx:
40263
40264         Changed method DumpStudy
40265
40266 2006-02-13 10:35  srn
40267
40268         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40269           SALOMEDS_IParameters.hxx:
40270
40271         Modified methods encodeEntry and decodeEntry
40272
40273 2006-02-10 15:11  apo
40274
40275         * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
40276
40277         Final fix for Bug GVIEW10647
40278                 Crash saving the model
40279         (to provide a method to work without temporary directory)
40280
40281 2006-02-10 13:51  srn
40282
40283         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40284           SALOMEDS_IParameters.hxx:
40285
40286         Added 2 new methods encodeEntry and decodeEntry
40287
40288 2006-02-10 12:06  srn
40289
40290         * src/: SALOMEDS/SALOMEDS_Study.cxx,
40291           SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
40292
40293         Added a check for negative savePoint parameters
40294
40295 2006-02-10 10:30  srn
40296
40297         * src/SALOMEDS/SALOMEDS_IParameters.cxx:
40298
40299         Modified a method getDefaultScript
40300
40301 2006-02-10 09:32  rahuel
40302
40303         * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
40304
40305         Debug-ReWrite
40306
40307 2006-02-10 09:28  apo
40308
40309         * src/SALOMEDS/SALOMEDS_TMPFile_i.cxx:
40310
40311         Correct a mistake
40312
40313 2006-02-10 09:12  apo
40314
40315         * src/: SALOMEDSImpl/Makefile.in,
40316           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
40317           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40318           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
40319           SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
40320           SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx, SALOMEDS/Makefile.in,
40321           SALOMEDS/SALOMEDS_Driver_i.cxx, SALOMEDS/SALOMEDS_Driver_i.hxx,
40322           SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx:
40323
40324         Fix for Bug GVIEW10647
40325                 Crash saving the model
40326         (memory allocation optimized)
40327
40328 2006-02-09 17:42  rahuel
40329
40330         * src/Utils/Utils_SignalsHandler.cxx:
40331
40332         SIGSTKFLT does not exist on CCFRT Alphe_OSF
40333
40334 2006-02-09 17:40  rahuel
40335
40336         * src/TestMPIContainer/Makefile.in:
40337
40338         Missing idls
40339
40340 2006-02-09 17:39  rahuel
40341
40342         * src/TestContainer/TestLogger.py:
40343
40344         New test
40345
40346 2006-02-09 17:38  rahuel
40347
40348         * src/TestContainer/TestContainer.cxx:
40349
40350         CORBA::ORB_ptr orb  instead of _var
40351
40352 2006-02-09 17:37  rahuel
40353
40354         * src/TestContainer/TestComponentPy.py:
40355
40356         _get_machineName() does not exist in container interface : replaced by getHostName()
40357
40358 2006-02-09 17:35  rahuel
40359
40360         * src/TestContainer/Makefile.in:
40361
40362         TestLogger.py was added
40363         Missing idls
40364
40365 2006-02-09 17:33  rahuel
40366
40367         * src/SALOMELocalTrace/: BaseTraceCollector.cxx,
40368           LocalTraceBufferPool.cxx:
40369
40370         using namespace std ;
40371         Must follow the includes
40372
40373         static mutex not initialized
40374
40375 2006-02-09 17:30  rahuel
40376
40377         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
40378
40379         using namespace std ;
40380         Must follow the includes
40381
40382         char ...[ variable ] is not correct
40383         Use (as for WNT) : new char[ variable ]
40384
40385 2006-02-09 17:28  rahuel
40386
40387         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
40388           SALOMEDSImpl_AttributeDrawable.cxx,
40389           SALOMEDSImpl_AttributeExpandable.cxx,
40390           SALOMEDSImpl_AttributeIOR.cxx, SALOMEDSImpl_AttributeInteger.cxx:
40391
40392         using namespace std ;
40393         Must follow the includes
40394
40395 2006-02-09 17:19  rahuel
40396
40397         * src/SALOMEDS/: SALOMEDS_GenericAttribute_i.cxx,
40398           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SObject_i.cxx,
40399           SALOMEDS_SObject_i.hxx, SALOMEDS_StudyManager_i.cxx,
40400           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
40401           SALOMEDS_Study_i.hxx:
40402
40403         CORBA::Long instead of long
40404         CORBA::Boolean instead of bool
40405
40406 2006-02-09 17:10  rahuel
40407
40408         * src/SALOMEDS/Makefile.in:
40409
40410         idls missing
40411
40412 2006-02-09 17:01  rahuel
40413
40414         * src/Registry/Makefile.in:
40415
40416         idls missing
40417
40418 2006-02-09 16:58  rahuel
40419
40420         * src/: ModuleGenerator/testIDLparser.in,
40421           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
40422           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
40423           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
40424           NamingService/Makefile.in:
40425
40426         sh instead of bash
40427
40428 2006-02-09 16:56  rahuel
40429
40430         * src/ModuleCatalog/Makefile.in:
40431
40432         idls missing and -ftemplate option
40433
40434 2006-02-09 16:54  rahuel
40435
40436         * src/MPIContainer/Makefile.in:
40437
40438         idls missing
40439
40440 2006-02-09 16:54  rahuel
40441
40442         * src/MPIContainer/MPIContainer_i.cxx:
40443
40444
40445
40446         include of Python.h must be the last one and generally
40447         some system includes must be added before as :
40448         #include <sstream>
40449         #include <time.h>
40450         #include <sys/time.h>
40451         #include <stat.h>
40452
40453 2006-02-09 16:49  rahuel
40454
40455         * src/LifeCycleCORBA/: Launchers.cxx, SALOME_LifeCycleCORBA.cxx:
40456
40457
40458
40459         include of Python.h must be the last one and generally
40460         some system includes must be added before as :
40461         #include <sstream>
40462         #include <time.h>
40463         #include <sys/time.h>
40464         #include <stat.h>
40465
40466 2006-02-09 16:47  rahuel
40467
40468         * src/Container/SALOME_Container_i.hxx:
40469
40470         PortableServer::POA_var poa, instead of _ptr
40471
40472 2006-02-09 16:46  rahuel
40473
40474         * src/Container/SALOME_ContainerManagerServer.cxx:
40475
40476
40477         CORBA::ORB_ptr orb instead of _var
40478
40479 2006-02-09 16:45  rahuel
40480
40481         * src/Container/SALOME_Container.cxx:
40482
40483         include of Python.h must be the last one and generally
40484         some system includes must be added before as :
40485         #include <sstream>
40486         #include <time.h>
40487         #include <sys/time.h>
40488         #include <stat.h>
40489
40490         CORBA::ORB_ptr orb instead of _var
40491
40492         Memory corruption with a char [40]
40493
40494 2006-02-09 16:40  rahuel
40495
40496         * src/Container/Container_init_python.cxx:
40497
40498         include of Python.h must be the last one and generally
40499         some system includes must be added before as :
40500         #include <sstream>
40501         #include <time.h>
40502         #include <sys/time.h>
40503         #include <stat.h>
40504
40505 2006-02-09 16:39  rahuel
40506
40507         * src/Container/Container_i.cxx:
40508
40509         include of Python.h must be the last one and generally
40510         some system includes must be added before as :
40511         #include <sstream>
40512         #include <time.h>
40513         #include <sys/time.h>
40514         #include <stat.h>
40515
40516         PortableServer::POA_var poa instead of _ptr
40517
40518 2006-02-09 16:29  rahuel
40519
40520         * src/Communication_SWIG/Makefile.in:
40521
40522         idl missing
40523
40524 2006-02-09 16:28  rahuel
40525
40526         * src/Basics/BasicsGenericDestructor.cxx:
40527
40528         Static mùutex not initialized
40529
40530 2006-02-09 16:27  rahuel
40531
40532         * salome_adm/unix/config_files/install-sh:
40533
40534         -f option in cp because of "permission denied"
40535
40536 2006-02-09 16:25  rahuel
40537
40538         * salome_adm/unix/config_files/: check_sip.m4, check_vtk.m4:
40539
40540         shell syntax errors
40541
40542 2006-02-09 16:22  rahuel
40543
40544         * salome_adm/unix/config_files/: check_pyqt.m4, check_qwt.m4:
40545
40546         shell syntax errors
40547
40548 2006-02-09 16:22  srn
40549
40550         * src/: SALOMEDS/SALOMEDS_IParameters.cxx,
40551           KERNEL_PY/iparameters.py:
40552
40553         Fixed a bug
40554
40555 2006-02-09 16:21  rahuel
40556
40557         * salome_adm/unix/config_files/check_pthreads.m4:
40558
40559         -lpthread for osf and shell syntax error
40560
40561 2006-02-09 16:19  rahuel
40562
40563         * salome_adm/unix/config_files/check_omniorb.m4:
40564
40565         omniORBCXXFlags for osf1
40566
40567 2006-02-09 16:16  rahuel
40568
40569         * salome_adm/unix/config_files/: ac_cxx_option.m4, check_Salome.m4,
40570           check_cppunit.m4, check_msg2qm.m4:
40571
40572         shell syntax error
40573
40574 2006-02-09 16:14  rahuel
40575
40576         * salome_adm/unix/make_conclude.in:
40577
40578         shell syntax
40579
40580 2006-02-09 16:13  rahuel
40581
40582         * salome_adm/unix/envScript.in:
40583
40584         export syntax
40585
40586 2006-02-09 16:12  rahuel
40587
40588         * bin/runSalome.py:
40589
40590         --terminal option <==> without IHM/GUI was not implemented
40591
40592 2006-02-09 16:09  rahuel
40593
40594         * bin/runSalome:
40595
40596         export and shell syntaxes
40597
40598 2006-02-09 16:07  rahuel
40599
40600         * bin/launchConfigureParser.py:
40601
40602         SuitRoot only if with ihm / GUI
40603
40604 2006-02-09 16:06  rahuel
40605
40606         * bin/killSalomeWithPort.py:
40607
40608         kill of omniNames
40609
40610 2006-02-09 16:04  rahuel
40611
40612         * bin/appliskel/: killCurrentPort, runAppli, runConsole, runParam,
40613           runRemote.sh, runSession, runTests, searchFreePort.sh,
40614           setAppliPath.sh:
40615
40616         sh <--> bash
40617         export syntax
40618
40619 2006-02-09 15:58  rahuel
40620
40621         * configure.in.base:
40622
40623         Required or optionnal products with/without ihm
40624
40625 2006-02-09 15:56  rahuel
40626
40627         * build_configure:
40628
40629         sh instead of bash
40630
40631 2006-02-09 15:55  rahuel
40632
40633         * Makefile.in:
40634
40635         for installation in appliskel : cp with f option
40636
40637 2006-02-09 14:07  apo
40638
40639         * bin/runNS.sh:
40640
40641         To extract number of the port in more correct way
40642
40643 2006-02-09 13:57  apo
40644
40645         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
40646
40647         To handle all kind of the exceptions in the Save functionality
40648
40649 2006-02-09 13:13  jfa
40650
40651         * bin/runSalome.py:
40652
40653         PAL10512: Problems with runSalome --xterm. Run SessionServer in main shell.
40654
40655 2006-02-09 12:52  srn
40656
40657         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40658           SALOMEDS_IParameters.hxx:
40659
40660         Added method getStudyScript
40661
40662 2006-02-09 11:18  jfa
40663
40664         * bin/runSalome.py:
40665
40666         PAL10512: Problems with runSalome --xterm. Run SessionServer and SessionLoader in main shell.
40667
40668 2006-02-09 10:00  srn
40669
40670         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40671           SALOMEDS_IParameters.hxx:
40672
40673         Added getDefaultScript static method
40674
40675 2006-02-08 15:20  srn
40676
40677         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40678           SALOMEDS_IParameters.hxx:
40679
40680         Modified method getLastSavePoint
40681
40682 2006-02-08 15:15  srn
40683
40684         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40685           SALOMEDS_IParameters.hxx:
40686
40687         Added method getLastSavePoint
40688
40689 2006-02-08 10:38  jfa
40690
40691         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
40692           resources/KERNELCatalog.xml:
40693
40694         Update version to 3.2.0a1
40695
40696 2006-02-08 09:07  prascle
40697
40698         * salome_adm/unix/DEPRECATED/make_conclude.in:
40699
40700         PR: allow gui and other modules compilation
40701
40702 2006-02-07 10:33  srn
40703
40704         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40705           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
40706           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
40707           src/SALOMEDS/SALOMEDS_IParameters.cxx,
40708           src/SALOMEDS/SALOMEDS_IParameters.hxx,
40709           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
40710           src/SALOMEDS/SALOMEDS_Study_i.cxx,
40711           src/SALOMEDS/SALOMEDS_Study_i.hxx, src/KERNEL_PY/iparameters.py,
40712           idl/SALOMEDS.idl:
40713
40714         modified method DumpStudy
40715
40716 2006-02-07 09:11  srn
40717
40718         * src/KERNEL_PY/: Makefile.in, iparameters.py:
40719
40720         added IParameters Python interface
40721
40722 2006-02-06 18:30  prascle
40723
40724         * src/NOTIFICATION_SWIG/Makefile.am:
40725
40726         PR: missing sources
40727
40728 2006-02-06 18:29  prascle
40729
40730         * idl/Makefile.am:
40731
40732         PR: idl files distribution
40733
40734 2006-02-06 18:28  prascle
40735
40736         * doc/Makefile.am:
40737
40738         PR: for doc generation
40739
40740 2006-02-06 16:21  srn
40741
40742         * src/SALOMEDS/SALOMEDS_Study.cxx:
40743
40744         update of the package
40745
40746 2006-02-06 15:49  boulant
40747
40748         * configure.ac, salome_adm/unix/Makefile.am,
40749           salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
40750           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
40751           salome_adm/unix/make_omniorb.in,
40752           salome_adm/unix/DEPRECATED/depend.in,
40753           salome_adm/unix/DEPRECATED/make_commence.in,
40754           salome_adm/unix/DEPRECATED/make_conclude.in,
40755           salome_adm/unix/DEPRECATED/make_module.in,
40756           salome_adm/unix/DEPRECATED/make_omniorb.in:
40757
40758         Modifications pour gestion des fichiers obsolètes de salome_adm
40759
40760 2006-02-06 15:33  srn
40761
40762         * salome_adm/unix/make_commence.in,
40763           salome_adm/unix/config_files/check_boost.m4,
40764           salome_adm/unix/pythonbe.pyc,
40765           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40766           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
40767           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
40768           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
40769           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
40770           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
40771           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
40772           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
40773           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
40774           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
40775           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
40776           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
40777           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
40778           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
40779           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
40780           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
40781           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
40782           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
40783           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
40784           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
40785           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
40786           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
40787           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
40788           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
40789           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
40790           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
40791           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
40792           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
40793           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
40794           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
40795           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
40796           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
40797           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
40798           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
40799           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
40800           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
40801           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
40802           src/SALOMEDS/SALOMEDS_SComponent.cxx,
40803           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
40804           src/SALOMEDS/SALOMEDS_SObject.cxx,
40805           src/SALOMEDS/SALOMEDS_Study.cxx,
40806           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
40807           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
40808           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
40809           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
40810
40811         update of the package
40812
40813 2006-02-06 13:51  jfa
40814
40815         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
40816
40817         To support References, stored by Salome maintainance version (2.2.x).
40818
40819 2006-02-06 13:06  srn
40820
40821         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40822           SALOMEDS_IParameters.hxx:
40823
40824         Fixed some bugs
40825
40826 2006-02-06 12:58  srn
40827
40828         * src/SALOMEDS/SALOMEDS_IParameters.cxx:
40829
40830         Fixed method getNbParameters
40831
40832 2006-02-06 09:25  srn
40833
40834         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40835           SALOMEDS_IParameters.hxx:
40836
40837         Added method getProperties
40838
40839 2006-02-06 09:08  srn
40840
40841         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40842           SALOMEDS_IParameters.hxx:
40843
40844         Added methods getEntries and getLists
40845
40846 2006-02-05 14:52  prascle
40847
40848         * src/LifeCycleCORBA_SWIG/Makefile.am:
40849
40850         PR: change comment
40851
40852 2006-02-05 14:51  prascle
40853
40854         * src/NOTIFICATION_SWIG/Makefile.am:
40855
40856         PR: simplification in order to allow parallel make
40857
40858 2006-02-03 15:38  srn
40859
40860         * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
40861           SALOMEDS_IParameters.hxx:
40862
40863         Changed IParameters interafce
40864
40865 2006-02-03 10:52  srn
40866
40867         * src/SALOMEDS/: Makefile.in, SALOMEDS_IParameters.cxx,
40868           SALOMEDS_IParameters.hxx:
40869
40870         Added IParameters interafce
40871
40872 2006-02-02 15:50  srn
40873
40874         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
40875           SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
40876           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40877           SALOMEDSImpl/SALOMEDSImpl_Study.hxx, SALOMEDSImpl/testDS.cxx,
40878           SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
40879           SALOMEDSClient/SALOMEDSClient_Study.hxx,
40880           SALOMEDS/SALOMEDS_AttributeParameter.cxx,
40881           SALOMEDS/SALOMEDS_AttributeParameter.hxx,
40882           SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
40883           SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
40884           SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
40885           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx:
40886
40887         Changed ID to strings and added 2 methods to Study: GetCommonParameters and GetModuleParameters
40888
40889 2006-02-02 15:45  srn
40890
40891         * idl/: SALOMEDS.idl, SALOMEDS_Attributes.idl:
40892
40893         Changed ID to strings and added 2 methods to Study: GetCommonParameters and GetModuleParameters
40894
40895 2006-02-02 14:55  prascle
40896
40897         * salome_adm/unix/make_commence.in:
40898
40899         PR: library name defined on check_boost
40900
40901 2006-02-02 14:00  prascle
40902
40903         * salome_adm/unix/config_files/check_boost.m4:
40904
40905         PR: remove -L/usr/lib
40906
40907 2006-02-02 11:33  prascle
40908
40909         * bin/createAppli.sh, bin/runSalome.py, idl/SALOMEDS.idl,
40910           salome_adm/unix/make_commence.in,
40911           salome_adm/unix/config_files/check_boost.m4,
40912           salome_adm/unix/config_files/check_lam.m4,
40913           salome_adm/unix/config_files/check_pthreads.m4,
40914           src/Communication/ReceiverFactory.cxx,
40915           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
40916           src/Communication/SALOME_Comm_i.cxx,
40917           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
40918           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
40919           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
40920           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
40921           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
40922           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
40923           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
40924           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
40925           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
40926           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
40927           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
40928           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
40929           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
40930           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
40931           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
40932           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
40933           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
40934           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
40935           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
40936           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
40937           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
40938           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
40939           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
40940           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
40941           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
40942           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
40943           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
40944           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
40945           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
40946           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
40947           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
40948           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
40949           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
40950           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
40951           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
40952           src/SALOMEDS/SALOMEDS_SComponent.cxx,
40953           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
40954           src/SALOMEDS/SALOMEDS_SObject.cxx,
40955           src/SALOMEDS/SALOMEDS_Study.cxx,
40956           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
40957           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
40958           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
40959           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
40960           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
40961           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
40962           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
40963           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
40964           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
40965           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
40966
40967         PR: mergefrom branch BR_V3_1_0_PR tag mergeto_trunk_02feb06
40968
40969 2006-02-02 11:23  prascle
40970
40971         * salome_adm/unix/config_files/check_boost.m4:
40972
40973         PR: compatibility with Debian Sarge boost libraries
40974
40975 2006-02-02 10:07  prascle
40976
40977         * bin/runSalome.py, idl/SALOMEDS.idl,
40978           salome_adm/unix/make_commence.in,
40979           salome_adm/unix/config_files/check_boost.m4,
40980           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
40981           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
40982           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
40983           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
40984           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
40985           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
40986           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
40987           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
40988           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
40989           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
40990           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
40991           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
40992           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
40993           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
40994           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
40995           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
40996           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
40997           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
40998           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
40999           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
41000           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
41001           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
41002           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
41003           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
41004           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
41005           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
41006           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
41007           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
41008           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
41009           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
41010           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
41011           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
41012           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
41013           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
41014           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
41015           src/SALOMEDS/SALOMEDS_SComponent.cxx,
41016           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
41017           src/SALOMEDS/SALOMEDS_SObject.cxx,
41018           src/SALOMEDS/SALOMEDS_Study.cxx,
41019           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
41020           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
41021           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
41022           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
41023           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
41024           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
41025           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
41026           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
41027           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
41028           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
41029
41030         PR: merge from branch OCC_development_generic_2006 tag mergeto_BR_V3_1_0_PR_02feb06
41031
41032 2006-02-02 08:46  prascle
41033
41034         * bin/createAppli.sh:
41035
41036         PR: add some checks
41037
41038 2006-02-01 20:48  prascle
41039
41040         * configure.ac, salome_adm/unix/Makefile.am,
41041           salome_adm/unix/make_conclude.in:
41042
41043         PR: to allow GUI compilation
41044
41045 2006-02-01 16:10  prascle
41046
41047         * idl/Makefile.am, src/MPIContainer/Makefile.am,
41048           src/TestMPIContainer/Makefile.am:
41049
41050         PR: debug MPI optional compilation
41051
41052 2006-02-01 16:07  prascle
41053
41054         * src/: TestContainer/Makefile.am, TestContainer/TestContainer.cxx,
41055           TestMPIContainer/TestMPIContainer.cxx,
41056           MPIContainer/SALOME_MPIContainer.cxx:
41057
41058         PR: remove SALOMETraceCollector dependance
41059
41060 2006-02-01 16:04  prascle
41061
41062         * src/: Container/SALOME_Container.cxx,
41063           Container/SALOME_ContainerManagerServer.cxx,
41064           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
41065           LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
41066           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
41067           ModuleCatalog/Makefile.am, Registry/Makefile.am,
41068           Registry/SALOME_Registry_Server.cxx:
41069
41070         PR: remove SALOMETraceCollector dependance
41071
41072 2006-02-01 16:03  prascle
41073
41074         * src/Container/Makefile.am:
41075
41076         PR: remove SALOMETraceCollector dependance, SALOME_ContainerPy.py must be executable
41077
41078 2006-02-01 09:48  jfa
41079
41080         * src/SALOMEDS/: SALOMEDS_AttributeComment.cxx,
41081           SALOMEDS_AttributeDrawable.cxx, SALOMEDS_AttributeDrawable_i.cxx,
41082           SALOMEDS_AttributeExpandable.cxx,
41083           SALOMEDS_AttributeExpandable_i.cxx,
41084           SALOMEDS_AttributeExternalFileDef.cxx,
41085           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFlags.cxx,
41086           SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeIOR.cxx,
41087           SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeLocalID.cxx,
41088           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeOpened.cxx,
41089           SALOMEDS_AttributePersistentRef.cxx,
41090           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.cxx,
41091           SALOMEDS_AttributePythonObject.cxx, SALOMEDS_AttributeReal.cxx,
41092           SALOMEDS_AttributeSelectable.cxx,
41093           SALOMEDS_AttributeSequenceOfInteger.cxx,
41094           SALOMEDS_AttributeSequenceOfReal.cxx,
41095           SALOMEDS_AttributeStudyProperties.cxx,
41096           SALOMEDS_AttributeTableOfInteger.cxx,
41097           SALOMEDS_AttributeTableOfReal.cxx,
41098           SALOMEDS_AttributeTableOfString.cxx,
41099           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTextColor.cxx,
41100           SALOMEDS_AttributeTextHighlightColor.cxx,
41101           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeUserID.cxx,
41102           SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
41103           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
41104           SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
41105           SALOMEDS_SObject.cxx, SALOMEDS_Study.cxx,
41106           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx,
41107           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
41108
41109         Fix for bugs 11276, 11387: protect 'local' branches of 'client' classes with SALOMEDS::Locker.
41110
41111 2006-01-31 19:24  boulant
41112
41113         * Makefile.in, clean_configure, configure.ac, bin/Makefile.am,
41114           idl/Makefile.am, src/Makefile.am, src/Makefile.in,
41115           src/Communication/Makefile.am, src/Communication/Makefile.in,
41116           src/Communication_SWIG/Makefile.am,
41117           src/Communication_SWIG/Makefile.in, src/Container/Makefile.in,
41118           src/HDFPersist/Makefile.am, src/HDFPersist/Makefile.in,
41119           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
41120           src/LifeCycleCORBA/Test/Makefile.am,
41121           src/LifeCycleCORBA/Test/Makefile.in,
41122           src/LifeCycleCORBA_SWIG/Makefile.am,
41123           src/MPIContainer/Makefile.am, src/MPIContainer/Makefile.in,
41124           src/NamingService/Test/Makefile.am,
41125           src/NamingService/Test/Makefile.in, src/SALOMEDS/Makefile.am,
41126           src/SALOMEDS/Makefile.in, src/SALOMEDSImpl/Makefile.am,
41127           src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in,
41128           src/TestMPIContainer/Makefile.am,
41129           src/TestMPIContainer/Makefile.in, src/UnitTests/Makefile.am,
41130           src/UnitTests/Makefile.in:
41131
41132         - Traitement des Makefile.in modifiés depuis V310a2,
41133         - Prise en compte des répertoires de test + nouveaux répertoires
41134
41135 2006-01-31 13:52  jfa
41136
41137         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
41138
41139         Debug of DumpStudy() method.
41140
41141 2006-01-27 19:37  boulant
41142
41143         * AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, clean_configure,
41144           configure.ac, configure.in.base, make_config.in,
41145           DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
41146           DEPRECATED/make_config.in, bin/Makefile.am, bin/runIDLparser.in,
41147           doc/Makefile.in, doc/index.txt, doc/rst.css, doc/txt2html.sh,
41148           doc/userguide.txt, idl/Makefile.am, idl/Makefile.in,
41149           resources/Makefile.am, resources/Plugin.in,
41150           salome_adm/Makefile.am, salome_adm/Makefile.in,
41151           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
41152           salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
41153           salome_adm/unix/config.h.in, salome_adm/unix/envScript.in,
41154           salome_adm/unix/make_commence.in,
41155           salome_adm/unix/make_common_starter.am,
41156           salome_adm/unix/make_conclude.in, salome_adm/unix/sstream.in,
41157           salome_adm/unix/DEPRECATED/Doxyfile,
41158           salome_adm/unix/DEPRECATED/F77config.h.in,
41159           salome_adm/unix/DEPRECATED/config.h.in,
41160           salome_adm/unix/DEPRECATED/envScript.in,
41161           salome_adm/unix/DEPRECATED/sstream.in,
41162           salome_adm/unix/config_files/Makefile.am,
41163           salome_adm/unix/config_files/ac_cc_warnings.m4,
41164           salome_adm/unix/config_files/ac_cxx_bool.m4,
41165           salome_adm/unix/config_files/ac_cxx_mutable.m4,
41166           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
41167           salome_adm/unix/config_files/ac_cxx_typename.m4,
41168           salome_adm/unix/config_files/check_Salome.m4,
41169           salome_adm/unix/config_files/check_cas.m4,
41170           salome_adm/unix/config_files/check_cppunit.m4,
41171           salome_adm/unix/config_files/check_htmlgen.m4,
41172           salome_adm/unix/config_files/check_java.m4,
41173           salome_adm/unix/config_files/check_local.m4,
41174           salome_adm/unix/config_files/check_lsf.m4,
41175           salome_adm/unix/config_files/check_mico.m4,
41176           salome_adm/unix/config_files/check_mpi.m4,
41177           salome_adm/unix/config_files/check_openpbs.m4,
41178           salome_adm/unix/config_files/check_qt.m4,
41179           salome_adm/unix/config_files/config.guess,
41180           salome_adm/unix/config_files/config.sub,
41181           salome_adm/unix/config_files/install-sh,
41182           salome_adm/unix/config_files/libtool.m4,
41183           salome_adm/unix/config_files/ltconfig,
41184           salome_adm/unix/config_files/ltmain.sh,
41185           salome_adm/unix/config_files/missing,
41186           salome_adm/unix/config_files/mkinstalldirs,
41187           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
41188           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
41189           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
41190           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
41191           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
41192           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
41193           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
41194           salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
41195           salome_adm/unix/config_files/DEPRECATED/config.guess,
41196           salome_adm/unix/config_files/DEPRECATED/config.sub,
41197           salome_adm/unix/config_files/DEPRECATED/install-sh,
41198           salome_adm/unix/config_files/DEPRECATED/libtool.m4,
41199           salome_adm/unix/config_files/DEPRECATED/ltconfig,
41200           salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
41201           salome_adm/unix/config_files/DEPRECATED/missing,
41202           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
41203           src/Makefile.am, src/Basics/Makefile.am, src/Basics/Makefile.in,
41204           src/Basics/Test/Makefile.am, src/Basics/Test/Makefile.in,
41205           src/Communication/Makefile.am, src/Container/Makefile.am,
41206           src/GenericObj/Makefile.am, src/GenericObj/Makefile.in,
41207           src/HDFPersist/Makefile.am, src/KERNEL_PY/Makefile.am,
41208           src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
41209           src/LifeCycleCORBA/Test/Makefile.am,
41210           src/LifeCycleCORBA_SWIG/Makefile.am,
41211           src/LifeCycleCORBA_SWIG/Makefile.in, src/Logger/Makefile.am,
41212           src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
41213           src/Logger/SALOME_Logger_Server_main.cxx,
41214           src/Logger/Test/Makefile.am, src/Logger/Test/Makefile.in,
41215           src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
41216           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
41217           src/NOTIFICATION_SWIG/Makefile.am,
41218           src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
41219           src/NamingService/Makefile.in, src/Notification/Makefile.am,
41220           src/Notification/Makefile.in, src/Registry/Makefile.am,
41221           src/Registry/Makefile.in, src/ResourcesManager/Makefile.am,
41222           src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.am,
41223           src/SALOMEDSClient/Makefile.am, src/SALOMEDSClient/Makefile.in,
41224           src/SALOMEDSImpl/Makefile.am, src/SALOMELocalTrace/Makefile.am,
41225           src/SALOMELocalTrace/Makefile.in,
41226           src/SALOMELocalTrace/Test/Makefile.am,
41227           src/SALOMELocalTrace/Test/Makefile.in,
41228           src/SALOMETraceCollector/Makefile.am,
41229           src/SALOMETraceCollector/Makefile.in,
41230           src/SALOMETraceCollector/Test/Makefile.am,
41231           src/SALOMETraceCollector/Test/Makefile.in,
41232           src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
41233           src/TestContainer/Makefile.in, src/UnitTests/Makefile.am,
41234           src/Utils/Makefile.am, src/Utils/Makefile.in,
41235           src/Utils/Test/Makefile.am, src/Utils/Test/Makefile.in:
41236
41237         Merge de la branche BR_auto_V310a2
41238
41239 2006-01-27 19:18  boulant
41240
41241         * build_configure:
41242
41243         Merge de la branche BR_auto_V310a2
41244
41245 2006-01-26 16:12  boulant
41246
41247         * src/Basics/Makefile.am:
41248
41249         Suppression du subdir Test car il est prévu par le Makefile.am principal (src).
41250
41251 2006-01-26 08:10  srn
41252
41253         * idl/SALOMEDS_Attributes.idl, src/SALOMEDS/Makefile.in,
41254           src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
41255           src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
41256           src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
41257           src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
41258           src/SALOMEDS/SALOMEDS_Attributes.hxx,
41259           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
41260           src/SALOMEDSClient/Makefile.in,
41261           src/SALOMEDSClient/SALOMEDSClient.hxx,
41262           src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
41263           src/SALOMEDSImpl/Makefile.in,
41264           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
41265           src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
41266           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
41267           src/SALOMEDSImpl/testDS.cxx:
41268
41269         Implementation of AttributeParameter
41270
41271 2006-01-20 07:50  apo
41272
41273         * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
41274
41275         Join BR2-D5-38-2003
41276
41277 2006-01-16 15:56  secher
41278
41279         * salome_adm/unix/config_files/check_lam.m4,
41280           salome_adm/unix/config_files/check_pthreads.m4,
41281           src/Communication/ReceiverFactory.cxx,
41282           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
41283           src/Communication/SALOME_Comm_i.cxx:
41284
41285         porting on Mandrake 10.1
41286
41287 2006-01-13 07:28  apo
41288
41289         * bin/runSalome.py, src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
41290
41291         Adjust to OCC_development_generic_2006
41292
41293 2006-01-12 14:35  jfa
41294
41295         * bin/: runSalome.py:
41296
41297         PAL9102: Problem with module name with lower case.
41298
41299 2006-01-11 09:18  apo
41300
41301         * INSTALL, LICENCE, Makefile.in, README, README.FIRST.txt,
41302           build_configure, configure.in.base, make_config.in,
41303           bin/NSparam.py, bin/VERSION, bin/addToKillList.py,
41304           bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
41305           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
41306           bin/orbmodule.py, bin/runNS.sh, bin/runSalome, bin/runSalome.csh,
41307           bin/runSalome.py, bin/salome.launch, bin/salomeConsole.py,
41308           bin/showNS.py, bin/appliskel/.bashrc,
41309           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
41310           bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
41311           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
41312           bin/appliskel/runConsole, bin/appliskel/runParam,
41313           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
41314           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
41315           bin/appliskel/setAppliPath.sh, doc/INSTALL.txt, doc/Makefile.in,
41316           doc/SALOME_Application.txt, doc/UnitTests.txt,
41317           doc/configuration_examples/example_prerequis.sh,
41318           doc/salome/DevelopersGuide.pdf, doc/salome/DevelopersGuide.ps,
41319           doc/salome/KERNEL_index.html, doc/salome/Makefile.in,
41320           doc/salome/OrganisationProduction_PAL.pdf,
41321           doc/salome/OrganisationProduction_PAL.ps,
41322           doc/salome/OrganisationProduction_PAL.sxw,
41323           doc/salome/Parallelisme_dans_Salome.pdf,
41324           doc/salome/Parallelisme_dans_Salome.ps,
41325           doc/salome/ResourcesManagerManual.pdf,
41326           doc/salome/Utilitaires_SALOME.doc,
41327           doc/salome/Utilitaires_SALOME.pdf,
41328           doc/salome/Utilitaires_SALOME.ps,
41329           doc/salome/kernel_resources.pdf, doc/salome/kernel_resources.ps,
41330           doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.in,
41331           doc/salome/tui/pythfilter.py, idl/Logger.idl, idl/Makefile.in,
41332           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
41333           idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
41334           idl/SALOME_ContainerManager.idl, idl/SALOME_DataTypeCatalog.idl,
41335           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
41336           idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
41337           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
41338           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_TestComponent.idl,
41339           idl/SALOME_TestMPIComponent.idl,
41340           idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
41341           idl/TypeData.idl, idl/nstest.idl,
41342           resources/Application-About.png, resources/Application-Logo.png,
41343           resources/Application-Splash.png, resources/CatalogDataType.xml,
41344           resources/CatalogModulePersonnel.xml_skel,
41345           resources/CatalogResources.xml, resources/KERNELCatalog.xml,
41346           resources/Plugin.in, resources/SALOMEDS_Resources,
41347           resources/Tools_en.xml, resources/Tools_fr.xml,
41348           resources/back.xpm, resources/cascade.png, resources/channel.cfg,
41349           resources/close.png, resources/config, resources/copy.png,
41350           resources/default.png, resources/dl_delete.png,
41351           resources/dl_insert.png, resources/dl_movedown.png,
41352           resources/dl_moveup.png, resources/forward.xpm,
41353           resources/help.png, resources/home.xpm, resources/new.png,
41354           resources/open.png, resources/paste.png,
41355           resources/plot2d_dump.png, resources/plot2d_fitall.png,
41356           resources/plot2d_fitarea.png, resources/plot2d_legend.png,
41357           resources/plot2d_linear.png, resources/plot2d_linear_y.png,
41358           resources/plot2d_lines.png, resources/plot2d_log.png,
41359           resources/plot2d_log_y.png, resources/plot2d_pan.png,
41360           resources/plot2d_points.png, resources/plot2d_settings.png,
41361           resources/plot2d_splines.png, resources/plot2d_zoom.png,
41362           resources/print.png, resources/redo.png, resources/reset.png,
41363           resources/salomeCommonModel.spml, resources/save.png,
41364           resources/select1.png, resources/tile.png, resources/uc_add.png,
41365           resources/uc_clear.png, resources/uc_current.png,
41366           resources/uc_del.png, resources/uc_new.png, resources/undo.png,
41367           resources/view_back.png, resources/view_bottom.png,
41368           resources/view_camera_dump.png, resources/view_fitall.png,
41369           resources/view_fitarea.png, resources/view_front.png,
41370           resources/view_glpan.png, resources/view_left.png,
41371           resources/view_pan.png, resources/view_reset.png,
41372           resources/view_right.png, resources/view_rotate.png,
41373           resources/view_top.png, resources/view_triedre.png,
41374           resources/view_zoom.png, salome_adm/Makefile.in,
41375           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
41376           salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/config.h.in,
41377           salome_adm/unix/depend.in, salome_adm/unix/envScript.in,
41378           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
41379           salome_adm/unix/make_omniorb.in, salome_adm/unix/pythonbe.py,
41380           salome_adm/unix/sstream.in,
41381           salome_adm/unix/config_files/ac_cc_warnings.m4,
41382           salome_adm/unix/config_files/ac_cxx_bool.m4,
41383           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
41384           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
41385           salome_adm/unix/config_files/ac_cxx_mutable.m4,
41386           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
41387           salome_adm/unix/config_files/ac_cxx_option.m4,
41388           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
41389           salome_adm/unix/config_files/ac_cxx_template_options.m4,
41390           salome_adm/unix/config_files/ac_cxx_typename.m4,
41391           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
41392           salome_adm/unix/config_files/ac_cxx_warnings.m4,
41393           salome_adm/unix/config_files/ac_linker_options.m4,
41394           salome_adm/unix/config_files/check_Kernel.m4,
41395           salome_adm/unix/config_files/check_Salome.m4,
41396           salome_adm/unix/config_files/check_cas.m4,
41397           salome_adm/unix/config_files/check_corba.m4,
41398           salome_adm/unix/config_files/check_cppunit.m4,
41399           salome_adm/unix/config_files/check_f77.m4,
41400           salome_adm/unix/config_files/check_hdf5.m4,
41401           salome_adm/unix/config_files/check_htmlgen.m4,
41402           salome_adm/unix/config_files/check_java.m4,
41403           salome_adm/unix/config_files/check_lam.m4,
41404           salome_adm/unix/config_files/check_lsf.m4,
41405           salome_adm/unix/config_files/check_mico.m4,
41406           salome_adm/unix/config_files/check_mpi.m4,
41407           salome_adm/unix/config_files/check_mpich.m4,
41408           salome_adm/unix/config_files/check_msg2qm.m4,
41409           salome_adm/unix/config_files/check_omniorb.m4,
41410           salome_adm/unix/config_files/check_opengl.m4,
41411           salome_adm/unix/config_files/check_openpbs.m4,
41412           salome_adm/unix/config_files/check_pthreads.m4,
41413           salome_adm/unix/config_files/check_pyqt.m4,
41414           salome_adm/unix/config_files/check_qt.m4,
41415           salome_adm/unix/config_files/check_qwt.m4,
41416           salome_adm/unix/config_files/check_sip.m4,
41417           salome_adm/unix/config_files/check_sockets.m4,
41418           salome_adm/unix/config_files/check_swig.m4,
41419           salome_adm/unix/config_files/check_vtk.m4,
41420           salome_adm/unix/config_files/check_withihm.m4,
41421           salome_adm/unix/config_files/config.guess,
41422           salome_adm/unix/config_files/config.sub,
41423           salome_adm/unix/config_files/enable_pthreads.m4,
41424           salome_adm/unix/config_files/install-sh,
41425           salome_adm/unix/config_files/libtool.m4,
41426           salome_adm/unix/config_files/ltconfig,
41427           salome_adm/unix/config_files/ltmain.sh,
41428           salome_adm/unix/config_files/missing,
41429           salome_adm/unix/config_files/mkinstalldirs,
41430           salome_adm/unix/config_files/production.m4,
41431           salome_adm/unix/config_files/pyembed.m4,
41432           salome_adm/unix/config_files/python.m4, src/Makefile.in,
41433           src/Basics/BasicsGenericDestructor.cxx,
41434           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.in,
41435           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.in,
41436           src/Communication/Makefile.in,
41437           src/Communication/MultiCommException.cxx,
41438           src/Communication/MultiCommException.hxx,
41439           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
41440           src/Communication/ReceiverFactory.cxx,
41441           src/Communication/ReceiverFactory.hxx,
41442           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
41443           src/Communication/SALOMEMultiComm.cxx,
41444           src/Communication/SALOMEMultiComm.hxx,
41445           src/Communication/SALOME_Comm_i.cxx,
41446           src/Communication/SALOME_Comm_i.hxx,
41447           src/Communication/SenderFactory.cxx,
41448           src/Communication/SenderFactory.hxx,
41449           src/Communication/libSALOME_Comm.i,
41450           src/Communication_SWIG/Makefile.in,
41451           src/Communication_SWIG/libSALOME_Comm.i,
41452           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
41453           src/Container/Container_init_python.cxx,
41454           src/Container/Container_init_python.hxx,
41455           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
41456           src/Container/SALOME_Component_i.hxx,
41457           src/Container/SALOME_Container.cxx,
41458           src/Container/SALOME_Container.py,
41459           src/Container/SALOME_ContainerManager.cxx,
41460           src/Container/SALOME_ContainerManager.hxx,
41461           src/Container/SALOME_ContainerManagerServer.cxx,
41462           src/Container/SALOME_ContainerPy.py,
41463           src/Container/SALOME_Container_SignalsHandler.cxx,
41464           src/Container/SALOME_Container_i.hxx, src/GenericObj/Makefile.in,
41465           src/GenericObj/SALOME_GenericObj_i.cc,
41466           src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
41467           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
41468           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
41469           src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
41470           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
41471           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
41472           src/HDFPersist/HDFattribute.hxx,
41473           src/HDFPersist/HDFcontainerObject.cc,
41474           src/HDFPersist/HDFcontainerObject.hxx,
41475           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
41476           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
41477           src/HDFPersist/HDFdatasetClose.c,
41478           src/HDFPersist/HDFdatasetCreate.c,
41479           src/HDFPersist/HDFdatasetGetDim.c,
41480           src/HDFPersist/HDFdatasetGetOrder.c,
41481           src/HDFPersist/HDFdatasetGetSize.c,
41482           src/HDFPersist/HDFdatasetGetType.c,
41483           src/HDFPersist/HDFdatasetGetnDim.c,
41484           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
41485           src/HDFPersist/HDFdatasetWrite.c,
41486           src/HDFPersist/HDFerrorModeLock.c,
41487           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
41488           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
41489           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
41490           src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
41491           src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
41492           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
41493           src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
41494           src/HDFPersist/HDFgroupOpen.c,
41495           src/HDFPersist/HDFinternalObject.cc,
41496           src/HDFPersist/HDFinternalObject.hxx,
41497           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
41498           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
41499           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
41500           src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
41501           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
41502           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
41503           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
41504           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
41505           src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
41506           src/KERNEL_PY/Makefile.in, src/KERNEL_PY/PyInterp.py,
41507           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
41508           src/KERNEL_PY/kernel_shared_modules.py,
41509           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
41510           src/KERNEL_PY/salome_ComponentGUI.py,
41511           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
41512           src/KERNEL_PY/salome_shared_modules.py,
41513           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
41514           src/LifeCycleCORBA/Launchers.cxx,
41515           src/LifeCycleCORBA/Launchers.hxx,
41516           src/LifeCycleCORBA/Launchers.py,
41517           src/LifeCycleCORBA/LifeCycleCORBA.py,
41518           src/LifeCycleCORBA/Makefile.in,
41519           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
41520           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
41521           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
41522           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
41523           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
41524           src/LifeCycleCORBA/Test/Makefile.in,
41525           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
41526           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
41527           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
41528           src/LifeCycleCORBA_SWIG/Makefile.in,
41529           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
41530           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
41531           src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
41532           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
41533           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
41534           src/Logger/Test/Makefile.in, src/Logger/Test/TestKiller.py,
41535           src/MPIContainer/MPIContainer_i.cxx,
41536           src/MPIContainer/MPIContainer_i.hxx,
41537           src/MPIContainer/MPIObject_i.cxx,
41538           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
41539           src/MPIContainer/SALOME_MPIContainer.cxx,
41540           src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
41541           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
41542           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
41543           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
41544           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
41545           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
41546           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
41547           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
41548           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
41549           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
41550           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
41551           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
41552           src/ModuleCatalog/SALOME_TestModuleCatalog.py,
41553           src/ModuleGenerator/IDLparser.py,
41554           src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
41555           src/ModuleGenerator/testIDLparser.in,
41556           src/ModuleGenerator/tests/Truc2Component.idl,
41557           src/ModuleGenerator/tests/TrucComponent.idl,
41558           src/ModuleGenerator/tests/test1.sh,
41559           src/ModuleGenerator/tests/test1b.sh,
41560           src/ModuleGenerator/tests/test2.sh,
41561           src/ModuleGenerator/tests/test3.sh,
41562           src/ModuleGenerator/tests/test4.sh,
41563           src/ModuleGenerator/tests/test5.sh,
41564           src/NOTIFICATION_SWIG/Makefile.in,
41565           src/NOTIFICATION_SWIG/NOTIFICATION.i,
41566           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
41567           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
41568           src/NamingService/Makefile.in,
41569           src/NamingService/NamingService_WaitForServerReadiness.cxx,
41570           src/NamingService/NamingService_WaitForServerReadiness.hxx,
41571           src/NamingService/SALOME_NamingService.cxx,
41572           src/NamingService/SALOME_NamingService.hxx,
41573           src/NamingService/SALOME_NamingService.i,
41574           src/NamingService/SALOME_NamingServicePy.py,
41575           src/NamingService/ServiceUnreachable.cxx,
41576           src/NamingService/ServiceUnreachable.hxx,
41577           src/NamingService/Test/Makefile.in,
41578           src/NamingService/Test/NamingServiceTest.cxx,
41579           src/NamingService/Test/NamingServiceTest.hxx,
41580           src/NamingService/Test/TestNamingService.cxx,
41581           src/NamingService/Test/TestNamingService.py,
41582           src/Notification/CosNotifyShorthands.h,
41583           src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
41584           src/Notification/NOTIFICATION.hxx,
41585           src/Notification/NOTIFICATION_Consumer.cxx,
41586           src/Notification/NOTIFICATION_Consumer.hxx,
41587           src/Notification/NOTIFICATION_Supplier.cxx,
41588           src/Notification/NOTIFICATION_Supplier.hxx,
41589           src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
41590           src/Registry/RegistryConnexion.hxx,
41591           src/Registry/RegistryService.cxx,
41592           src/Registry/RegistryService.hxx,
41593           src/Registry/SALOME_Registry_Server.cxx,
41594           src/ResourcesManager/Makefile.in,
41595           src/ResourcesManager/SALOME_LoadRateManager.cxx,
41596           src/ResourcesManager/SALOME_LoadRateManager.hxx,
41597           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
41598           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
41599           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
41600           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
41601           src/ResourcesManager/SALOME_ResourcesManager.cxx,
41602           src/ResourcesManager/SALOME_ResourcesManager.hxx,
41603           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
41604           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
41605           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
41606           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
41607           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
41608           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
41609           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
41610           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
41611           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
41612           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
41613           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
41614           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
41615           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
41616           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
41617           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
41618           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
41619           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
41620           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
41621           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
41622           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
41623           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
41624           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
41625           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
41626           src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
41627           src/SALOMEDS/SALOMEDS.cdl, src/SALOMEDS/SALOMEDS.cxx,
41628           src/SALOMEDS/SALOMEDS.hxx, src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
41629           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
41630           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
41631           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
41632           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
41633           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
41634           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
41635           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
41636           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
41637           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
41638           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
41639           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
41640           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
41641           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
41642           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
41643           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
41644           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
41645           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
41646           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
41647           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
41648           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
41649           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
41650           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
41651           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
41652           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
41653           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
41654           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
41655           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
41656           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
41657           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
41658           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
41659           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
41660           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
41661           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
41662           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
41663           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
41664           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
41665           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
41666           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
41667           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
41668           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
41669           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
41670           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
41671           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
41672           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
41673           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
41674           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
41675           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
41676           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
41677           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
41678           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
41679           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
41680           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
41681           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
41682           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
41683           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
41684           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
41685           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
41686           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
41687           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
41688           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
41689           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
41690           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
41691           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
41692           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
41693           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
41694           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
41695           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
41696           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
41697           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
41698           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
41699           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
41700           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
41701           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
41702           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
41703           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
41704           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
41705           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
41706           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
41707           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
41708           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
41709           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
41710           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
41711           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
41712           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
41713           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
41714           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
41715           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
41716           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
41717           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
41718           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
41719           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
41720           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
41721           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
41722           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
41723           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
41724           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
41725           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
41726           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
41727           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
41728           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
41729           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
41730           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
41731           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
41732           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
41733           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
41734           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
41735           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
41736           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
41737           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
41738           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
41739           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
41740           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
41741           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
41742           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
41743           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
41744           src/SALOMEDS/SALOMEDS_Attributes.hxx,
41745           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
41746           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
41747           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
41748           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
41749           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
41750           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
41751           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
41752           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
41753           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
41754           src/SALOMEDS/SALOMEDS_Client.cxx,
41755           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
41756           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
41757           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
41758           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
41759           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
41760           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
41761           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
41762           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
41763           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
41764           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
41765           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
41766           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
41767           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
41768           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
41769           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
41770           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
41771           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
41772           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
41773           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
41774           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
41775           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
41776           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
41777           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
41778           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
41779           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
41780           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
41781           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
41782           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
41783           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
41784           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
41785           src/SALOMEDS/SALOMEDS_FileType.cdl,
41786           src/SALOMEDS/SALOMEDS_FileType.cxx,
41787           src/SALOMEDS/SALOMEDS_FileType.hxx,
41788           src/SALOMEDS/SALOMEDS_FileType.ixx,
41789           src/SALOMEDS/SALOMEDS_FileType.jxx,
41790           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
41791           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
41792           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
41793           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
41794           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
41795           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
41796           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
41797           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
41798           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
41799           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
41800           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
41801           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
41802           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
41803           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
41804           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
41805           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
41806           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
41807           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
41808           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
41809           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
41810           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
41811           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
41812           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
41813           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
41814           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
41815           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
41816           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
41817           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
41818           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
41819           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
41820           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
41821           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
41822           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
41823           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
41824           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
41825           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
41826           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
41827           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
41828           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
41829           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
41830           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
41831           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
41832           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
41833           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
41834           src/SALOMEDS/SALOMEDS_SComponent.cxx,
41835           src/SALOMEDS/SALOMEDS_SComponent.hxx,
41836           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
41837           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
41838           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
41839           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
41840           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
41841           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
41842           src/SALOMEDS/SALOMEDS_SObject.cxx,
41843           src/SALOMEDS/SALOMEDS_SObject.hxx,
41844           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
41845           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
41846           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
41847           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
41848           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
41849           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
41850           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
41851           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
41852           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
41853           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
41854           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
41855           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
41856           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
41857           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
41858           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
41859           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
41860           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
41861           src/SALOMEDS/SALOMEDS_Server.cxx,
41862           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
41863           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
41864           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
41865           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
41866           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
41867           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
41868           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
41869           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
41870           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
41871           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
41872           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
41873           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
41874           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
41875           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
41876           src/SALOMEDS/SALOMEDS_Study_i.cxx,
41877           src/SALOMEDS/SALOMEDS_Study_i.hxx,
41878           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
41879           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
41880           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
41881           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
41882           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
41883           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
41884           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
41885           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
41886           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
41887           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
41888           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
41889           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
41890           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
41891           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
41892           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
41893           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
41894           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
41895           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
41896           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
41897           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
41898           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
41899           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
41900           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
41901           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
41902           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
41903           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
41904           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
41905           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
41906           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
41907           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
41908           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
41909           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
41910           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
41911           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
41912           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
41913           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDSClient/Makefile.in,
41914           src/SALOMEDSClient/SALOMEDSClient.hxx,
41915           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
41916           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
41917           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
41918           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
41919           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
41920           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
41921           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
41922           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
41923           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
41924           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
41925           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
41926           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
41927           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
41928           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
41929           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
41930           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
41931           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
41932           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
41933           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
41934           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
41935           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
41936           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
41937           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
41938           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
41939           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
41940           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
41941           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
41942           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
41943           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
41944           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
41945           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
41946           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
41947           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
41948           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
41949           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
41950           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
41951           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
41952           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
41953           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
41954           src/SALOMEDSImpl/Makefile.in,
41955           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
41956           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
41957           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
41958           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
41959           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
41960           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
41961           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
41962           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
41963           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
41964           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
41965           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
41966           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
41967           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
41968           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
41969           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
41970           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
41971           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
41972           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
41973           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
41974           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
41975           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
41976           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
41977           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
41978           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
41979           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
41980           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
41981           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
41982           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
41983           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
41984           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
41985           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
41986           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
41987           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
41988           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
41989           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
41990           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
41991           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
41992           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
41993           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
41994           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
41995           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
41996           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
41997           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
41998           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
41999           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
42000           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
42001           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
42002           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
42003           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
42004           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
42005           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
42006           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
42007           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
42008           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
42009           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
42010           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
42011           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
42012           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
42013           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
42014           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
42015           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
42016           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
42017           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
42018           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
42019           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
42020           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
42021           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
42022           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
42023           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
42024           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
42025           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
42026           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
42027           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
42028           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
42029           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
42030           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
42031           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
42032           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
42033           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
42034           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
42035           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
42036           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
42037           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
42038           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
42039           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
42040           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
42041           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
42042           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
42043           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
42044           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
42045           src/SALOMEDSImpl/testDS.cxx,
42046           src/SALOMELocalTrace/BaseTraceCollector.cxx,
42047           src/SALOMELocalTrace/BaseTraceCollector.hxx,
42048           src/SALOMELocalTrace/FileTraceCollector.cxx,
42049           src/SALOMELocalTrace/FileTraceCollector.hxx,
42050           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
42051           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
42052           src/SALOMELocalTrace/LocalTraceCollector.cxx,
42053           src/SALOMELocalTrace/LocalTraceCollector.hxx,
42054           src/SALOMELocalTrace/Makefile.in,
42055           src/SALOMELocalTrace/utilities.h,
42056           src/SALOMELocalTrace/Test/Makefile.in,
42057           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
42058           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
42059           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
42060           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
42061           src/SALOMETraceCollector/Makefile.in,
42062           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
42063           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
42064           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
42065           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
42066           src/SALOMETraceCollector/Test/Makefile.in,
42067           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
42068           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
42069           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
42070           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
42071           src/TOOLSDS/Makefile.in, src/TOOLSDS/SALOMEDS_Tool.cxx,
42072           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.in,
42073           src/TestContainer/SALOME_TestComponentPy.py,
42074           src/TestContainer/SALOME_TestComponent_i.cxx,
42075           src/TestContainer/SALOME_TestComponent_i.hxx,
42076           src/TestContainer/TestComponentPy.py,
42077           src/TestContainer/TestContainer.cxx,
42078           src/TestContainer/TestLogger.cxx,
42079           src/TestMPIContainer/Makefile.in,
42080           src/TestMPIContainer/TestMPIComponentEngine.cxx,
42081           src/TestMPIContainer/TestMPIComponentEngine.hxx,
42082           src/TestMPIContainer/TestMPIContainer.cxx,
42083           src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
42084           src/UnitTests/UnitTests.py, src/Utils/Makefile.in,
42085           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
42086           src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
42087           src/Utils/Utils_CommException.cxx,
42088           src/Utils/Utils_CommException.hxx,
42089           src/Utils/Utils_CorbaException.hxx,
42090           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
42091           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
42092           src/Utils/Utils_ExceptHandlers.cxx,
42093           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
42094           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
42095           src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
42096           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
42097           src/Utils/Utils_SALOME_Exception.cxx,
42098           src/Utils/Utils_SALOME_Exception.hxx,
42099           src/Utils/Utils_SINGLETON.hxx,
42100           src/Utils/Utils_SignalsHandler.cxx,
42101           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
42102           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
42103           src/Utils/Test/Makefile.in, src/Utils/Test/TestUtils.cxx,
42104           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
42105           src/Utils/Test/UtilsTest.hxx:
42106
42107         Merge with OCC_development_generic_2006
42108
42109 2006-01-10 15:34  jfa
42110
42111         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
42112
42113         PAL11181: 'invalid pointer' when loading GEOM after an hdf.
42114
42115 2006-01-10 10:49  vsr
42116
42117         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
42118
42119         Update version number: 2.2.8
42120
42121 2005-12-29 13:53  asl
42122
42123         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_StudyManager.cxx,
42124           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
42125           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
42126           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
42127           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
42128
42129         PAL10035 - no warning if there is no rights to save
42130
42131 2005-12-29 13:07  apo
42132
42133         * salome_adm/unix/make_commence.in:
42134
42135         Adjust to HEAD modifications
42136
42137 2005-12-22 15:01  prascle
42138
42139         * INSTALL, bin/VERSION, bin/launchConfigureParser.py,
42140           bin/runSalome.py, resources/CatalogResources.xml,
42141           resources/KERNELCatalog.xml, salome_adm/unix/pythonbe.py,
42142           salome_adm/unix/config_files/check_lam.m4,
42143           salome_adm/unix/config_files/check_omniorb.m4,
42144           salome_adm/unix/config_files/check_qwt.m4,
42145           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
42146           src/Container/SALOME_ContainerManager.cxx,
42147           src/Container/SALOME_ContainerManager.hxx,
42148           src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/Makefile.in,
42149           src/KERNEL_PY/kernel_shared_modules.py,
42150           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
42151           src/KERNEL_PY/salome_shared_modules.py,
42152           src/KERNEL_PY/salome_test.py, src/LifeCycleCORBA/Launchers.hxx,
42153           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
42154           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
42155           src/MPIContainer/MPIContainer_i.cxx,
42156           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
42157           src/NamingService/SALOME_NamingService.cxx,
42158           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
42159           src/ResourcesManager/SALOME_ResourcesManager.cxx,
42160           src/ResourcesManager/SALOME_ResourcesManager.hxx,
42161           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
42162           src/TOOLSDS/SALOMEDS_Tool.cxx:
42163
42164         PR: merge from branch BR_3_1_0deb tag mergeto_trunk_22dec05
42165
42166 2005-12-20 18:56  prascle
42167
42168         * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
42169
42170         PR: bug 10994 correction proposal
42171
42172 2005-12-16 15:52  prascle
42173
42174         * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
42175           SALOME_ResourcesManager.cxx:
42176
42177         PR: comment not useful traces
42178
42179 2005-12-16 15:49  prascle
42180
42181         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
42182           Container/SALOME_ContainerManager.cxx,
42183           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
42184           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
42185           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
42186           NamingService/SALOME_NamingService.cxx:
42187
42188         PR: comment not useful traces
42189
42190 2005-12-15 12:32  boulant
42191
42192         * src/Makefile.am, configure.ac, salome_adm/unix/SALOMEconfig.h.in,
42193           salome_adm/unix/config_files/check_lsf.m4,
42194           salome_adm/unix/config_files/check_mpi.m4,
42195           salome_adm/unix/config_files/check_openpbs.m4,
42196           salome_adm/unix/config_files/check_local.m4:
42197
42198         Intégration bibliothèque Batch version 0.3.0 (avec gestionnaire local)
42199         Finalisation de la partie swig.
42200
42201 2005-12-14 15:42  jfa
42202
42203         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
42204           resources/KERNELCatalog.xml:
42205
42206         Update version name to 3.1.0
42207
42208 2005-12-13 15:34  prascle
42209
42210         * src/: KERNEL_PY/kernel_shared_modules.py,
42211           LifeCycleCORBA/Launchers.hxx, MPIContainer/MPIContainer_i.cxx,
42212           ResourcesManager/SALOME_ResourcesManager.hxx,
42213           SALOMELocalTrace/LocalTraceBufferPool.cxx:
42214
42215         PR: mergefrom branch BR_PR_V310b1 tag mergeto_BR_3_1_0deb_13dec05
42216
42217 2005-12-13 15:34  jfa
42218
42219         * bin/killSalomeWithPort.py:
42220
42221         PAL10873: Debian: HOSTNAME settings. Update fix in accordance with modifications in HEAD.
42222
42223 2005-12-13 15:31  prascle
42224
42225         * salome_adm/unix/config_files/check_lam.m4,
42226           src/Container/Container_i.cxx,
42227           src/Container/SALOME_ContainerManager.hxx:
42228
42229         PR: mergefrom branch BR_PR_V310b1 tag mergeto_BR_3_1_0deb_13dec05
42230
42231 2005-12-13 15:25  jfa
42232
42233         * bin/killSalomeWithPort.py:
42234
42235         PAL10873: Debian: HOSTNAME settings. A patch by Paul RASCLE.
42236
42237 2005-12-13 14:06  jfa
42238
42239         * salome_adm/unix/pythonbe.py,
42240           salome_adm/unix/config_files/check_omniorb.m4,
42241           src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/Makefile.in,
42242           src/KERNEL_PY/kernel_shared_modules.py,
42243           src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
42244           src/KERNEL_PY/salome_shared_modules.py:
42245
42246         PAL10310: Problem with incomplete import of python CORBA modules.
42247
42248 2005-12-13 13:53  prascle
42249
42250         * salome_adm/unix/config_files/check_lam.m4:
42251
42252         PR: clean
42253
42254 2005-12-12 19:36  prascle
42255
42256         * salome_adm/unix/config_files/check_lam.m4:
42257
42258         PR: from bernard Secher
42259
42260 2005-12-09 19:31  prascle
42261
42262         * src/Container/Container_i.cxx:
42263
42264         PR: import pthread before python, some cleaning (indent, comments)
42265
42266 2005-12-09 19:29  prascle
42267
42268         * src/: LifeCycleCORBA/Launchers.hxx,
42269           MPIContainer/MPIContainer_i.cxx:
42270
42271         PR: import pthread before python
42272
42273 2005-12-09 19:26  prascle
42274
42275         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
42276
42277         PR: check return on sem_wait: interruptible by signal
42278
42279 2005-12-09 19:24  prascle
42280
42281         * src/KERNEL_PY/kernel_shared_modules.py:
42282
42283         PR: avoid import CORBA, in case of multiple ORB (orbit), use from omniORB import CORBA
42284
42285 2005-12-09 19:21  prascle
42286
42287         * src/: Container/SALOME_ContainerManager.hxx,
42288           ResourcesManager/SALOME_ResourcesManager.hxx:
42289
42290         PR: allow inheritance for paco++
42291
42292 2005-12-09 16:43  vsr
42293
42294         * src/TOOLSDS/SALOMEDS_Tool.cxx:
42295
42296         Bug PAL10850: A problem in SALOMEDS_Tool::PutStreamToFiles() method : crash
42297
42298 2005-12-09 16:04  boulant
42299
42300         * bin/Makefile.am:
42301
42302         Adding comments
42303
42304 2005-12-09 16:01  boulant
42305
42306         * Makefile.am, configure.ac, bin/Makefile.am,
42307           salome_adm/unix/config_files/check_cppunit.m4, src/Makefile.am,
42308           src/LifeCycleCORBA/Test/Makefile.am,
42309           src/LifeCycleCORBA/Test/Makefile.in, src/Logger/Test/Makefile.am,
42310           src/Logger/Test/Makefile.in, src/SALOMELocalTrace/Makefile.am,
42311           src/SALOMELocalTrace/Test/Makefile.am,
42312           src/SALOMETraceCollector/Makefile.am,
42313           src/SALOMETraceCollector/Test/Makefile.am,
42314           src/SALOMETraceCollector/Test/Makefile.in,
42315           src/UnitTests/Makefile.am, src/UnitTests/Makefile.in,
42316           src/Utils/Makefile.am, src/Utils/Test/Makefile.am,
42317           src/Utils/Test/Makefile.in:
42318
42319         Modification for building unit tests (src/UnitTest and src/*/Test) with automake from Makefile.am.
42320
42321 2005-12-08 16:41  boulant
42322
42323         * salome_adm/Makefile.am, salome_adm/Makefile.in,
42324           salome_adm/unix/Makefile.am,
42325           salome_adm/unix/make_common_starter.am,
42326           salome_adm/unix/config_files/Makefile.am, Makefile.am,
42327           clean_configure, configure.ac, idl/Makefile.am, src/Makefile.am,
42328           src/Basics/Makefile.am, src/Basics/Test/Makefile.am,
42329           src/Basics/Test/Makefile.in, src/Notification/Makefile.am,
42330           src/SALOMELocalTrace/Makefile.am,
42331           src/SALOMELocalTrace/Test/Makefile.am,
42332           src/SALOMELocalTrace/Test/Makefile.in,
42333           src/SALOMETraceCollector/Makefile.am:
42334
42335         Complétude passage automake:
42336         - bin
42337         - resources
42338         - idl
42339         - salome_adm
42340         Et amorce de prise en charge des Test unitaire
42341
42342 2005-12-08 16:01  boulant
42343
42344         * salome_adm/unix/config_files/check_qt.m4:
42345
42346         Report d'une correction de la V310
42347
42348 2005-12-08 15:46  vsr
42349
42350         * bin/: launchConfigureParser.py, runSalome.py:
42351
42352         PAL10841: To disable exception handler in GUI by command line option
42353
42354 2005-12-08 08:53  jfa
42355
42356         * src/KERNEL_PY/salome_test.py:
42357
42358         Fix bug 10214. Import salome_test crashes Salome on Debian. Suppress parallel computations of GEOM nodes, using gates.
42359
42360 2005-12-07 18:42  boulant
42361
42362         * resources/: Makefile.am, Plugin.in:
42363
42364         Gestion par Makefile.am
42365
42366 2005-12-07 18:38  boulant
42367
42368         * bin/: Makefile.am, runIDLparser.in:
42369
42370         Gestion par Makefile.am
42371         runIDLParser est ramené dans le répertoire courant.
42372
42373 2005-12-07 14:10  jfa
42374
42375         * salome_adm/unix/config_files/check_qwt.m4:
42376
42377         PAL10716: Using native qwt on mandriva 2006.0. A fix by Erwan ADAM.
42378
42379 2005-12-07 13:24  vsr
42380
42381         * bin/runSalome.py:
42382
42383         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)
42384
42385 2005-12-05 17:04  smh
42386
42387         * src/Basics/Test/BasicMainTest.hxx,
42388           src/Communication/MultiCommException.cxx,
42389           src/Communication/MultiCommException.hxx,
42390           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
42391           src/Communication/ReceiverFactory.cxx,
42392           src/Communication/ReceiverFactory.hxx,
42393           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
42394           src/Communication/SALOMEMultiComm.cxx,
42395           src/Communication/SALOMEMultiComm.hxx,
42396           src/Communication/SALOME_Comm_i.cxx,
42397           src/Communication/SALOME_Comm_i.hxx,
42398           src/Communication/SenderFactory.cxx,
42399           src/Communication/SenderFactory.hxx,
42400           src/Communication/libSALOME_Comm.i,
42401           src/Communication_SWIG/libSALOME_Comm.i,
42402           src/Container/SALOME_ContainerManager.cxx,
42403           src/Container/SALOME_ContainerManager.hxx,
42404           src/Container/SALOME_ContainerManagerServer.cxx,
42405           src/LifeCycleCORBA/Launchers.cxx,
42406           src/LifeCycleCORBA/Launchers.hxx,
42407           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
42408           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
42409           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
42410           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
42411           src/MPIContainer/SALOME_MPIContainer.cxx,
42412           src/NamingService/Test/NamingServiceTest.cxx,
42413           src/NamingService/Test/NamingServiceTest.hxx,
42414           src/NamingService/Test/TestNamingService.cxx,
42415           src/ResourcesManager/SALOME_LoadRateManager.cxx,
42416           src/ResourcesManager/SALOME_LoadRateManager.hxx,
42417           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
42418           src/ResourcesManager/SALOME_ResourcesManager.cxx,
42419           src/ResourcesManager/SALOME_ResourcesManager.hxx,
42420           src/SALOMEDS/SALOMEDS.cdl,
42421           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
42422           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
42423           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
42424           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
42425           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
42426           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
42427           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
42428           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
42429           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
42430           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
42431           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
42432           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
42433           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
42434           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
42435           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
42436           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
42437           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
42438           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
42439           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
42440           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
42441           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
42442           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
42443           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
42444           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
42445           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
42446           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
42447           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
42448           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
42449           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
42450           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
42451           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
42452           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
42453           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
42454           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
42455           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
42456           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
42457           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
42458           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
42459           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
42460           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
42461           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
42462           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
42463           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
42464           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
42465           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
42466           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
42467           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
42468           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
42469           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
42470           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
42471           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
42472           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
42473           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
42474           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
42475           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
42476           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
42477           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
42478           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
42479           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
42480           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
42481           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
42482           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
42483           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
42484           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
42485           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
42486           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
42487           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
42488           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
42489           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
42490           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
42491           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
42492           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
42493           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
42494           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
42495           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
42496           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
42497           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
42498           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
42499           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
42500           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
42501           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
42502           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
42503           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
42504           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
42505           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
42506           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
42507           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
42508           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
42509           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
42510           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
42511           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
42512           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
42513           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
42514           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
42515           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
42516           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
42517           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
42518           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
42519           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
42520           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
42521           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
42522           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
42523           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
42524           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
42525           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
42526           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
42527           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
42528           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
42529           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
42530           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
42531           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
42532           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
42533           src/SALOMEDS/SALOMEDS_Attributes.hxx,
42534           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
42535           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
42536           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
42537           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
42538           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
42539           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
42540           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
42541           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
42542           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
42543           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
42544           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
42545           src/SALOMEDS/SALOMEDS_FileType.cdl,
42546           src/SALOMEDS/SALOMEDS_FileType.jxx,
42547           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
42548           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
42549           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
42550           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
42551           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
42552           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
42553           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
42554           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
42555           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
42556           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
42557           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
42558           src/SALOMEDS/SALOMEDS_SComponent.cxx,
42559           src/SALOMEDS/SALOMEDS_SComponent.hxx,
42560           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
42561           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
42562           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
42563           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
42564           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
42565           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
42566           src/SALOMEDS/SALOMEDS_SObject.cxx,
42567           src/SALOMEDS/SALOMEDS_SObject.hxx,
42568           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
42569           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
42570           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
42571           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
42572           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
42573           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
42574           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
42575           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
42576           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
42577           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
42578           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
42579           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
42580           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
42581           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
42582           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
42583           src/SALOMEDS/SALOMEDS_Study_i.cxx,
42584           src/SALOMEDS/SALOMEDS_Study_i.hxx,
42585           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
42586           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
42587           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
42588           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
42589           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
42590           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
42591           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
42592           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
42593           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
42594           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
42595           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
42596           src/SALOMEDSClient/SALOMEDSClient.hxx,
42597           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
42598           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
42599           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
42600           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
42601           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
42602           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
42603           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
42604           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
42605           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
42606           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
42607           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
42608           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
42609           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
42610           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
42611           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
42612           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
42613           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
42614           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
42615           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
42616           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
42617           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
42618           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
42619           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
42620           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
42621           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
42622           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
42623           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
42624           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
42625           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
42626           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
42627           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
42628           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
42629           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
42630           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
42631           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
42632           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
42633           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
42634           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
42635           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
42636           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
42637           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
42638           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
42639           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
42640           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
42641           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
42642           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
42643           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
42644           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
42645           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
42646           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
42647           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
42648           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
42649           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
42650           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
42651           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
42652           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
42653           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
42654           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
42655           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
42656           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
42657           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
42658           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
42659           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
42660           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
42661           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
42662           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
42663           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
42664           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
42665           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
42666           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
42667           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
42668           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
42669           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
42670           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
42671           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
42672           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
42673           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
42674           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
42675           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
42676           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
42677           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
42678           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
42679           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
42680           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
42681           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
42682           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
42683           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
42684           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
42685           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
42686           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
42687           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
42688           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
42689           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
42690           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
42691           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
42692           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
42693           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
42694           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
42695           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
42696           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
42697           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
42698           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
42699           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
42700           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
42701           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
42702           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
42703           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
42704           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
42705           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
42706           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
42707           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
42708           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
42709           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
42710           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
42711           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
42712           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
42713           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
42714           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
42715           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
42716           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
42717           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
42718           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
42719           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
42720           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
42721           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
42722           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
42723           src/SALOMEDSImpl/testDS.cxx,
42724           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
42725           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
42726           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
42727           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
42728           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
42729           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
42730           idl/SALOME_Comm.idl, idl/SALOME_ContainerManager.idl,
42731           idl/SALOME_TestMPIComponent.idl, idl/nstest.idl,
42732           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
42733           src/TestMPIContainer/TestMPIComponentEngine.cxx,
42734           src/TestMPIContainer/TestMPIComponentEngine.hxx,
42735           src/TestMPIContainer/TestMPIContainer.cxx,
42736           src/UnitTests/UnitTests.cxx, src/Utils/Utils_ExceptHandlers.cxx,
42737           src/Utils/Test/TestUtils.cxx, src/Utils/Test/UtilsTest.cxx,
42738           src/Utils/Test/UtilsTest.hxx, src/HDFPersist/HDFascii.cc,
42739           src/HDFPersist/HDFascii.hxx:
42740
42741         Copyrights update
42742
42743 2005-12-05 15:40  jfa
42744
42745         * src/: Communication/libSALOME_Comm.i,
42746           Container/SALOME_Container.cxx,
42747           Container/SALOME_ContainerManager.cxx,
42748           ResourcesManager/SALOME_ResourcesManager.cxx,
42749           ResourcesManager/SALOME_ResourcesManager.hxx:
42750
42751         PAL10761: improve remote launch of containers. A fix by Anthony GEAY.
42752
42753 2005-12-05 12:16  prascle
42754
42755         * src/NamingService/Test/: NamingServiceTest.cxx,
42756           NamingServiceTest.hxx:
42757
42758         PR: merge from BR_UT_V310a3 tag mergeto_trunk_06dec05
42759
42760 2005-12-05 12:12  prascle
42761
42762         * src/NamingService/SALOME_NamingService.cxx:
42763
42764         PR: merge from BR_UT_V310a3 tag mergeto_trunk_06dec05
42765
42766 2005-12-05 12:07  prascle
42767
42768         * src/NamingService/SALOME_NamingService.cxx:
42769
42770         PR: avoid unnecessary tests and warnings
42771
42772 2005-12-05 12:06  prascle
42773
42774         * src/NamingService/Test/: NamingServiceTest.cxx,
42775           NamingServiceTest.hxx:
42776
42777         PR: clean Naming service directory /containers after tests
42778
42779 2005-12-05 09:03  prascle
42780
42781         * INSTALL, Makefile.in, bin/NSparam.py, bin/VERSION,
42782           bin/killSalomeWithPort.py, bin/runSalome.py,
42783           bin/appliskel/README, bin/appliskel/envd,
42784           bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
42785           bin/appliskel/runConsole, bin/appliskel/runParam,
42786           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
42787           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
42788           bin/appliskel/setAppliPath.sh, doc/SALOME_Application.txt,
42789           salome_adm/unix/config_files/check_lam.m4,
42790           salome_adm/unix/config_files/check_qt.m4,
42791           salome_adm/unix/config_files/check_qwt.m4,
42792           src/Communication/ReceiverFactory.cxx,
42793           src/Communication/Receivers.hxx,
42794           src/Communication/SALOME_Comm_i.cxx,
42795           src/Communication/SALOME_Comm_i.hxx,
42796           src/Communication/SenderFactory.cxx,
42797           src/Communication_SWIG/libSALOME_Comm.i,
42798           src/Container/SALOME_Container.cxx,
42799           src/Container/SALOME_ContainerManager.cxx,
42800           src/Container/SALOME_ContainerManager.hxx,
42801           src/MPIContainer/MPIContainer_i.cxx,
42802           src/MPIContainer/MPIObject_i.cxx,
42803           src/MPIContainer/SALOME_MPIContainer.cxx,
42804           src/NamingService/SALOME_NamingService.cxx,
42805           src/NamingService/SALOME_NamingServicePy.py,
42806           src/NamingService/Test/NamingServiceTest.cxx,
42807           src/ResourcesManager/SALOME_ResourcesManager.cxx,
42808           src/ResourcesManager/SALOME_ResourcesManager.hxx,
42809           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
42810           src/SALOMEDS/SALOME_DriverPy.py,
42811           src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
42812
42813         PR: merge from branch BR_UT_V310a3 tag mergeto_trunk_05dec05
42814
42815 2005-12-03 14:24  prascle
42816
42817         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
42818
42819         PR: a cause of bad traces th. 0...
42820
42821 2005-12-02 20:59  boulant
42822
42823         * build_configure, salome_adm/unix/make_common_starter.am,
42824           src/Makefile.am, src/Communication/Makefile.am,
42825           src/Communication/Makefile.in, src/Container/Makefile.am,
42826           src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
42827           src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
42828           src/LifeCycleCORBA_SWIG/Makefile.am,
42829           src/LifeCycleCORBA_SWIG/Makefile.in,
42830           src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
42831           src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Makefile.am,
42832           src/SALOMEDS/Makefile.in, src/SALOMEDSClient/Makefile.am,
42833           src/SALOMEDSClient/Makefile.in, src/SALOMEDSImpl/Makefile.am,
42834           src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.am,
42835           src/TOOLSDS/Makefile.in, src/TestContainer/Makefile.am,
42836           src/TestContainer/Makefile.in:
42837
42838         Première version avec la totalité des packages sources en automake.
42839         Les répertoires tests ne sont pas encore traités.
42840         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).
42841
42842 2005-12-02 14:07  jfa
42843
42844         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
42845
42846         Update version name to 2.2.7
42847
42848 2005-12-02 10:59  jfa
42849
42850         * salome_adm/unix/config_files/check_qwt.m4:
42851
42852         PAL10716: Using native gwt on mandriva 2006.0. A fix by Erwan ADAM.
42853
42854 2005-12-02 10:00  prascle
42855
42856         * INSTALL, bin/VERSION, bin/killSalomeWithPort.py,
42857           bin/runSalome.py, salome_adm/unix/config_files/check_qt.m4,
42858           src/NamingService/SALOME_NamingServicePy.py,
42859           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
42860           src/SALOMEDS/SALOME_DriverPy.py:
42861
42862         PR: merge from branch BR_OCC_For_3_1_0b1 tag mergeto_BR_UT_V310a3_01dec05
42863
42864 2005-12-01 19:54  boulant
42865
42866         * configure.ac, salome_adm/unix/make_common_starter.am,
42867           salome_adm/unix/config_files/check_qt.m4, src/Makefile.am,
42868           src/Container/Makefile.am, src/Container/Makefile.in,
42869           src/GenericObj/Makefile.am, src/GenericObj/Makefile.in,
42870           src/Logger/Makefile.am, src/ModuleCatalog/Makefile.am,
42871           src/ModuleCatalog/Makefile.in, src/NOTIFICATION_SWIG/Makefile.am,
42872           src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
42873           src/NamingService/Makefile.in, src/Notification/Makefile.am,
42874           src/Notification/Makefile.in, src/Registry/Makefile.am,
42875           src/Registry/Makefile.in, src/ResourcesManager/Makefile.am,
42876           src/ResourcesManager/Makefile.in,
42877           src/SALOMELocalTrace/Makefile.am,
42878           src/SALOMETraceCollector/Makefile.am,
42879           src/SALOMETraceCollector/Makefile.in, src/Utils/Makefile.am,
42880           src/Utils/Makefile.in:
42881
42882         Version avec Traitement d'une interface swig (NOTIFICATION_SWIG). Le KERNEL est transformé jusque Container (reste TestContainer LifeCycleCORBA, ...).
42883
42884 2005-12-01 10:19  jfa
42885
42886         * salome_adm/unix/: pythonbe.py, config_files/check_omniorb.m4:
42887
42888         PAL10310: Problem with incomplete import of python CORBA modules. Full patch applied.
42889
42890 2005-12-01 10:01  smh
42891
42892         * INSTALL, bin/VERSION:
42893
42894         Version b1
42895
42896 2005-12-01 09:41  prascle
42897
42898         * src/: Container/SALOME_ContainerManager.cxx,
42899           MPIContainer/MPIContainer_i.cxx,
42900           ResourcesManager/SALOME_ResourcesManager.cxx:
42901
42902         PR: just in case we try to find or start more than 10**8 parallel containers!
42903
42904 2005-11-30 20:59  prascle
42905
42906         * salome_adm/unix/config_files/check_lam.m4,
42907           src/Communication/ReceiverFactory.cxx,
42908           src/Communication/Receivers.hxx,
42909           src/Communication/SALOME_Comm_i.cxx,
42910           src/Communication/SALOME_Comm_i.hxx,
42911           src/Communication/SenderFactory.cxx,
42912           src/Communication_SWIG/libSALOME_Comm.i,
42913           src/Container/SALOME_Container.cxx,
42914           src/Container/SALOME_ContainerManager.cxx,
42915           src/Container/SALOME_ContainerManager.hxx,
42916           src/MPIContainer/MPIContainer_i.cxx,
42917           src/MPIContainer/MPIObject_i.cxx,
42918           src/MPIContainer/SALOME_MPIContainer.cxx,
42919           src/NamingService/SALOME_NamingService.cxx,
42920           src/ResourcesManager/SALOME_ResourcesManager.cxx,
42921           src/ResourcesManager/SALOME_ResourcesManager.hxx:
42922
42923         PR: mpi containers portability
42924
42925 2005-11-30 20:57  prascle
42926
42927         * salome_adm/unix/config_files/check_qwt.m4:
42928
42929         PR: remove -L/usr/lib
42930
42931 2005-11-30 18:11  vsr
42932
42933         * salome_adm/unix/config_files/check_qt.m4:
42934
42935         PAL10376: Add QT_CLEAN_NAMESPACE macro definition to avoid compilation problems on some platforms
42936
42937 2005-11-30 10:01  prascle
42938
42939         * src/NamingService/: Test/NamingServiceTest.cxx,
42940           SALOME_NamingService.cxx:
42941
42942         PR: allow directories in Naming service of only one character.
42943
42944 2005-11-29 19:21  prascle
42945
42946         * bin/appliskel/README, bin/appliskel/runAppli,
42947           bin/appliskel/runConsole, bin/appliskel/runParam,
42948           bin/appliskel/runRemote.sh, bin/appliskel/runSession,
42949           bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
42950           bin/appliskel/setAppliPath.sh, Makefile.in, bin/NSparam.py,
42951           bin/appliskel/killCurrentPort:
42952
42953         PR: Application scripts improvement
42954
42955 2005-11-29 16:35  secher
42956
42957         * salome_adm/unix/config_files/check_lam.m4:
42958
42959         debug of check lam
42960
42961 2005-11-29 15:13  secher
42962
42963         * salome_adm/unix/config_files/check_lam.m4,
42964           src/Communication/ReceiverFactory.cxx,
42965           src/Communication/Receivers.hxx,
42966           src/Communication/SALOME_Comm_i.cxx,
42967           src/Communication/SALOME_Comm_i.hxx,
42968           src/Communication/SenderFactory.cxx,
42969           src/Communication_SWIG/libSALOME_Comm.i,
42970           src/Container/SALOME_Container.cxx,
42971           src/Container/SALOME_ContainerManager.cxx,
42972           src/Container/SALOME_ContainerManager.hxx,
42973           src/MPIContainer/MPIContainer_i.cxx,
42974           src/MPIContainer/MPIObject_i.cxx,
42975           src/MPIContainer/SALOME_MPIContainer.cxx,
42976           src/NamingService/SALOME_NamingService.cxx,
42977           src/ResourcesManager/SALOME_ResourcesManager.cxx,
42978           src/ResourcesManager/SALOME_ResourcesManager.hxx:
42979
42980         debug of MPI containers
42981
42982 2005-11-28 11:36  prascle
42983
42984         * src/SALOMEDS/SALOME_DriverPy.py:
42985
42986         PR: report corrections from occ
42987
42988 2005-11-23 17:09  jfa
42989
42990         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
42991
42992         Improve variable handling
42993
42994 2005-11-23 14:38  prascle
42995
42996         * src/SALOMEDS/SALOME_DriverPy.py:
42997
42998         PR : _ComponentDatatType instance variable was not initialized (only local variable)
42999
43000 2005-11-21 11:12  prascle
43001
43002         * bin/appliskel/envd:
43003
43004         PR: filter on *.sh (to avoid source backup files produced by text editors)
43005
43006 2005-11-21 10:48  prascle
43007
43008         * doc/SALOME_Application.txt, bin/appliskel/README:
43009
43010         PR: doc correction
43011
43012 2005-11-18 20:40  boulant
43013
43014         * AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in, NEWS,
43015           build_configure, clean_configure, configure.ac,
43016           DEPRECATED/Makefile.in, idl/Makefile.am, idl/Makefile.in,
43017           salome_adm/unix/make_common_starter.am,
43018           salome_adm/unix/config_files/config.guess,
43019           salome_adm/unix/config_files/config.sub,
43020           salome_adm/unix/config_files/install-sh,
43021           salome_adm/unix/config_files/libtool.m4,
43022           salome_adm/unix/config_files/ltconfig,
43023           salome_adm/unix/config_files/ltmain.sh,
43024           salome_adm/unix/config_files/missing,
43025           salome_adm/unix/config_files/mkinstalldirs,
43026           salome_adm/unix/config_files/DEPRECATED/config.guess,
43027           salome_adm/unix/config_files/DEPRECATED/config.sub,
43028           salome_adm/unix/config_files/DEPRECATED/install-sh,
43029           salome_adm/unix/config_files/DEPRECATED/libtool.m4,
43030           salome_adm/unix/config_files/DEPRECATED/ltconfig,
43031           salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
43032           salome_adm/unix/config_files/DEPRECATED/missing,
43033           salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
43034           src/Makefile.am, src/Makefile.in, src/Basics/Makefile.am,
43035           src/Basics/Makefile.in, src/HDFPersist/Makefile.am,
43036           src/HDFPersist/Makefile.in, src/Logger/Makefile.am,
43037           src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
43038           src/Logger/SALOME_Logger_Server_main.cxx,
43039           src/SALOMELocalTrace/Makefile.am,
43040           src/SALOMELocalTrace/Makefile.in:
43041
43042         Adaptation pour le passage en automake. Seuls les 5 premiers paquets des sources sont passés et le répertoire idl
43043
43044 2005-11-18 19:40  boulant
43045
43046         * clean_configure, configure.ac, configure.in.base, make_config.in,
43047           DEPRECATED/configure.in.base, DEPRECATED/make_config.in,
43048           doc/index.txt, doc/rst.css, doc/txt2html.sh, doc/userguide.txt,
43049           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
43050           salome_adm/unix/config.h.in, salome_adm/unix/envScript.in,
43051           salome_adm/unix/sstream.in, salome_adm/unix/DEPRECATED/Doxyfile,
43052           salome_adm/unix/DEPRECATED/F77config.h.in,
43053           salome_adm/unix/DEPRECATED/config.h.in,
43054           salome_adm/unix/DEPRECATED/envScript.in,
43055           salome_adm/unix/DEPRECATED/sstream.in,
43056           salome_adm/unix/config_files/ac_cc_warnings.m4,
43057           salome_adm/unix/config_files/ac_cxx_bool.m4,
43058           salome_adm/unix/config_files/ac_cxx_mutable.m4,
43059           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
43060           salome_adm/unix/config_files/ac_cxx_typename.m4,
43061           salome_adm/unix/config_files/check_Salome.m4,
43062           salome_adm/unix/config_files/check_java.m4,
43063           salome_adm/unix/config_files/check_mico.m4,
43064           salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
43065           salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
43066           salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
43067           salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
43068           salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
43069           salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
43070           salome_adm/unix/config_files/DEPRECATED/check_java.m4,
43071           salome_adm/unix/config_files/DEPRECATED/check_mico.m4:
43072
43073         Epuration des Ã©léments obsolètes après analyse de la procédure de construction.
43074
43075 2005-11-18 19:35  boulant
43076
43077         * Makefile.in, build_configure, doc/Makefile.in,
43078           salome_adm/unix/make_commence.in,
43079           salome_adm/unix/make_conclude.in,
43080           salome_adm/unix/config_files/check_cas.m4,
43081           salome_adm/unix/config_files/check_htmlgen.m4,
43082           salome_adm/unix/config_files/check_mpi.m4:
43083
43084         Epuration des Ã©léments obsolètes après analyse de la procédure de construction.
43085
43086 2005-11-18 12:21  mkr
43087
43088         * bin/runSalome.py:
43089
43090         Add the possibility to launch Salome with --modules option.
43091
43092 2005-11-18 11:10  vsr
43093
43094         * INSTALL, bin/VERSION:
43095
43096         Increment version number: 3.1.0a3
43097
43098 2005-11-18 08:38  jfa
43099
43100         * src/Container/SALOME_ContainerPy.py:
43101
43102         PAL10310: Incomplete import of python CORBA modules. Ensure patch working in python container.
43103
43104 2005-11-17 16:51  vsr
43105
43106         * src/SALOMEDS/SALOME_DriverPy.py:
43107
43108         Fix a bug of python implementation of SALOMEDS driver: component data type should be property of the instance but not of the class
43109
43110 2005-11-17 16:46  vsr
43111
43112         * bin/killSalomeWithPort.py:
43113
43114         Simplify getPiDict() method (taking host name)
43115
43116 2005-11-17 16:14  mzn
43117
43118         * src/NamingService/SALOME_NamingServicePy.py:
43119
43120         SALOME_NamingServicePy_i::__init__ method modification.
43121
43122 2005-11-17 11:03  secher
43123
43124         * src/: LifeCycleCORBA/Makefile.in, MPIContainer/Makefile.in,
43125           ModuleCatalog/Makefile.in, SALOMEDS/Makefile.in,
43126           TestContainer/Makefile.in, TestMPIContainer/Makefile.in:
43127
43128         unused QT dependancies
43129
43130 2005-11-17 10:08  apo
43131
43132         * bin/: orbmodule.py, runSalome.py:
43133
43134         To apply patch for Bug PAL8142
43135                 Unstable runSalome
43136
43137 2005-11-16 15:48  prascle
43138
43139         * bin/launchConfigureParser.py, bin/orbmodule.py, bin/runSalome.py,
43140           salome_adm/unix/config_files/check_cas.m4:
43141
43142         PR: merge from branch BR_OCC_For_3_1_0a3 tag mergeto_trunk_16nov05
43143
43144 2005-11-16 12:14  secher
43145
43146         * bin/appliskel/envd, src/LifeCycleCORBA/Makefile.in,
43147           src/MPIContainer/Makefile.in, src/ModuleCatalog/Makefile.in,
43148           src/ResourcesManager/SALOME_ResourcesManager.cxx,
43149           src/SALOMEDS/Makefile.in, src/TestContainer/Makefile.in,
43150           src/TestMPIContainer/Makefile.in:
43151
43152         resolve dependances on QT
43153
43154 2005-11-16 01:00  prascle
43155
43156         * bin/killSalomeWithPort.py:
43157
43158         PR: HOSTNAME not always defined
43159
43160 2005-11-15 21:46  prascle
43161
43162         * bin/runSalome.py, bin/appliskel/runAppli, bin/appliskel/runTests,
43163           idl/nstest.idl, salome_adm/unix/config_files/check_lam.m4,
43164           src/Makefile.in, src/Communication/Makefile.in,
43165           src/Communication/MultiCommException.hxx,
43166           src/Communication/SALOMEMultiComm.hxx,
43167           src/Communication/SenderFactory.hxx,
43168           src/Communication_SWIG/Makefile.in,
43169           src/Communication_SWIG/libSALOME_Comm.i,
43170           src/Container/Makefile.in, src/LifeCycleCORBA/Test/Makefile.in,
43171           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
43172           src/MPIContainer/Makefile.in,
43173           src/NamingService/SALOME_NamingService.cxx,
43174           src/NamingService/SALOME_NamingService.hxx,
43175           src/NamingService/Test/Makefile.in,
43176           src/NamingService/Test/NamingServiceTest.cxx,
43177           src/NamingService/Test/NamingServiceTest.hxx,
43178           src/NamingService/Test/TestNamingService.cxx,
43179           src/NamingService/Test/TestNamingService.py,
43180           src/ResourcesManager/SALOME_ResourcesManager.cxx,
43181           src/SALOMELocalTrace/FileTraceCollector.cxx,
43182           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
43183           src/SALOMELocalTrace/LocalTraceCollector.cxx,
43184           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
43185           src/TestMPIContainer/Makefile.in, src/UnitTests/Makefile.in,
43186           src/UnitTests/UnitTests.cxx:
43187
43188         PR: merge from branch BR_UT_V310a2 tag  BR_UT_V310a2_20051115
43189
43190 2005-11-15 21:36  prascle
43191
43192         * bin/addToKillList.py, bin/killSalome.py,
43193           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
43194           bin/runSalome.py, doc/SALOME_Application.txt,
43195           salome_adm/unix/make_commence.in,
43196           salome_adm/unix/config_files/check_cas.m4,
43197           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFdataset.cc,
43198           src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
43199           src/HDFPersist/HDFdatasetGetOrder.c, src/HDFPersist/HDFtypes.h,
43200           src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
43201           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
43202           src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in:
43203
43204         PR: merge from trunk tag mergeto_BR_UT_V310a2_15nov05
43205
43206 2005-11-15 20:53  prascle
43207
43208         * bin/appliskel/runAppli:
43209
43210         PR: runAppli without args must not delete omniORB config files.
43211
43212 2005-11-15 20:52  prascle
43213
43214         * bin/runSalome.py:
43215
43216         PR: Allow Only Kernel, Gui not mandatory (CCRT, Tests...)
43217
43218 2005-11-15 20:50  prascle
43219
43220         * src/NamingService/: SALOME_NamingService.cxx,
43221           SALOME_NamingService.hxx:
43222
43223         PR: SALOME_NamingService class rewrited
43224
43225 2005-11-15 20:49  prascle
43226
43227         * src/NamingService/Test/: NamingServiceTest.cxx,
43228           NamingServiceTest.hxx:
43229
43230         PR: unit tests Naming service completed
43231
43232 2005-11-15 18:32  jfa
43233
43234         * salome_adm/unix/config_files/check_cas.m4:
43235
43236         CAS_STDPLUGIN must be set
43237
43238 2005-11-15 17:15  mkr
43239
43240         * salome_adm/unix/config_files/check_cas.m4:
43241
43242         Modify OCC flags.
43243
43244 2005-11-15 08:28  vsr
43245
43246         * bin/launchConfigureParser.py:
43247
43248         Improve resource manager: SalomeAppConfig variable: ";" symbol is used as directories separator under Windows; both ";" and ":" symbols can be used under Linux
43249
43250 2005-11-14 17:12  prascle
43251
43252         * doc/SALOME_Application.txt:
43253
43254         PR: some comments added
43255
43256 2005-11-14 16:53  prascle
43257
43258         * bin/addToKillList.py, bin/killSalome.py,
43259           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
43260           bin/runSalome.py, doc/SALOME_Application.txt,
43261           salome_adm/unix/make_commence.in,
43262           salome_adm/unix/config_files/check_cas.m4,
43263           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFdataset.cc,
43264           src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
43265           src/HDFPersist/HDFdatasetGetOrder.c, src/HDFPersist/HDFtypes.h,
43266           src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
43267           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
43268           src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in:
43269
43270         PR: merge from branch BR_OCC_For_3_1_0a3 tag mergeto_trunk_14nov05
43271
43272 2005-11-14 16:40  mzn
43273
43274         * bin/: orbmodule.py, runSalome.py:
43275
43276         Improve waitNS function for more stable salome launch.
43277
43278 2005-11-11 10:25  mkr
43279
43280         * src/: SALOMEDSImpl/Makefile.in, SALOMEDS/Makefile.in:
43281
43282         Remove uncessary libraries and dependences (for OCC6.0) from configuration
43283         files and Makefiles.
43284
43285 2005-11-11 10:21  mkr
43286
43287         * salome_adm/unix/config_files/check_cas.m4,
43288           salome_adm/unix/make_commence.in, src/TOOLSDS/Makefile.in,
43289           src/HDFPersist/Makefile.in:
43290
43291         Remove uncessary libraries and dependences (for OCC6.0) from configuration
43292         files and Makefiles.
43293
43294 2005-11-09 14:28  vsr
43295
43296         * bin/addToKillList.py:
43297
43298         PAL9538
43299
43300 2005-11-08 19:16  prascle
43301
43302         * src/NamingService/: SALOME_NamingService.cxx,
43303           Test/NamingServiceTest.cxx, Test/NamingServiceTest.hxx:
43304
43305         PR: Naming service Unit tests, complements...
43306
43307 2005-11-07 19:53  prascle
43308
43309         * bin/appliskel/: runAppli, runTests:
43310
43311         PR: in case of use MPI LAM for MPI components
43312
43313 2005-11-07 19:28  prascle
43314
43315         * idl/nstest.idl, src/LifeCycleCORBA/Test/Makefile.in,
43316           src/NamingService/Test/Makefile.in,
43317           src/NamingService/Test/NamingServiceTest.cxx,
43318           src/NamingService/Test/NamingServiceTest.hxx,
43319           src/UnitTests/Makefile.in:
43320
43321         PR: some unit tests on Naming service
43322
43323 2005-11-07 16:13  eap
43324
43325         * src/HDFPersist/Makefile.in:
43326
43327         PAL6948 (Persistence in MED). Add HDFdatasetGetOrder.c
43328
43329 2005-11-07 16:13  eap
43330
43331         * src/HDFPersist/HDFtypes.h:
43332
43333         PAL6948 (Persistence in MED). Add "typedef H5T_order_t    hdf_byte_order;"
43334
43335 2005-11-07 16:12  eap
43336
43337         * src/HDFPersist/: HDFascii.cc, HDFdataset.cc, HDFdataset.hxx,
43338           HDFdatasetCreate.c, HDFdatasetGetOrder.c, hdfi.h:
43339
43340         PAL6948 (Persistence in MED). Get byte order of dataset and store it in ASCII format
43341
43342 2005-11-07 14:03  vsr
43343
43344         * bin/launchConfigureParser.py:
43345
43346         Fix PAL10459
43347
43348 2005-11-07 13:42  vsr
43349
43350         * bin/: killSalome.py, killSalomeWithPort.py, runSalome.py:
43351
43352         Fix PAL9538
43353
43354 2005-11-07 13:32  jfa
43355
43356         * src/SALOMEDS/SALOMEDS_SComponent_i.cxx:
43357
43358         PAL10400: Mandrake porting: SALOMEDS::SComponent::ComponentIOR() leads to Salome crash if the IOR is not set
43359
43360 2005-11-07 10:23  prascle
43361
43362         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
43363
43364         PR: with lam, transfer some environment variables
43365
43366 2005-11-05 13:05  prascle
43367
43368         * salome_adm/unix/config_files/check_lam.m4,
43369           src/Communication_SWIG/Makefile.in, src/Container/Makefile.in:
43370
43371         PR: for use of MPI lam
43372
43373 2005-11-03 17:56  vsr
43374
43375         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
43376
43377         Increment version number: 2.2.6
43378
43379 2005-11-03 17:56  vsr
43380
43381         * salome_adm/unix/make_commence.in:
43382
43383         Fix a bug of -XLinker option: "-XLinker <path>" should be used instead of "-XLinker -L<path>"
43384
43385 2005-11-03 08:09  vsr
43386
43387         * bin/: runSalome.py, killSalome.py, killSalomeWithPort.py:
43388
43389         PAL9538
43390
43391 2005-11-02 16:55  prascle
43392
43393         * src/: Makefile.in, Communication/Makefile.in,
43394           Communication/MultiCommException.hxx,
43395           Communication/SALOMEMultiComm.hxx,
43396           Communication/SenderFactory.hxx, Communication_SWIG/Makefile.in,
43397           Communication_SWIG/libSALOME_Comm.i, MPIContainer/Makefile.in,
43398           TestMPIContainer/Makefile.in:
43399
43400         PR: corrections from A. Geay
43401
43402 2005-11-02 16:48  prascle
43403
43404         * src/: NamingService/SALOME_NamingService.cxx,
43405           NamingService/SALOME_NamingService.hxx,
43406           NamingService/Test/Makefile.in,
43407           NamingService/Test/NamingServiceTest.cxx,
43408           NamingService/Test/NamingServiceTest.hxx,
43409           NamingService/Test/TestNamingService.cxx,
43410           NamingService/Test/TestNamingService.py, UnitTests/Makefile.in,
43411           UnitTests/UnitTests.cxx, LifeCycleCORBA/Test/Makefile.in,
43412           LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx, Makefile.in:
43413
43414         PR: Naming Service Comments, add unit tests
43415
43416 2005-11-02 12:10  prascle
43417
43418         * src/: SALOMELocalTrace/FileTraceCollector.cxx,
43419           SALOMELocalTrace/LocalTraceBufferPool.cxx,
43420           SALOMELocalTrace/LocalTraceCollector.cxx,
43421           SALOMETraceCollector/SALOMETraceCollector.cxx:
43422
43423         PR: debug some synchro problems on UnitTests
43424
43425 2005-10-26 12:06  jfa
43426
43427         * src/SALOMEDS/SALOMEDS_SComponent_i.cxx:
43428
43429         PAL10400: ComponentIOR() leads to Salome crash if the IOR is not set
43430
43431 2005-10-26 12:03  jfa
43432
43433         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
43434
43435         PAL10399: Possible problems with saving data of Python modules
43436
43437 2005-10-26 09:50  vsr
43438
43439         * INSTALL:
43440
43441         Update version number: 3.1.0a2
43442
43443 2005-10-26 08:13  jfa
43444
43445         * src/NamingService/SALOME_NamingService.cxx:
43446
43447         PAL10358: GetStudyByName() doesn't work if a study has not already been created
43448
43449 2005-10-21 10:24  akk
43450
43451         * src/KERNEL_PY/salome_test.py:
43452
43453         Correction of the path to MED file to import.
43454
43455 2005-10-19 18:06  smh
43456
43457         * salome_adm/unix/make_module.in, src/KERNEL_PY/salome_test.py,
43458           Makefile.in:
43459
43460         Remove examples
43461
43462 2005-10-19 15:55  mzn
43463
43464         * Makefile.in, salome_adm/unix/make_module.in,
43465           src/KERNEL_PY/salome_test.py:
43466
43467         Movement of examples to CVS EXAMPLES SAMPLES_SRC.
43468
43469 2005-10-19 15:23  apo
43470
43471         * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
43472
43473         To merge with HEAD version
43474
43475 2005-10-18 17:07  prascle
43476
43477         * bin/addToKillList.py, src/Container/Container_i.cxx,
43478           src/Container/SALOME_ContainerManager.cxx,
43479           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
43480           src/SALOMELocalTrace/FileTraceCollector.cxx,
43481           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
43482           src/SALOMELocalTrace/LocalTraceCollector.cxx,
43483           src/SALOMETraceCollector/SALOMETraceCollector.cxx:
43484
43485         PR: merge from BR_UnitTests (tag mergeto_trunk_18oct05)
43486         improvement trace when shutdown
43487
43488 2005-10-18 16:39  smh
43489
43490         * bin/VERSION:
43491
43492         Preparation of 3.1.0a2 - version ID
43493
43494 2005-10-18 16:38  smh
43495
43496         * src/SALOMEDS/Makefile.in:
43497
43498         Preparation of 3.1.0a2 - compilation error on Fedora3 platform
43499
43500 2005-10-18 16:08  prascle
43501
43502         * bin/addToKillList.py,
43503           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py:
43504
43505         PR: killList procedure for containers used in tests
43506
43507 2005-10-18 16:07  prascle
43508
43509         * src/Container/: Container_i.cxx, SALOME_ContainerManager.cxx:
43510
43511         PR: more messages for debug shutdown
43512
43513 2005-10-18 09:20  prascle
43514
43515         * src/: SALOMETraceCollector/SALOMETraceCollector.cxx,
43516           SALOMELocalTrace/FileTraceCollector.cxx,
43517           SALOMELocalTrace/LocalTraceBufferPool.cxx,
43518           SALOMELocalTrace/LocalTraceCollector.cxx:
43519
43520         PR: trace improvement
43521
43522 2005-10-17 12:48  prascle
43523
43524         * idl/SALOME_Session.idl, resources/CatalogRessources.xml,
43525           resources/Plugin, salome_adm/unix/config_files/check_med2.m4,
43526           src/A_LIRE_SALOME, src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
43527
43528         PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05 - remove files
43529
43530 2005-10-17 12:29  prascle
43531
43532         * INSTALL, Makefile.in, README, README.FIRST.txt,
43533           configure.in.base, bin/VERSION, bin/addToKillList.py,
43534           bin/createAppli.sh, bin/killSalome.py, bin/killSalomeWithPort.py,
43535           bin/launchConfigureParser.py, bin/orbmodule.py, bin/runNS.sh,
43536           bin/runSalome, bin/runSalome.py, bin/salome.launch,
43537           bin/salomeConsole.py, bin/appliskel/.bashrc,
43538           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
43539           bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
43540           bin/appliskel/runAppli, bin/appliskel/runConsole,
43541           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
43542           bin/appliskel/runSession, bin/appliskel/runTests,
43543           doc/INSTALL.txt, doc/SALOME_Application.txt, doc/UnitTests.txt,
43544           doc/salome/Parallelisme_dans_Salome.pdf,
43545           doc/salome/Parallelisme_dans_Salome.ps,
43546           doc/salome/ResourcesManagerManual.pdf, idl/Makefile.in,
43547           idl/SALOMEDS.idl, idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
43548           idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
43549           resources/CatalogResources.xml, resources/KERNELCatalog.xml,
43550           resources/Plugin.in, salome_adm/Makefile.in,
43551           salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
43552           salome_adm/unix/make_commence.in,
43553           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
43554           salome_adm/unix/config_files/ac_cxx_bool.m4,
43555           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
43556           salome_adm/unix/config_files/ac_cxx_mutable.m4,
43557           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
43558           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
43559           salome_adm/unix/config_files/ac_cxx_typename.m4,
43560           salome_adm/unix/config_files/check_boost.m4,
43561           salome_adm/unix/config_files/check_cas.m4,
43562           salome_adm/unix/config_files/check_cppunit.m4,
43563           salome_adm/unix/config_files/check_hdf5.m4,
43564           salome_adm/unix/config_files/check_lam.m4,
43565           salome_adm/unix/config_files/check_lsf.m4,
43566           salome_adm/unix/config_files/check_mico.m4,
43567           salome_adm/unix/config_files/check_mpi.m4,
43568           salome_adm/unix/config_files/check_mpich.m4,
43569           salome_adm/unix/config_files/check_msg2qm.m4,
43570           salome_adm/unix/config_files/check_omniorb.m4,
43571           salome_adm/unix/config_files/check_opengl.m4,
43572           salome_adm/unix/config_files/check_openpbs.m4,
43573           salome_adm/unix/config_files/check_pthreads.m4,
43574           salome_adm/unix/config_files/check_pyqt.m4,
43575           salome_adm/unix/config_files/check_qt.m4,
43576           salome_adm/unix/config_files/check_qwt.m4,
43577           salome_adm/unix/config_files/check_sip.m4,
43578           salome_adm/unix/config_files/check_vtk.m4,
43579           salome_adm/unix/config_files/libtool.m4,
43580           salome_adm/unix/config_files/production.m4,
43581           salome_adm/unix/config_files/pyembed.m4,
43582           salome_adm/unix/config_files/python.m4, src/Makefile.in,
43583           src/Basics/BasicsGenericDestructor.cxx,
43584           src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.in,
43585           src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.in,
43586           src/Communication/Makefile.in,
43587           src/Communication/MultiCommException.hxx,
43588           src/Communication/Receiver.hxx,
43589           src/Communication/ReceiverFactory.cxx,
43590           src/Communication/ReceiverFactory.hxx,
43591           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
43592           src/Communication/SALOMEMultiComm.cxx,
43593           src/Communication/SALOMEMultiComm.hxx,
43594           src/Communication/SALOME_Comm_i.cxx,
43595           src/Communication/SALOME_Comm_i.hxx,
43596           src/Communication/SenderFactory.cxx,
43597           src/Communication/SenderFactory.hxx,
43598           src/Communication/libSALOME_Comm.i,
43599           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
43600           src/Container/Container_init_python.cxx,
43601           src/Container/Container_init_python.hxx,
43602           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
43603           src/Container/SALOME_Component_i.hxx,
43604           src/Container/SALOME_Container.cxx,
43605           src/Container/SALOME_Container.py,
43606           src/Container/SALOME_ContainerManager.cxx,
43607           src/Container/SALOME_ContainerManager.hxx,
43608           src/Container/SALOME_ContainerManagerServer.cxx,
43609           src/Container/SALOME_ContainerPy.py,
43610           src/Container/SALOME_Container_i.hxx,
43611           src/GenericObj/SALOME_GenericObj_i.cc,
43612           src/GenericObj/SALOME_GenericObj_i.hh,
43613           src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
43614           src/HDFPersist/HDFcontainerObject.hxx,
43615           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
43616           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
43617           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFfile.cc,
43618           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.hxx,
43619           src/HDFPersist/HDFinternalObject.cc,
43620           src/HDFPersist/HDFinternalObject.hxx,
43621           src/HDFPersist/HDFobject.hxx, src/KERNEL_PY/Help.py,
43622           src/KERNEL_PY/Makefile.in, src/KERNEL_PY/PyInterp.py,
43623           src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
43624           src/KERNEL_PY/kernel_shared_modules.py, src/KERNEL_PY/salome.py,
43625           src/KERNEL_PY/salome_ComponentGUI.py,
43626           src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
43627           src/KERNEL_PY/salome_shared_modules.py,
43628           src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
43629           src/LifeCycleCORBA/Launchers.cxx, src/LifeCycleCORBA/Makefile.in,
43630           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
43631           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
43632           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
43633           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
43634           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
43635           src/LifeCycleCORBA/Test/Makefile.in,
43636           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
43637           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
43638           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
43639           src/LifeCycleCORBA_SWIG/Makefile.in,
43640           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
43641           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
43642           src/Logger/SALOME_Logger_Server.cxx,
43643           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
43644           src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.in,
43645           src/Logger/Test/TestKiller.py,
43646           src/MPIContainer/MPIContainer_i.cxx,
43647           src/MPIContainer/MPIContainer_i.hxx,
43648           src/MPIContainer/Makefile.in,
43649           src/MPIContainer/SALOME_MPIContainer.cxx,
43650           src/ModuleCatalog/Makefile.in,
43651           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
43652           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
43653           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
43654           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
43655           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
43656           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
43657           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
43658           src/ModuleGenerator/IDLparser.py, src/NamingService/Makefile.in,
43659           src/NamingService/NamingService_WaitForServerReadiness.cxx,
43660           src/NamingService/NamingService_WaitForServerReadiness.hxx,
43661           src/NamingService/SALOME_NamingService.cxx,
43662           src/NamingService/SALOME_NamingService.hxx,
43663           src/NamingService/SALOME_NamingServicePy.py,
43664           src/NamingService/ServiceUnreachable.hxx,
43665           src/Notification/NOTIFICATION.cxx,
43666           src/Notification/NOTIFICATION.hxx,
43667           src/Notification/NOTIFICATION_Consumer.hxx,
43668           src/Notification/NOTIFICATION_Supplier.hxx,
43669           src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
43670           src/Registry/RegistryConnexion.hxx,
43671           src/Registry/RegistryService.cxx,
43672           src/Registry/RegistryService.hxx,
43673           src/Registry/SALOME_Registry_Server.cxx,
43674           src/ResourcesManager/Makefile.in,
43675           src/ResourcesManager/SALOME_LoadRateManager.cxx,
43676           src/ResourcesManager/SALOME_LoadRateManager.hxx,
43677           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
43678           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
43679           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
43680           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
43681           src/ResourcesManager/SALOME_ResourcesManager.cxx,
43682           src/ResourcesManager/SALOME_ResourcesManager.hxx,
43683           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
43684           src/SALOMEDS/SALOMEDS.hxx,
43685           src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
43686           src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
43687           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
43688           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
43689           src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
43690           src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
43691           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
43692           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
43693           src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
43694           src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
43695           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
43696           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
43697           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
43698           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
43699           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
43700           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
43701           src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
43702           src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
43703           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
43704           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
43705           src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
43706           src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
43707           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
43708           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
43709           src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
43710           src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
43711           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
43712           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
43713           src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
43714           src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
43715           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
43716           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
43717           src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
43718           src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
43719           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
43720           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
43721           src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
43722           src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
43723           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
43724           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
43725           src/SALOMEDS/SALOMEDS_AttributeName.cxx,
43726           src/SALOMEDS/SALOMEDS_AttributeName.hxx,
43727           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
43728           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
43729           src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
43730           src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
43731           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
43732           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
43733           src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
43734           src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
43735           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
43736           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
43737           src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
43738           src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
43739           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
43740           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
43741           src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
43742           src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
43743           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
43744           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
43745           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
43746           src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
43747           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
43748           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
43749           src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
43750           src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
43751           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
43752           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
43753           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
43754           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
43755           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
43756           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
43757           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
43758           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
43759           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
43760           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
43761           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
43762           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
43763           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
43764           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
43765           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
43766           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
43767           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
43768           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
43769           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
43770           src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
43771           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
43772           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
43773           src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
43774           src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
43775           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
43776           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
43777           src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
43778           src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
43779           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
43780           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
43781           src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
43782           src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
43783           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
43784           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
43785           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
43786           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
43787           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
43788           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
43789           src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
43790           src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
43791           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
43792           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
43793           src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
43794           src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
43795           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
43796           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
43797           src/SALOMEDS/SALOMEDS_Attributes.hxx,
43798           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
43799           src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
43800           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
43801           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
43802           src/SALOMEDS/SALOMEDS_Client.cxx,
43803           src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
43804           src/SALOMEDS/SALOMEDS_Driver_i.cxx,
43805           src/SALOMEDS/SALOMEDS_Driver_i.hxx,
43806           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
43807           src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
43808           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
43809           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
43810           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
43811           src/SALOMEDS/SALOMEDS_SComponent.cxx,
43812           src/SALOMEDS/SALOMEDS_SComponent.hxx,
43813           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
43814           src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
43815           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
43816           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
43817           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
43818           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
43819           src/SALOMEDS/SALOMEDS_SObject.cxx,
43820           src/SALOMEDS/SALOMEDS_SObject.hxx,
43821           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
43822           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
43823           src/SALOMEDS/SALOMEDS_Server.cxx,
43824           src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
43825           src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
43826           src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
43827           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
43828           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
43829           src/SALOMEDS/SALOMEDS_StudyManager.cxx,
43830           src/SALOMEDS/SALOMEDS_StudyManager.hxx,
43831           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
43832           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
43833           src/SALOMEDS/SALOMEDS_Study_i.cxx,
43834           src/SALOMEDS/SALOMEDS_Study_i.hxx,
43835           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
43836           src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
43837           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
43838           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
43839           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
43840           src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
43841           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
43842           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
43843           src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDSClient/Makefile.in,
43844           src/SALOMEDSClient/SALOMEDSClient.hxx,
43845           src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
43846           src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
43847           src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
43848           src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
43849           src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
43850           src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
43851           src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
43852           src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
43853           src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
43854           src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
43855           src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
43856           src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
43857           src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
43858           src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
43859           src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
43860           src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
43861           src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
43862           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
43863           src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
43864           src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
43865           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
43866           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
43867           src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
43868           src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
43869           src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
43870           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
43871           src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
43872           src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
43873           src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
43874           src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
43875           src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
43876           src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
43877           src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
43878           src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
43879           src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
43880           src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
43881           src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
43882           src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
43883           src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
43884           src/SALOMEDSImpl/Makefile.in,
43885           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
43886           src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
43887           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
43888           src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
43889           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
43890           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
43891           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
43892           src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
43893           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
43894           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
43895           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
43896           src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
43897           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
43898           src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
43899           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
43900           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
43901           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
43902           src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
43903           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
43904           src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
43905           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
43906           src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
43907           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
43908           src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
43909           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
43910           src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
43911           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
43912           src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
43913           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
43914           src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
43915           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
43916           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
43917           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
43918           src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
43919           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
43920           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
43921           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
43922           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
43923           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
43924           src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
43925           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
43926           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
43927           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
43928           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
43929           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
43930           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
43931           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
43932           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
43933           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
43934           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
43935           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
43936           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
43937           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
43938           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
43939           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
43940           src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
43941           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
43942           src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
43943           src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
43944           src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
43945           src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
43946           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
43947           src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
43948           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
43949           src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
43950           src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
43951           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
43952           src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
43953           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
43954           src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
43955           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
43956           src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
43957           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
43958           src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
43959           src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
43960           src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
43961           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
43962           src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
43963           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
43964           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
43965           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
43966           src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
43967           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
43968           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
43969           src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
43970           src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
43971           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
43972           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
43973           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
43974           src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
43975           src/SALOMEDSImpl/testDS.cxx,
43976           src/SALOMELocalTrace/BaseTraceCollector.cxx,
43977           src/SALOMELocalTrace/BaseTraceCollector.hxx,
43978           src/SALOMELocalTrace/FileTraceCollector.cxx,
43979           src/SALOMELocalTrace/FileTraceCollector.hxx,
43980           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
43981           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
43982           src/SALOMELocalTrace/LocalTraceCollector.cxx,
43983           src/SALOMELocalTrace/LocalTraceCollector.hxx,
43984           src/SALOMELocalTrace/Makefile.in,
43985           src/SALOMELocalTrace/utilities.h,
43986           src/SALOMELocalTrace/Test/Makefile.in,
43987           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
43988           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
43989           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
43990           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
43991           src/SALOMETraceCollector/Makefile.in,
43992           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
43993           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
43994           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
43995           src/SALOMETraceCollector/Test/Makefile.in,
43996           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
43997           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
43998           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
43999           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
44000           src/TOOLSDS/Makefile.in, src/TOOLSDS/SALOMEDS_Tool.cxx,
44001           src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.in,
44002           src/TestContainer/SALOME_TestComponent_i.cxx,
44003           src/TestContainer/TestComponentPy.py,
44004           src/TestContainer/TestContainer.cxx,
44005           src/TestMPIContainer/Makefile.in,
44006           src/TestMPIContainer/TestMPIContainer.cxx,
44007           src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
44008           src/UnitTests/UnitTests.py, src/Utils/Makefile.in,
44009           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
44010           src/Utils/Utils_CommException.hxx,
44011           src/Utils/Utils_CorbaException.hxx,
44012           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
44013           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
44014           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
44015           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
44016           src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
44017           src/Utils/Utils_ORB_INIT.hxx,
44018           src/Utils/Utils_SALOME_Exception.cxx,
44019           src/Utils/Utils_SALOME_Exception.hxx,
44020           src/Utils/Utils_SINGLETON.hxx,
44021           src/Utils/Utils_SignalsHandler.cxx,
44022           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
44023           src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
44024           src/Utils/Test/Makefile.in, src/Utils/Test/TestUtils.cxx,
44025           src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
44026           src/Utils/Test/UtilsTest.hxx:
44027
44028         PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
44029
44030 2005-10-17 11:20  prascle
44031
44032         * src/: SALOMELocalTrace/FileTraceCollector.cxx,
44033           SALOMELocalTrace/LocalTraceCollector.cxx,
44034           SALOMETraceCollector/SALOMETraceCollector.cxx:
44035
44036         PR: try to stop trace earlier (commented: no visible effect)
44037
44038 2005-10-17 11:17  prascle
44039
44040         * src/Container/: Container_i.cxx, SALOME_Container.cxx:
44041
44042         PR: trace must be deleted before orb shutdown.
44043
44044 2005-10-17 10:13  prascle
44045
44046         * bin/appliskel/: .bashrc, .basrhc:
44047
44048         PR: wrong name
44049
44050 2005-10-15 12:26  prascle
44051
44052         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
44053           resources/KERNELCatalog.xml,
44054           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
44055
44056         PR: manual merge from BR_3_0_0_OCC
44057
44058 2005-10-15 12:25  prascle
44059
44060         * src/Basics/Test/BasicMainTest.hxx:
44061
44062         PR: test result summary in a file
44063
44064 2005-10-15 12:24  prascle
44065
44066         * src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx:
44067
44068         PR: more specific messages on test fails
44069
44070 2005-10-15 12:22  prascle
44071
44072         * README.FIRST.txt, doc/INSTALL.txt, doc/SALOME_Application.txt,
44073           doc/UnitTests.txt:
44074
44075         PR: complements on doc files
44076
44077 2005-10-15 12:21  prascle
44078
44079         * bin/appliskel/.basrhc:
44080
44081         PR: definitions from ~/.bashrc, specific prompt
44082
44083 2005-10-12 10:18  apo
44084
44085         * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
44086
44087         Restore from mistaken integration
44088
44089 2005-10-12 10:11  jfa
44090
44091         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
44092
44093         Small correction: delete [] string, allocated by CORBA
44094
44095 2005-10-11 18:19  prascle
44096
44097         * README.FIRST.txt, doc/INSTALL.txt, doc/UnitTests.txt,
44098           doc/SALOME_Application.txt:
44099
44100         PR: doc
44101
44102 2005-10-11 11:26  prascle
44103
44104         * bin/launchConfigureParser.py, bin/runSalome.py,
44105           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
44106           src/Communication/MultiCommException.hxx,
44107           src/Communication/SALOMEMultiComm.hxx,
44108           src/Communication/SenderFactory.hxx,
44109           src/Container/SALOME_Container.cxx, src/HDFPersist/HDFascii.cc,
44110           src/SALOMEDS/Makefile.in,
44111           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
44112           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
44113           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
44114           src/SALOMEDS/SALOMEDS_SObject.cxx,
44115           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
44116           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
44117           src/SALOMEDS/SALOME_DriverPy.py,
44118           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
44119           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
44120           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
44121           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
44122           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
44123           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
44124
44125         PR: manual merge with V3_1_0a1
44126
44127 2005-10-11 09:07  jfa
44128
44129         * src/SALOMELocalTrace/LocalTraceCollector.cxx:
44130
44131         Fix error of LocalTraceCollector: crash on exit from application
44132
44133 2005-10-11 09:00  prascle
44134
44135         * src/LifeCycleCORBA/Test/: LifeCycleCORBATest.cxx,
44136           LifeCycleCORBATest.hxx:
44137
44138         PR: more test on LifeCycleCORBA
44139
44140 2005-10-10 16:50  prascle
44141
44142         * bin/appliskel/runAppli, bin/appliskel/runRemote.sh,
44143           bin/appliskel/runTests,
44144           src/Container/SALOME_ContainerManager.cxx,
44145           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
44146           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
44147           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
44148           src/ResourcesManager/SALOME_ResourcesManager.cxx,
44149           src/ResourcesManager/SALOME_ResourcesManager.hxx:
44150
44151         PR: resources manager with and without SALOME Appli
44152
44153 2005-10-10 11:24  prascle
44154
44155         * configure.in.base, salome_adm/unix/make_commence.in,
44156           salome_adm/unix/config_files/check_cppunit.m4, src/Makefile.in,
44157           src/Basics/Test/Makefile.in, src/LifeCycleCORBA/Test/Makefile.in,
44158           src/Logger/Test/Makefile.in,
44159           src/SALOMELocalTrace/Test/Makefile.in,
44160           src/SALOMETraceCollector/Test/Makefile.in,
44161           src/UnitTests/Makefile.in, src/Utils/Test/Makefile.in:
44162
44163         PR: check cppunit library
44164
44165 2005-10-10 11:15  apo
44166
44167         * INSTALL, bin/VERSION, bin/launchConfigureParser.py,
44168           bin/runSalome.py, resources/CatalogResources.xml,
44169           resources/KERNELCatalog.xml, src/Container/Makefile.in,
44170           src/Container/SALOME_DriverPy.py, src/ModuleCatalog/Makefile.in,
44171           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
44172           src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
44173           src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
44174           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
44175           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
44176           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
44177           src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
44178           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
44179           src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
44180           src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
44181           src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
44182           src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
44183           src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
44184
44185         Merging with V3_1_0a
44186
44187 2005-10-09 18:23  prascle
44188
44189         * bin/launchConfigureParser.py, bin/runSalome.py, src/Makefile.in,
44190           src/Container/SALOME_ContainerManager.cxx,
44191           src/Container/SALOME_ContainerManager.hxx,
44192           src/LifeCycleCORBA/Makefile.in,
44193           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
44194           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
44195           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
44196           src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
44197           src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
44198           src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
44199           src/LifeCycleCORBA/Test/Makefile.in,
44200           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
44201           src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
44202           src/Logger/Test/TestKiller.py, src/ModuleCatalog/Makefile.in,
44203           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
44204           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
44205           src/ResourcesManager/SALOME_LoadRateManager.cxx,
44206           src/ResourcesManager/SALOME_LoadRateManager.hxx,
44207           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
44208           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
44209           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
44210           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
44211           src/ResourcesManager/SALOME_ResourcesManager.cxx,
44212           src/ResourcesManager/SALOME_ResourcesManager.hxx,
44213           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
44214           src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
44215           src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
44216           src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
44217           src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
44218           src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
44219           src/UnitTests/UnitTests.py,
44220           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
44221           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
44222           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Test/TestUtils.cxx,
44223           src/Utils/Test/UtilsTest.cxx:
44224
44225         PR : Unit Testing - LifeCycleCORBA - in progress
44226
44227 2005-10-05 22:23  prascle
44228
44229         * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
44230           SALOMELocalTrace/BaseTraceCollector.hxx,
44231           SALOMELocalTrace/FileTraceCollector.cxx,
44232           SALOMELocalTrace/LocalTraceCollector.cxx,
44233           SALOMETraceCollector/SALOMETraceCollector.cxx:
44234
44235         PR: design simplification
44236
44237 2005-10-05 20:25  prascle
44238
44239         * src/: Basics/BasicsGenericDestructor.cxx,
44240           Basics/BasicsGenericDestructor.hxx,
44241           SALOMELocalTrace/FileTraceCollector.cxx,
44242           SALOMELocalTrace/LocalTraceBufferPool.cxx,
44243           SALOMETraceCollector/SALOMETraceCollector.cxx:
44244
44245         PR: trace debug at exit
44246
44247 2005-10-05 12:08  prascle
44248
44249         * src/: Utils/Test/Makefile.in, Utils/Test/TestUtils.cxx,
44250           Utils/Test/TestUtils.py, Logger/Test/Makefile.in,
44251           Logger/Test/TestKiller.py:
44252
44253         PR: complement on unit tests
44254
44255 2005-10-05 12:05  prascle
44256
44257         * src/: Makefile.in, Basics/Makefile.in,
44258           Basics/Test/BasicMainTest.hxx, Basics/Test/Makefile.in,
44259           SALOMELocalTrace/Test/Makefile.in,
44260           SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
44261           SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
44262           SALOMETraceCollector/Test/Makefile.in,
44263           SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
44264           SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
44265           UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
44266           UnitTests/UnitTests.py:
44267
44268         PR: complement on unit tests
44269
44270 2005-10-05 12:04  prascle
44271
44272         * bin/appliskel/: runAppli, runSession, runTests:
44273
44274         PR: script to set SALOME environment for unit tests
44275
44276 2005-10-05 11:20  secher
44277
44278         * src/: MPIContainer/Makefile.in, TestMPIContainer/Makefile.in:
44279
44280         update for link with libSALOMEBasics
44281
44282 2005-10-05 09:16  prascle
44283
44284         * README, README.FIRST.txt, doc/INSTALL.txt, doc/UnitTests.txt:
44285
44286         PR: some doc, in docutils format
44287
44288 2005-10-04 16:15  jfa
44289
44290         * INSTALL, bin/VERSION, resources/CatalogResources.xml,
44291           resources/KERNELCatalog.xml:
44292
44293         Update version to 3.1.0a
44294
44295 2005-10-03 19:01  prascle
44296
44297         * README.FIRST.txt:
44298
44299         PR: example of document.txt in reST format, to produce html documentation with docutils - rest2html
44300
44301 2005-10-03 15:14  prascle
44302
44303         * src/: Makefile.in, SALOMELocalTrace/Test/Makefile.in,
44304           SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
44305           SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
44306           SALOMETraceCollector/Test/Makefile.in,
44307           SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
44308           SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
44309           UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
44310           Utils/Test/Makefile.in, Utils/Test/UtilsTest.cxx,
44311           Utils/Test/UtilsTest.hxx:
44312
44313         PR: Testing: Add Unit Tests based on cppunit prerequisite
44314
44315 2005-10-03 12:06  prascle
44316
44317         * src/Makefile.in:
44318
44319         PR: correct previous commit (intended to be on a branch dedicated to unitary tests)
44320
44321 2005-10-03 12:03  prascle
44322
44323         * src/Container/SALOME_Container_i.hxx:
44324
44325         PR: methods required by parallel containers
44326
44327 2005-10-03 12:02  prascle
44328
44329         * src/SALOMEDS/SALOMEDS_SObject.cxx:
44330
44331         PR: explicit dependancy to utilities.h
44332
44333 2005-10-03 12:00  prascle
44334
44335         * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
44336           Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.cxx,
44337           Utils_SINGLETON.hxx:
44338
44339         PR: remove explicit calls to Trace mecanism to avoid problems when trace classes are deleted early (temporary fix)
44340
44341 2005-10-03 11:47  prascle
44342
44343         * src/: SALOMELocalTrace/FileTraceCollector.cxx,
44344           SALOMELocalTrace/LocalTraceBufferPool.cxx,
44345           SALOMETraceCollector/SALOMETraceCollector.cxx:
44346
44347         PR: use of BasicsGenericDestructor
44348
44349 2005-10-03 11:45  prascle
44350
44351         * src/Basics/: BasicsGenericDestructor.cxx,
44352           BasicsGenericDestructor.hxx, Makefile.in:
44353
44354         PR: A pure C++ generic destructor with protected delete
44355
44356 2005-09-30 16:47  prascle
44357
44358         * src/: A_LIRE_SALOME, Makefile.in, Container/Makefile.in,
44359           LifeCycleCORBA/Makefile.in, ModuleCatalog/Makefile.in,
44360           Registry/Makefile.in, SALOMEDS/Makefile.in,
44361           SALOMELocalTrace/FileTraceCollector.cxx,
44362           SALOMELocalTrace/LocalTraceBufferPool.cxx,
44363           SALOMELocalTrace/LocalTraceBufferPool.hxx,
44364           SALOMELocalTrace/Makefile.in, TestContainer/Makefile.in:
44365
44366         PR: obsolete
44367
44368 2005-09-30 11:01  jfa
44369
44370         * src/Container/: Makefile.in, SALOME_DriverPy.py:
44371
44372         PAL10120: provide default implementation of SALOMEDS::Driver for python modules
44373
44374 2005-09-30 10:34  vsr
44375
44376         * src/SALOMEDS/SALOMEDS_AttributeReal.cxx:
44377
44378         Fix a bug of AttributeReal: value is converted to bool
44379
44380 2005-09-30 10:06  jfa
44381
44382         * src/Container/: Makefile.in, SALOME_DriverPy.py:
44383
44384         PAL10120: provide default implementation of SALOMEDS::Driver for python modules
44385
44386 2005-09-30 09:53  vsr
44387
44388         * bin/runSalome.py:
44389
44390         Set default values for SUITRoot and SalomeAppConfig variables
44391
44392 2005-09-29 14:38  prascle
44393
44394         * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
44395           SALOMELocalTrace/BaseTraceCollector.hxx,
44396           SALOMELocalTrace/FileTraceCollector.cxx,
44397           SALOMELocalTrace/LocalTraceBufferPool.cxx,
44398           SALOMELocalTrace/LocalTraceBufferPool.hxx,
44399           SALOMELocalTrace/LocalTraceCollector.cxx,
44400           SALOMETraceCollector/SALOMETraceCollector.cxx,
44401           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx:
44402
44403         PR: debug delete trace classes
44404
44405 2005-09-29 13:36  jfa
44406
44407         * src/: SALOMEDS/SALOMEDS_StudyManager_i.cxx,
44408           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
44409
44410         PAL10114: GetStudyByName() finds a study although it doesn't exist
44411
44412 2005-09-29 13:35  jfa
44413
44414         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
44415
44416         Add missing _retn()
44417
44418 2005-09-27 09:47  prascle
44419
44420         * bin/runSalome.py, src/Container/Makefile.in,
44421           src/Container/SALOME_Container.cxx,
44422           src/Container/SALOME_ContainerManagerServer.cxx,
44423           src/LifeCycleCORBA/Makefile.in,
44424           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
44425           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
44426           src/MPIContainer/Makefile.in,
44427           src/MPIContainer/SALOME_MPIContainer.cxx,
44428           src/ModuleCatalog/Makefile.in,
44429           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
44430           src/Registry/Makefile.in,
44431           src/Registry/SALOME_Registry_Server.cxx,
44432           src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.in,
44433           src/SALOMELocalTrace/BaseTraceCollector.cxx,
44434           src/SALOMELocalTrace/BaseTraceCollector.hxx,
44435           src/SALOMELocalTrace/FileTraceCollector.cxx,
44436           src/SALOMELocalTrace/FileTraceCollector.hxx,
44437           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
44438           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
44439           src/SALOMELocalTrace/LocalTraceCollector.cxx,
44440           src/SALOMELocalTrace/LocalTraceCollector.hxx,
44441           src/SALOMELocalTrace/Makefile.in,
44442           src/SALOMETraceCollector/Makefile.in,
44443           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
44444           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
44445           src/TestContainer/Makefile.in,
44446           src/TestContainer/TestContainer.cxx,
44447           src/TestMPIContainer/TestMPIContainer.cxx,
44448           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
44449
44450         PR: automatic start of trace collector, different classes of trace. (todo: automatic destruction of trace buffer pool and collector)
44451
44452 2005-09-26 09:20  prascle
44453
44454         * src/: ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
44455           Registry/SALOME_Registry_Server.cxx,
44456           ResourcesManager/SALOME_ResourcesManager.cxx,
44457           TestContainer/TestContainer.cxx:
44458
44459         PR: Automatic trace collector start
44460
44461 2005-09-26 09:16  prascle
44462
44463         * src/: Container/SALOME_Container.cxx,
44464           Container/SALOME_ContainerManagerServer.cxx,
44465           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
44466           LifeCycleCORBA/TestLifeCycleCORBA.cxx:
44467
44468         PR: Automatic trace collector start
44469
44470 2005-09-26 09:13  prascle
44471
44472         * src/: SALOMELocalTrace/LocalTraceCollector.hxx,
44473           SALOMETraceCollector/SALOMETraceCollector.cxx,
44474           SALOMETraceCollector/SALOMETraceCollector.hxx:
44475
44476         PR: Automatic trace collector start
44477
44478 2005-09-23 14:38  mpv
44479
44480         * src/ModuleCatalog/Makefile.in:
44481
44482         MPV: correction of appeared "undefined symbols" in libSalomeCatalog.so
44483
44484 2005-09-22 18:49  prascle
44485
44486         * src/: Container/SALOME_ContainerManager.cxx,
44487           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
44488           ResourcesManager/SALOME_ResourcesManager.cxx:
44489
44490         PR: LifeCycle and Application
44491
44492 2005-09-22 15:06  mkr
44493
44494         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
44495
44496         Fix for bug IPAL10056 : Crash after run Dataflow and creating new file.
44497
44498 2005-09-22 08:31  vsr
44499
44500         * salome_adm/unix/: config_files/check_pyqt.m4,
44501           config_files/check_sip.m4, make_commence.in:
44502
44503         Fix bug PAL10043
44504
44505 2005-09-21 17:30  vsr
44506
44507         * bin/launchConfigureParser.py:
44508
44509         Avoid unexpected exception in launchConfigureParser (if some wrong key is given for command line)
44510
44511 2005-09-21 14:53  eap
44512
44513         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
44514
44515         fix bug 10044 (There is misprint in comment to generated files of DumpPython)
44516
44517 2005-09-21 14:27  jfa
44518
44519         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
44520           SALOMEDSImpl_StudyBuilder.cxx:
44521
44522         Do not mark document as Modified on IOR attribute setting
44523
44524 2005-09-20 21:19  prascle
44525
44526         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
44527
44528         PR: Trace collector instance when used in an external Python module
44529
44530 2005-09-20 17:02  vsr
44531
44532         * bin/launchConfigureParser.py:
44533
44534         avoid exception when configuration files do not exist
44535
44536 2005-09-20 16:44  jfa
44537
44538         * src/: SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
44539           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
44540           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
44541           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
44542           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
44543           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
44544
44545         Fix some problems with Study Properties
44546
44547 2005-09-20 16:36  prascle
44548
44549         * bin/appliskel/runAppli, bin/appliskel/runSession,
44550           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
44551           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
44552           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
44553           src/Container/SALOME_Component_i.hxx,
44554           src/Container/SALOME_Container.py,
44555           src/Container/SALOME_ContainerManager.cxx,
44556           src/Container/SALOME_ContainerManager.hxx,
44557           src/Container/SALOME_ContainerPy.py,
44558           src/Container/SALOME_Container_i.hxx,
44559           src/LifeCycleCORBA/Makefile.in,
44560           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
44561           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
44562           src/LifeCycleCORBA_SWIG/Makefile.in,
44563           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
44564           src/ModuleCatalog/Makefile.in, src/NamingService/Makefile.in,
44565           src/NamingService/SALOME_NamingService.cxx,
44566           src/Registry/Makefile.in, src/ResourcesManager/Makefile.in,
44567           src/ResourcesManager/SALOME_LoadRateManager.cxx,
44568           src/ResourcesManager/SALOME_ResourcesManager.cxx,
44569           src/TestContainer/Makefile.in:
44570
44571         PR: LifeCycleCORBA and Container Manager Corrections
44572
44573 2005-09-20 16:30  prascle
44574
44575         * bin/appliskel/: CatalogResources.xml, README, SalomeApp.xml,
44576           envd, runAppli, runConsole, runParam, runRemote.sh, runSession:
44577
44578         PR: missing merge
44579
44580 2005-09-16 10:55  jfa
44581
44582         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
44583
44584         Prevent connecting of not unloaded study: now SALOMEDS::Study::_name keeps full path of the study file
44585
44586 2005-09-16 09:33  apo
44587
44588         * salome_adm/unix/: config_files/check_boost.m4, make_commence.in:
44589
44590         Complete usage of boost-1.33.0 library
44591
44592 2005-09-13 12:41  mzn
44593
44594         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
44595
44596         Version.
44597
44598 2005-09-12 13:52  srn
44599
44600         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
44601
44602         Modified method PasteLabel, added {}
44603
44604 2005-09-12 10:51  srn
44605
44606         * src/HDFPersist/HDFascii.cc:
44607
44608         BugID: PAL9884, Modified a method CreateDatasetFromASCII.
44609
44610 2005-09-09 07:07  env
44611
44612         * src/: Container/SALOME_Container.cxx,
44613           Communication/MultiCommException.hxx,
44614           Communication/SALOMEMultiComm.hxx,
44615           Communication/SenderFactory.hxx:
44616
44617         ENV: Windows porting.
44618
44619 2005-09-08 11:37  srn
44620
44621         * src/HDFPersist/HDFdatasetWrite.c:
44622
44623         Modified the way a size of INT32 dataset is calculated
44624
44625 2005-09-06 13:25  mzn
44626
44627         * src/SALOMEDS/SALOMEDS_SObject.cxx:
44628
44629         Fix for problem: crash of application during getting object with empty ior.
44630
44631 2005-09-06 07:22  srn
44632
44633         * src/SALOMETraceCollector/SALOMETraceCollector.cxx:
44634
44635         Added a new condition to get out of while cycle in a mthod run
44636
44637 2005-09-05 12:31  vsr
44638
44639         * salome_adm/unix/: make_conclude.in, make_module.in:
44640
44641         Fix a problem of 'make install' step for resource files.
44642
44643 2005-09-01 14:40  apo
44644
44645         * salome_adm/unix/: make_conclude.in, make_module.in:
44646
44647         Fix a bug of previous integration
44648
44649 2005-09-01 08:50  smh
44650
44651         * bin/VERSION:
44652
44653         Version 3.0.2
44654
44655 2005-08-31 15:40  prascle
44656
44657         * bin/runSalome.py:
44658
44659         PR: Launch SALOME_Session_Server after all other servers and environment
44660         bug PAL9842
44661
44662 2005-08-31 12:49  srn
44663
44664         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
44665
44666         Removed unnecessary mutex locks.
44667
44668 2005-08-30 11:49  srn
44669
44670         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
44671
44672         Removed a mutex lock in the method PasteInto
44673
44674 2005-08-30 09:12  srn
44675
44676         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
44677
44678         Added a mutex unlock before call to FindOrLoadComponent
44679
44680 2005-08-30 08:19  asv
44681
44682         * salome_adm/unix/: make_conclude.in, make_module.in:
44683
44684         improvement to building of resources:
44685         1) if "RESOURCES_FILES" variable is NOT defined in Makefile.in, then ALL files from srcdir/resources are copied to builddir/share/salome/resources
44686         2) including directories ("cp -fr" is used)
44687         3) except "CVS" directory
44688
44689 2005-08-29 09:35  srn
44690
44691         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
44692
44693         Added an update of the ObjectBrowser
44694
44695 2005-08-29 07:54  env
44696
44697         * src/Container/Container_i.cxx:
44698
44699         ENV: Windows porting
44700
44701 2005-08-25 06:37  mkr
44702
44703         * src/Container/: Component_i.cxx, SALOME_ComponentPy.py:
44704
44705         Fix for bug PAL9773 : SALOME_ComponentPy.py not synchronized with latest LifeCycleCORBA changes.
44706
44707 2005-08-24 15:40  sln
44708
44709         * src/SALOMEDS/SALOMEDS_Study.cxx:
44710
44711         Verification if ( !aSeq.IsNull() ) added before aLength = aSeq->Length(); string in FindDependances method to avoid exception
44712
44713 2005-08-24 14:46  srn
44714
44715         * src/KERNEL_PY/kernel_shared_modules.py:
44716
44717         added import of CORBA module
44718
44719 2005-08-24 12:22  vsr
44720
44721         * src/KERNEL_PY/kernel_shared_modules.py:
44722
44723         LifeCycleCORBA swig-wrapping library should be loaded only once in the Python interpreter
44724
44725 2005-08-24 06:32  mkr
44726
44727         * src/Container/: SALOME_ComponentPy.py, SALOME_ContainerPy.py:
44728
44729         Fix for bug PAL9772 : SALOME_ContainerPy.py not synchronized with latest LifeCycleCORBA changes.
44730
44731 2005-08-23 12:54  mkr
44732
44733         * src/Container/SALOME_ContainerPy.py:
44734
44735         Fix for bug IPAL9730 (CRASH after trying to run "GraphConvertIORCheck.xml"
44736         dataflow) and partially for bug PAL9772 (SALOME_ContainerPy.py not
44737         synchronized with latest LifeCycleCORBA changes).
44738
44739 2005-08-22 13:47  srn
44740
44741         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
44742           SALOMEDSImpl_AttributeExternalFileDef.cxx,
44743           SALOMEDSImpl_AttributeFileType.cxx,
44744           SALOMEDSImpl_AttributeLocalID.cxx,
44745           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributePixMap.cxx,
44746           SALOMEDSImpl_AttributeReference.cxx,
44747           SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
44748           SALOMEDSImpl_AttributeTableOfReal.cxx,
44749           SALOMEDSImpl_AttributeUserID.cxx,
44750           SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_Study.cxx,
44751           SALOMEDSImpl_AttributeIOR.cxx, SALOMEDSImpl_AttributeInteger.cxx,
44752           SALOMEDSImpl_AttributePersistentRef.cxx,
44753           SALOMEDSImpl_AttributePythonObject.cxx,
44754           SALOMEDSImpl_AttributeReal.cxx,
44755           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
44756           SALOMEDSImpl_AttributeTableOfInteger.cxx,
44757           SALOMEDSImpl_AttributeTableOfString.cxx,
44758           SALOMEDSImpl_AttributeTarget.cxx,
44759           SALOMEDSImpl_AttributeTextColor.cxx,
44760           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
44761           SALOMEDSImpl_AttributeTreeNode.cxx,
44762           SALOMEDSImpl_GenericAttribute.cxx, SALOMEDSImpl_Study.hxx,
44763           SALOMEDSImpl_StudyBuilder.cxx:
44764
44765         Added a method Modify to Study and a method SetModifyFlag to GenericAttribute. Now all attributes calls the method SetModifyFlag when they change their state
44766
44767 2005-08-22 08:52  vsr
44768
44769         * salome_adm/unix/: config_files/check_pyqt.m4, make_commence.in:
44770
44771         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.
44772
44773 2005-08-18 14:21  jfa
44774
44775         * bin/runSalome.py:
44776
44777         Implicitly set paths for GUI module like for KERNEL
44778
44779 2005-08-18 12:59  srn
44780
44781         * src/HDFPersist/HDFdatasetWrite.c:
44782
44783         BugID: IPAL9619, modified a way to get the size of a dataset in case if the dataset has a type HDF_INT32
44784
44785 2005-08-18 11:00  mpv
44786
44787         * src/Container/Container_i.cxx:
44788
44789         Windows porting
44790
44791 2005-08-17 09:05  vsr
44792
44793         * salome_adm/unix/config_files/: ac_cxx_bool.m4,
44794           ac_cxx_depend_flag.m4, ac_cxx_mutable.m4, ac_cxx_namespaces.m4,
44795           ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
44796           check_pthreads.m4, libtool.m4, production.m4, pyembed.m4,
44797           python.m4:
44798
44799         Fix check files errors: autoconf 2.59 (Debian 3.1) applies more strict rules for macros definition
44800
44801 2005-08-16 11:51  srn
44802
44803         * src/SALOMEDS/SALOMEDS_StudyManager.cxx:
44804
44805         BugID: IPAL9763, modified  methods NewStudy and Open to create directly CORBA Studies.
44806
44807 2005-08-10 12:21  env
44808
44809         * src/Utils/Utils_ExceptHandlers.hxx:
44810
44811         ENV: Windows porting.
44812
44813 2005-08-04 11:41  env
44814
44815         * src/: HDFPersist/HDFdataset.cc, HDFPersist/HDFfile.cc,
44816           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
44817           Registry/SALOME_Registry_Server.cxx,
44818           SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
44819
44820         ENV: Windows porting
44821
44822 2005-08-03 09:34  env
44823
44824         * src/: Container/Container_init_python.hxx,
44825           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
44826           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
44827           SALOMEDS/SALOMEDS_Driver_i.hxx,
44828           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
44829           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
44830           SALOMEDS/SALOMEDS_SComponent.hxx,
44831           SALOMEDS/SALOMEDS_SComponent_i.hxx,
44832           SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
44833           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyManager.hxx,
44834           SALOMEDS/SALOMEDS_Study_i.hxx, TOOLSDS/SALOMEDS_Tool.hxx,
44835           NamingService/NamingService_WaitForServerReadiness.hxx:
44836
44837         ENV: Windows porting
44838
44839 2005-08-01 09:56  adam
44840
44841         * salome_adm/unix/config_files/check_qwt.m4:
44842
44843         if $QWTHOME"/include/qwt does not exists, define
44844         QWT_INCLUDES as $QWTHOME"/include".
44845
44846 2005-07-29 06:49  env
44847
44848         * src/: Container/Container_init_python.hxx,
44849           Container/SALOME_Container.cxx,
44850           LifeCycleCORBA/TestLifeCycleCORBA.cxx, SALOMEDSImpl/testDS.cxx,
44851           SALOMEDS/SALOMEDS_Server.cxx,
44852           SALOMEDS/SALOMEDS_StudyManager_i.hxx:
44853
44854         ENV: Windows porting
44855
44856 2005-07-29 06:45  env
44857
44858         * src/: SALOMETraceCollector/SALOMETraceCollector.cxx,
44859           SALOMETraceCollector/SALOMETraceCollector.hxx,
44860           NamingService/ServiceUnreachable.hxx,
44861           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
44862           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
44863           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
44864           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
44865           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
44866
44867         ENV: Windows porting
44868
44869 2005-07-29 06:35  env
44870
44871         * src/: Registry/RegistryService.cxx, Registry/RegistryService.hxx,
44872           Registry/SALOME_Registry_Server.cxx,
44873           SALOMELocalTrace/LocalTraceBufferPool.cxx:
44874
44875         ENV: Windows porting
44876
44877 2005-07-28 17:26  san
44878
44879         * bin/VERSION:
44880
44881         Preparation of v.3.0.1
44882
44883 2005-07-28 17:09  san
44884
44885         * src/: SALOMEDS/Makefile.in, SALOMEDSImpl/Makefile.in:
44886
44887         SALOME porting to OCCT 5.2.4
44888
44889 2005-07-28 14:23  mzn
44890
44891         * src/KERNEL_PY/batchmode_salome.py:
44892
44893         Fix for ( Bug IPAL9592  3.0.0 REGRESSION: error is raised after import "batchmode_salome.py" ).
44894
44895 2005-07-27 10:36  env
44896
44897         * src/SALOMEDS/: SALOMEDS_AttributeTableOfReal_i.cxx,
44898           SALOMEDS_AttributeTableOfString_i.cxx:
44899
44900         ENV: Fix of regression of IPAL9392 and IPAL9485 after windows porting.
44901
44902 2005-07-26 13:51  san
44903
44904         * Makefile.in:
44905
44906         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).
44907
44908 2005-07-26 11:51  env
44909
44910         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
44911
44912         ENV: Windows porting.
44913
44914 2005-07-26 11:32  env
44915
44916         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
44917
44918         ENV: Fix of regression after Windows porting.
44919
44920 2005-07-26 10:59  env
44921
44922         * src/SALOMEDS/: SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.cxx,
44923           SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx,
44924           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.cxx,
44925           SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager.cxx,
44926           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.hxx,
44927           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder_i.cxx,
44928           SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
44929           SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx,
44930           SALOMEDS_Study_i.cxx:
44931
44932         ENV: Windows porting.
44933
44934 2005-07-26 10:56  env
44935
44936         * src/SALOMEDS/: SALOMEDS_AttributeTextColor_i.cxx,
44937           SALOMEDS_AttributeTextHighlightColor_i.cxx,
44938           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
44939           SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator_i.cxx,
44940           SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Driver_i.cxx,
44941           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
44942           SALOMEDS_SAttribute_i.hxx, SALOMEDS_SComponent.cxx,
44943           SALOMEDS_SComponentIterator_i.cxx,
44944           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
44945           SALOMEDS_SComponent_i.hxx:
44946
44947         ENV: Windows porting.
44948
44949 2005-07-26 10:52  env
44950
44951         * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_AttributeComment_i.cxx,
44952           SALOMEDS_AttributeDrawable_i.cxx,
44953           SALOMEDS_AttributeExpandable_i.cxx,
44954           SALOMEDS_AttributeExternalFileDef_i.cxx,
44955           SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
44956           SALOMEDS_AttributeGraphic_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
44957           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
44958           SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
44959           SALOMEDS_AttributePersistentRef_i.cxx,
44960           SALOMEDS_AttributePixMap_i.cxx,
44961           SALOMEDS_AttributePythonObject.hxx,
44962           SALOMEDS_AttributePythonObject_i.cxx,
44963           SALOMEDS_AttributeSelectable_i.cxx,
44964           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
44965           SALOMEDS_AttributeSequenceOfReal_i.cxx,
44966           SALOMEDS_AttributeStudyProperties.cxx,
44967           SALOMEDS_AttributeStudyProperties.hxx,
44968           SALOMEDS_AttributeStudyProperties_i.cxx,
44969           SALOMEDS_AttributeTableOfInteger_i.cxx,
44970           SALOMEDS_AttributeTableOfReal_i.cxx,
44971           SALOMEDS_AttributeTableOfString_i.cxx,
44972           SALOMEDS_AttributeTarget_i.cxx:
44973
44974         ENV: Windows porting.
44975
44976 2005-07-26 08:15  env
44977
44978         * src/: SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
44979           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
44980           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
44981           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
44982           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
44983           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
44984           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
44985           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
44986           GenericObj/SALOME_GenericObj_i.hh,
44987           Communication/SALOMEMultiComm.cxx,
44988           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx:
44989
44990         ENV: Windows porting.
44991
44992 2005-07-25 13:43  srn
44993
44994         * src/Container/SALOME_Container.cxx:
44995
44996         BugID IPAL9541, changed the ORB creation. Added a call to Utils_ORB_INIT as there a GIOP message  size is initialized.
44997
44998 2005-07-22 14:05  mkr
44999
45000         * src/Communication/libSALOME_Comm.i:
45001
45002         From V2_2_4 with an extention of this file done by Anthony Geay.
45003
45004 2005-07-22 14:00  mkr
45005
45006         * idl/SALOME_Comm.idl:
45007
45008         Modifications from Anthony Geay from V2_2_0_maintainance branch.
45009
45010 2005-07-22 13:33  mkr
45011
45012         * src/: Makefile.in, Container/Component_i.cxx,
45013           Container/Container_i.cxx, Container/SALOME_Component_i.hxx,
45014           Container/SALOME_Container.cxx,
45015           Container/SALOME_ContainerManager.cxx,
45016           Container/SALOME_ContainerManager.hxx,
45017           Container/SALOME_ContainerManagerServer.cxx,
45018           Container/SALOME_Container_i.hxx, LifeCycleCORBA/Makefile.in,
45019           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45020           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45021           LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
45022           LifeCycleCORBA_SWIG/Makefile.in,
45023           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
45024           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
45025           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
45026           MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx,
45027           NamingService/SALOME_NamingService.cxx,
45028           NamingService/SALOME_NamingService.hxx,
45029           ResourcesManager/SALOME_ResourcesManager.cxx,
45030           ResourcesManager/SALOME_ResourcesManager.hxx,
45031           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
45032           TestMPIContainer/Makefile.in,
45033           TestMPIContainer/TestMPIContainer.cxx:
45034
45035         Merge with BR_V300_lcrm branch.
45036
45037 2005-07-22 13:26  mkr
45038
45039         * idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
45040           resources/CatalogResources.xml, resources/CatalogRessources.xml:
45041
45042         Merge with BR_V300_lcrm branch.
45043
45044 2005-07-22 13:18  mkr
45045
45046         * bin/createAppli.sh, doc/salome/Parallelisme_dans_Salome.pdf,
45047           doc/salome/Parallelisme_dans_Salome.ps,
45048           doc/salome/ResourcesManagerManual.pdf:
45049
45050         Merge with BR_V300_lcrm branch.
45051
45052 2005-07-22 13:14  mkr
45053
45054         * INSTALL, Makefile.in, configure.in.base, bin/runSalome,
45055           bin/runSalome.py:
45056
45057         Merge with BR_V300_lcrm branch.
45058
45059 2005-07-22 10:20  srn
45060
45061         * src/SALOMEDS/: SALOMEDS_AttributeTableOfReal_i.cxx,
45062           SALOMEDS_AttributeTableOfString_i.cxx:
45063
45064         BugID: IPAL9392, modified methods  GetRowUnits.
45065
45066 2005-07-20 13:42  secher
45067
45068         * idl/SALOME_MPIContainer.idl,
45069           src/Container/SALOME_Container_i.hxx,
45070           src/MPIContainer/MPIContainer_i.cxx,
45071           src/MPIContainer/MPIContainer_i.hxx,
45072           src/MPIContainer/Makefile.in,
45073           src/NamingService/SALOME_NamingService.cxx,
45074           src/ResourcesManager/SALOME_ResourcesManager.cxx:
45075
45076         last version after merge
45077
45078 2005-07-20 13:39  env
45079
45080         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
45081           SALOMEDSImpl_AttributeDrawable.cxx,
45082           SALOMEDSImpl_AttributeExpandable.cxx,
45083           SALOMEDSImpl_AttributeFlags.hxx,
45084           SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
45085           SALOMEDSImpl_AttributeInteger.cxx,
45086           SALOMEDSImpl_AttributeLocalID.cxx,
45087           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeOpened.cxx,
45088           SALOMEDSImpl_AttributePersistentRef.cxx,
45089           SALOMEDSImpl_AttributePixMap.cxx,
45090           SALOMEDSImpl_AttributePythonObject.cxx,
45091           SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
45092           SALOMEDSImpl_AttributeReference.cxx,
45093           SALOMEDSImpl_AttributeSelectable.cxx,
45094           SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
45095           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
45096           SALOMEDSImpl_AttributeStudyProperties.cxx,
45097           SALOMEDSImpl_AttributeTableOfInteger.cxx,
45098           SALOMEDSImpl_AttributeTableOfReal.cxx,
45099           SALOMEDSImpl_AttributeTableOfString.cxx,
45100           SALOMEDSImpl_AttributeTarget.cxx,
45101           SALOMEDSImpl_AttributeTextColor.cxx,
45102           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
45103           SALOMEDSImpl_AttributeTreeNode.cxx,
45104           SALOMEDSImpl_AttributeUserID.cxx, SALOMEDSImpl_ChildIterator.cxx,
45105           SALOMEDSImpl_GenericAttribute.cxx,
45106           SALOMEDSImpl_OCAFApplication.cxx, SALOMEDSImpl_SComponent.cxx,
45107           SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
45108           SALOMEDSImpl_SObject.cxx, SALOMEDSImpl_Study.cxx,
45109           SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
45110           SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.hxx,
45111           SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_Tool.cxx,
45112           SALOMEDSImpl_UseCaseBuilder.cxx,
45113           SALOMEDSImpl_UseCaseIterator.cxx:
45114
45115         ENV: Windows porting.
45116
45117 2005-07-20 13:36  env
45118
45119         * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
45120           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
45121           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.hxx,
45122           HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
45123           HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
45124           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.hxx,
45125           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45126           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45127           TOOLSDS/SALOMEDS_Tool.cxx:
45128
45129         ENV: Windows porting.
45130
45131 2005-07-20 08:27  san
45132
45133         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
45134
45135         Fix for bug PAL9523 : Crash at attempt to run XMLs from PAL8912.
45136
45137 2005-07-19 15:01  secher
45138
45139         * resources/CatalogResources.xml,
45140           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45141           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45142           src/ResourcesManager/SALOME_ResourcesManager.cxx:
45143
45144         version qui roule en sequentielle
45145
45146 2005-07-19 11:01  secher
45147
45148         * INSTALL, Makefile.in, doc/salome/Parallelisme_dans_Salome.pdf,
45149           doc/salome/Parallelisme_dans_Salome.ps,
45150           doc/salome/ResourcesManagerManual.pdf,
45151           idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
45152           idl/SALOME_Session.idl, resources/CatalogResources.xml,
45153           resources/CatalogRessources.xml, resources/Plugin,
45154           salome_adm/unix/config_files/check_med2.m4, src/Makefile.in,
45155           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
45156           src/Container/SALOME_Component_i.hxx,
45157           src/Container/SALOME_ContainerManager.cxx,
45158           src/Container/SALOME_ContainerManager.hxx,
45159           src/Container/SALOME_Container_i.hxx,
45160           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45161           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45162           src/MPIContainer/MPIContainer_i.cxx,
45163           src/MPIContainer/MPIContainer_i.hxx,
45164           src/MPIContainer/Makefile.in,
45165           src/MPIContainer/SALOME_MPIContainer.cxx,
45166           src/NamingService/SALOME_NamingService.cxx,
45167           src/NamingService/SALOME_NamingService.hxx,
45168           src/ResourcesManager/SALOME_ResourcesManager.cxx,
45169           src/ResourcesManager/SALOME_ResourcesManager.hxx,
45170           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
45171           src/TestMPIContainer/Makefile.in,
45172           src/TestMPIContainer/TestMPIContainer.cxx:
45173
45174         premier merge avec branche BR_V222_resman
45175
45176 2005-07-13 13:45  mkr
45177
45178         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
45179
45180         Fix for IPAL9408 : 3.0.0(current3106): CRASH after trying to "Close" saved document with executed dataflow.
45181
45182 2005-07-13 12:11  env
45183
45184         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
45185
45186         ENV: Windows porting. Removed reference to SALOME_container_i, which causes cyclic dependency on WNT platform.
45187
45188 2005-07-13 10:03  prascle
45189
45190         * Makefile.in, configure.in.base, bin/createAppli.sh,
45191           bin/runSalome, bin/runSalome.py,
45192           bin/appliskel/CatalogResources.xml, bin/appliskel/README,
45193           bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
45194           bin/appliskel/runAppli, bin/appliskel/runConsole,
45195           bin/appliskel/runParam, bin/appliskel/runRemote.sh,
45196           bin/appliskel/runSession, src/Makefile.in,
45197           src/Container/Container_i.cxx,
45198           src/Container/SALOME_Container.cxx,
45199           src/Container/SALOME_ContainerManager.cxx,
45200           src/Container/SALOME_ContainerManagerServer.cxx,
45201           src/LifeCycleCORBA/Makefile.in,
45202           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45203           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45204           src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
45205           src/LifeCycleCORBA_SWIG/Makefile.in,
45206           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
45207           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
45208           src/NamingService/SALOME_NamingService.cxx:
45209
45210         PR: modifications related to LifeCycle CORBA and SALOME Application concept
45211
45212 2005-07-13 09:09  env
45213
45214         * src/: SALOMELocalTrace/LocalTraceBufferPool.hxx,
45215           SALOMELocalTrace/LocalTraceCollector.cxx,
45216           SALOMELocalTrace/LocalTraceCollector.hxx,
45217           SALOMELocalTrace/utilities.h,
45218           SALOMETraceCollector/SALOMETraceCollector.cxx,
45219           SALOMETraceCollector/SALOMETraceCollector.hxx,
45220           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
45221           Utils/OpUtil.hxx, Utils/Utils_CommException.hxx,
45222           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils/Utils_Identity.cxx,
45223           Utils/Utils_Identity.hxx, Utils/Utils_Mutex.cxx,
45224           Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.hxx,
45225           Utils/Utils_SALOME_Exception.cxx,
45226           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SignalsHandler.h,
45227           Utils/duplicate.cxx:
45228
45229         ENV: Windows porting.
45230
45231 2005-07-13 09:05  env
45232
45233         * src/: NamingService/NamingService_WaitForServerReadiness.cxx,
45234           NamingService/SALOME_NamingService.cxx,
45235           NamingService/SALOME_NamingService.hxx,
45236           Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
45237           Registry/RegistryService.cxx,
45238           ResourcesManager/SALOME_LoadRateManager.hxx,
45239           ResourcesManager/SALOME_ResourcesManager.cxx,
45240           ResourcesManager/SALOME_ResourcesManager.hxx:
45241
45242         ENV: Windows porting.
45243
45244 2005-07-13 09:02  env
45245
45246         * src/: GenericObj/SALOME_GenericObj_i.cc,
45247           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
45248           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
45249           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
45250           Notification/NOTIFICATION.hxx,
45251           Notification/NOTIFICATION_Consumer.hxx,
45252           Notification/NOTIFICATION_Supplier.hxx:
45253
45254         ENV: Windows porting.
45255
45256 2005-07-13 08:54  env
45257
45258         * src/Container/: Component_i.cxx, Container_i.cxx,
45259           SALOME_Component_i.hxx, SALOME_ContainerManager.cxx,
45260           SALOME_ContainerManager.hxx, SALOME_Container_i.hxx:
45261
45262         ENV: Windows porting.
45263
45264 2005-07-12 07:18  vsr
45265
45266         * salome_adm/unix/make_commence.in:
45267
45268         Remove check_med() configuration procedure (moved to MED component)
45269
45270 2005-07-11 13:24  eap
45271
45272         * src/Makefile.in:
45273
45274         Move MEDWrapper to MED module
45275
45276 2005-07-11 12:16  eap
45277
45278         * salome_adm/unix/config_files/check_med2.m4:
45279
45280         Move MEDWrapper to MED module
45281
45282 2005-07-11 12:02  eap
45283
45284         * configure.in.base, salome_adm/unix/make_commence.in:
45285
45286         Move MEDWrapper to MED module
45287
45288 2005-07-08 11:10  prascle
45289
45290         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45291           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45292           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
45293
45294         PR: overloaded method possible with SWIG: unification of FindOrLoad_Component
45295
45296 2005-07-08 09:13  prascle
45297
45298         * INSTALL, Makefile.in, bin/VERSION, bin/killSalome.py,
45299           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
45300           bin/runNS.sh, bin/runSalome, bin/runSalome.py,
45301           idl/SALOME_Comm.idl, resources/KERNELCatalog.xml,
45302           resources/Plugin, resources/Plugin.in, salome_adm/Makefile.in,
45303           salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
45304           salome_adm/unix/make_conclude.in,
45305           salome_adm/unix/config_files/check_boost.m4,
45306           salome_adm/unix/config_files/check_cas.m4,
45307           salome_adm/unix/config_files/check_hdf5.m4,
45308           salome_adm/unix/config_files/check_lam.m4,
45309           salome_adm/unix/config_files/check_lsf.m4,
45310           salome_adm/unix/config_files/check_med2.m4,
45311           salome_adm/unix/config_files/check_mico.m4,
45312           salome_adm/unix/config_files/check_mpi.m4,
45313           salome_adm/unix/config_files/check_mpich.m4,
45314           salome_adm/unix/config_files/check_omniorb.m4,
45315           salome_adm/unix/config_files/check_opengl.m4,
45316           salome_adm/unix/config_files/check_openpbs.m4,
45317           salome_adm/unix/config_files/check_pyqt.m4,
45318           salome_adm/unix/config_files/check_qt.m4,
45319           salome_adm/unix/config_files/check_qwt.m4,
45320           salome_adm/unix/config_files/check_sip.m4,
45321           salome_adm/unix/config_files/check_swig.m4,
45322           salome_adm/unix/config_files/check_vtk.m4, src/Makefile.in,
45323           src/Communication/Makefile.in, src/Communication/Receiver.cxx,
45324           src/Communication/Receiver.hxx,
45325           src/Communication/ReceiverFactory.cxx,
45326           src/Communication/ReceiverFactory.hxx,
45327           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
45328           src/Communication/SALOME_Comm_i.cxx,
45329           src/Communication/SALOME_Comm_i.hxx,
45330           src/Communication/SenderFactory.cxx,
45331           src/Communication/SenderFactory.hxx,
45332           src/Communication/libSALOME_Comm.i,
45333           src/Container/Container_i.cxx,
45334           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
45335           src/LifeCycleCORBA_SWIG/Makefile.in,
45336           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
45337           src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
45338           src/ModuleGenerator/IDLparser.py,
45339           src/ResourcesManager/SALOME_ResourcesManager.cxx,
45340           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
45341           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
45342           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
45343           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
45344           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
45345           src/SALOMELocalTrace/utilities.h,
45346           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
45347           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
45348           src/Utils/Utils_SINGLETON.hxx:
45349
45350         PR: merge V2_2_4
45351
45352 2005-07-05 13:50  vsr
45353
45354         * INSTALL:
45355
45356         Update version number: 3.0.0
45357
45358 2005-06-30 09:11  srn
45359
45360         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
45361           SALOMEDSImpl_StudyBuilder.cxx:
45362
45363         BugID: 9377, fixed method IsModified, Saved in the Study and added _doc.Modify() to methods of StduyBuilder which modify the study
45364
45365 2005-06-29 15:57  asv
45366
45367         * src/ModuleGenerator/: IDLparser.py:
45368
45369         Fix for bug 8337 - "return" out-parameter must be the first one in outParameter-list.
45370
45371 2005-06-28 12:59  mpv
45372
45373         * src/KERNEL_PY/batchmode_salome.py:
45374
45375         MPV: for automatic test scenarios:
45376         import SALOME must be before import SALOMEDS
45377         (problems with SALOME.Session field otherwise)
45378
45379 2005-06-28 12:57  mpv
45380
45381         * bin/runSalome:
45382
45383         MPV: for automatic test scenarios:
45384         just return free port in case "-nothing" option
45385
45386 2005-06-28 12:55  mpv
45387
45388         * bin/killSalomeWithPort.py:
45389
45390         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)
45391
45392 2005-06-27 15:15  eap
45393
45394         * salome_adm/unix/depend.in:
45395
45396         Fix compilation of GHS3DPLUGIN on Mandrake: pb in using path with .. as regexp
45397
45398 2005-06-24 14:39  mpv
45399
45400         * src/Container/SALOME_Container.cxx:
45401
45402         MPV: fix for bug IPAL9221
45403         add script for addind processes to the kill list (addToKillList.py)
45404         this script is called by SALOME_Container to register new run-time launched process
45405
45406 2005-06-24 14:37  mpv
45407
45408         * bin/addToKillList.py, Makefile.in:
45409
45410         MPV: fix for bug IPAL9221
45411         add script for addind processes to the kill list
45412         this script is called by SALOME_Container to register new run-time launched process
45413
45414 2005-06-24 11:55  mpv
45415
45416         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
45417
45418         MPV: fix for bug IPAL9237
45419         Make non-zero undo-limit to perform OCAF operation correctly (operations never opened if undolimit=0 => problems with Locked flag)
45420
45421 2005-06-24 11:40  mpv
45422
45423         * Makefile.in:
45424
45425         MPV: fix for bug IPAL9312
45426         In the resources directory both files (CatalogResources.xml and CatalogRessources.xml) are needed.
45427         ResourceManager searches for CatalogResources.xml by default.
45428
45429 2005-06-23 15:14  eap
45430
45431         * bin/launchConfigureParser.py:
45432
45433         bug 9264. enable reading specific module parameters, eg mesh plugins
45434
45435 2005-06-23 13:48  asv
45436
45437         * bin/: launchConfigureParser.py, runSalome.py:
45438
45439         Displaying splash on application startup is added to GUI/Session package.  In start *.py scripts the following chages were made:
45440         1) added "SPLASH" parameter to SalomeApp.xml resource file and its handling in launchConfigureParser
45441         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.
45442         3) start of SessionServer is moved to the very beginning of startSalome (to display splash).
45443
45444 2005-06-23 13:05  jfa
45445
45446         * src/: Container/Container_i.cxx,
45447           SALOMEDS/SALOMEDS_AttributePixMap.cxx:
45448
45449         Suppress compilation warnings
45450
45451 2005-06-22 17:23  vsr
45452
45453         * src/KERNEL_PY/: kernel_shared_modules.py, salome_iapp.py:
45454
45455         Fix a bug with SWIG 1.3.24 - the swigged library should be loaded only once to the Python interpreter
45456
45457 2005-06-22 11:31  mkr
45458
45459         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
45460
45461         Don't write one log-file for all users in /tmp directory (fix for bug IPAL9117).
45462
45463 2005-06-20 13:05  srn
45464
45465         * src/Container/Container_i.cxx:
45466
45467         BugID IPAL9188: Moved an expression out of ASSERT macro in method createInstance
45468
45469 2005-06-20 06:44  vsr
45470
45471         * salome_adm/unix/config_files/check_sip.m4:
45472
45473         Add support for sip 4.2
45474
45475 2005-06-16 06:39  vsr
45476
45477         * salome_adm/unix/config_files/: check_vtk.m4, check_boost.m4,
45478           check_med2.m4, check_qwt.m4:
45479
45480         Applying patch from Erwan Adam (customization of check files)
45481
45482 2005-06-14 08:59  smh
45483
45484         * bin/runSalome.py, salome_adm/unix/config_files/check_hdf5.m4,
45485           salome_adm/unix/config_files/check_lam.m4,
45486           salome_adm/unix/config_files/check_lsf.m4,
45487           salome_adm/unix/config_files/check_med2.m4,
45488           salome_adm/unix/config_files/check_mico.m4,
45489           salome_adm/unix/config_files/check_mpi.m4,
45490           salome_adm/unix/config_files/check_mpich.m4,
45491           salome_adm/unix/config_files/check_omniorb.m4,
45492           salome_adm/unix/config_files/check_opengl.m4,
45493           salome_adm/unix/config_files/check_openpbs.m4,
45494           salome_adm/unix/config_files/check_pyqt.m4,
45495           salome_adm/unix/config_files/check_qt.m4,
45496           salome_adm/unix/config_files/check_qwt.m4,
45497           salome_adm/unix/config_files/check_sip.m4,
45498           salome_adm/unix/config_files/check_vtk.m4,
45499           src/ModuleCatalog/Makefile.in, src/SALOMEDS/Makefile.in,
45500           src/SALOMEDSImpl/Makefile.in, src/TestContainer/Makefile.in:
45501
45502         SMH: Fixes and patches from Paul.
45503
45504 2005-06-14 08:27  mpv
45505
45506         * salome_adm/unix/config_files/: check_hdf5.m4, check_lam.m4,
45507           check_lsf.m4, check_med2.m4, check_mico.m4, check_mpi.m4,
45508           check_mpich.m4, check_omniorb.m4, check_opengl.m4,
45509           check_openpbs.m4, check_pyqt.m4, check_qt.m4, check_qwt.m4,
45510           check_sip.m4, check_vtk.m4:
45511
45512         Patches from Paul for Debian
45513
45514 2005-06-10 08:48  smh
45515
45516         * src/TestContainer/Makefile.in:
45517
45518         Fix binflags
45519
45520 2005-06-10 08:26  smh
45521
45522         * salome_adm/unix/make_conclude.in:
45523
45524         Fix misprint
45525
45526 2005-06-10 07:50  smh
45527
45528         * salome_adm/unix/make_conclude.in:
45529
45530         SMH: Fix for flags
45531
45532 2005-06-10 07:49  prascle
45533
45534         * bin/appliskel/: runAppli, runConsole, runRemote.sh, runSession:
45535
45536         PR: on Debian Sarge, 'which' gives not allways the absolute path
45537
45538 2005-06-09 16:01  ageay
45539
45540         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
45541
45542         When ssh is used used of scp.
45543
45544 2005-06-08 16:13  prascle
45545
45546         * bin/appliskel/: README, runAppli, runConsole, runRemote.sh,
45547           runSession:
45548
45549         PR: environment must be sourced...
45550
45551 2005-06-08 15:56  mkr
45552
45553         * bin/createAppli.sh:
45554
45555         file createAppli.sh was added on branch BR_3_0_0_OCC on 2005-07-22 11:18:10 +0000
45556
45557 2005-06-08 15:56  prascle
45558
45559         * Makefile.in, configure.in.base, bin/createAppli.sh,
45560           bin/runSalome, bin/appliskel/CatalogResources.xml,
45561           bin/appliskel/README, bin/appliskel/envd, bin/appliskel/runAppli,
45562           bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
45563           bin/appliskel/runSession, bin/appliskel/salome.launch,
45564           src/Container/SALOME_ContainerManager.cxx,
45565           src/Container/SALOME_ContainerManagerServer.cxx,
45566           src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
45567           src/ResourcesManager/SALOME_ResourcesManager.cxx:
45568
45569         PR: distributed SALOME Application concept
45570
45571 2005-06-08 15:56  prascle
45572
45573         * bin/appliskel/CatalogResources.xml:
45574
45575         file CatalogResources.xml was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45576
45577 2005-06-08 15:56  prascle
45578
45579         * bin/appliskel/README:
45580
45581         file README was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45582
45583 2005-06-08 15:56  prascle
45584
45585         * bin/createAppli.sh:
45586
45587         file createAppli.sh was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45588
45589 2005-06-08 15:56  prascle
45590
45591         * bin/appliskel/envd:
45592
45593         file envd was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45594
45595 2005-06-08 15:56  prascle
45596
45597         * bin/appliskel/runAppli:
45598
45599         file runAppli was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45600
45601 2005-06-08 15:56  prascle
45602
45603         * bin/appliskel/runConsole:
45604
45605         file runConsole was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45606
45607 2005-06-08 15:56  prascle
45608
45609         * bin/appliskel/runRemote.sh:
45610
45611         file runRemote.sh was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45612
45613 2005-06-08 15:56  prascle
45614
45615         * bin/appliskel/runSession:
45616
45617         file runSession was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
45618
45619 2005-06-08 12:12  mpv
45620
45621         * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
45622           Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_SINGLETON.hxx:
45623
45624         Migration to Mandrake 10.1 (external patch)
45625
45626 2005-06-08 10:53  ageay
45627
45628         * src/Makefile.in:
45629
45630         Needed for dependancies.
45631
45632 2005-06-08 10:39  vsr
45633
45634         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
45635
45636         Change version number to 2.2.4
45637
45638 2005-06-08 10:33  mkr
45639
45640         * src/Communication/libSALOME_Comm.i:
45641
45642         file libSALOME_Comm.i was added on branch BR_3_0_0_OCC on 2005-07-22 12:05:49 +0000
45643
45644 2005-06-08 10:33  prascle
45645
45646         * src/Communication/libSALOME_Comm.i:
45647
45648         file libSALOME_Comm.i was added on branch BR_V220_LifeCycle on 2005-07-08 07:13:36 +0000
45649
45650 2005-06-08 10:33  ageay
45651
45652         * src/Communication/: Makefile.in, libSALOME_Comm.i:
45653
45654         Swigging of senderDouble.
45655
45656 2005-06-08 09:10  ageay
45657
45658         * idl/SALOME_Comm.idl:
45659
45660         Protect from double inclusion.
45661
45662 2005-06-08 08:49  mpv
45663
45664         * bin/: killSalome.py, killSalomeWithPort.py, runSalome.py:
45665
45666         Fixing of PAL9090 bug: save Serser's pids not to the "/tmp" directory, but to the ${HOME} directory.
45667
45668 2005-06-08 07:36  asv
45669
45670         * bin/launchConfigureParser.py:
45671
45672         user's resource file name is changed from $HOME/.SalomeApprc to $HOME/.SalomeApprc.<version>
45673
45674         Version is taken from $GUI_ROOT_DIR/bin/salome/VERSION file or $KERNEL_ROOT_DIR/bin/salome/VERSION file (in batch mode, no GUI).
45675
45676 2005-06-08 06:35  mpv
45677
45678         * src/SALOMELocalTrace/utilities.h:
45679
45680         Porting to Mandrake 10.1 and new products:
45681         porting to the gcc 3.4.1 ('endl' is in 'std' namespace)
45682
45683 2005-06-08 06:25  mpv
45684
45685         * salome_adm/unix/depend.in:
45686
45687         Porting to Mandrake 10.1 and new products:
45688         right 'sed' instructions to generate .depend file: '.' is "any symbol" of regexp => this symbol have to be screened, it means substituted by '.'
45689
45690 2005-06-08 06:24  mpv
45691
45692         * salome_adm/unix/: make_commence.in, make_conclude.in,
45693           config_files/check_cas.m4, config_files/check_pyqt.m4,
45694           config_files/check_qt.m4, config_files/check_qwt.m4,
45695           config_files/check_sip.m4:
45696
45697         Porting to Mandrake 10.1 and new products:
45698         new products checking rules
45699
45700 2005-06-08 06:23  mpv
45701
45702         * salome_adm/Makefile.in:
45703
45704         Porting to Mandrake 10.1 and new products:
45705         right Makefile: new rule clean
45706
45707 2005-06-08 06:21  mpv
45708
45709         * Makefile.in, resources/Plugin, resources/Plugin.in:
45710
45711         Porting to Mandrake 10.1 and new products:
45712         OCC 5.2.3 compatibility: different Plugin formats for OCAF in different versions
45713
45714 2005-06-08 06:19  mpv
45715
45716         * bin/: launchConfigureParser.py, runNS.sh, runSalome:
45717
45718         Porting to Mandrake 10.1 and new products:
45719         omniORB3 and omniORB4 configure scripts support
45720
45721 2005-06-07 16:07  adam
45722
45723         * salome_adm/unix/depend.in:
45724
45725         replace "  ./" by "  " at line begininig for
45726         the dependance computation 'cause when a line
45727         begin with
45728         "  ./toto.hxx" (it's now the case with gcc3.4)
45729         and $(top_builddir) is "..", the command
45730
45731         sed 's% $(top_builddir)/% $$(top_builddir)/%g'
45732         becomes
45733         sed 's% ../% $$(top_builddir)/%g'
45734
45735         and the "  ./" before toto.hxx is replaced by " ../"
45736         by mystery of sed.
45737
45738 2005-06-07 10:55  secher
45739
45740         * doc/salome/ResourcesManagerManual.pdf:
45741
45742         update
45743
45744 2005-06-07 10:26  adam
45745
45746         * salome_adm/unix/config_files/check_vtk.m4:
45747
45748         portability vtk 4.4
45749
45750 2005-06-07 09:18  adam
45751
45752         * salome_adm/unix/config_files/check_qwt.m4:
45753
45754         search in LD_LIBRARY_PATH before system
45755
45756 2005-06-06 14:13  asv
45757
45758         * src/ModuleGenerator/: IDLparser.py:
45759
45760         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.
45761         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.
45762
45763 2005-06-06 09:50  mkr
45764
45765         * doc/salome/ResourcesManagerManual.pdf:
45766
45767         file ResourcesManagerManual.pdf was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
45768
45769 2005-06-06 09:50  secher
45770
45771         * doc/salome/ResourcesManagerManual.pdf:
45772
45773         doc
45774
45775 2005-06-06 09:50  secher
45776
45777         * doc/salome/ResourcesManagerManual.pdf:
45778
45779         file ResourcesManagerManual.pdf was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
45780
45781 2005-06-03 13:26  smh
45782
45783         * src/TOOLSDS/SALOMEDS_Tool.hxx:
45784
45785         SMH: Remove dependency on implementation
45786
45787 2005-06-03 10:31  adam
45788
45789         * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
45790           Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_SINGLETON.hxx:
45791
45792         gcc 3.4 portability
45793
45794 2005-06-03 09:16  adam
45795
45796         * salome_adm/unix/config_files/check_qwt.m4:
45797
45798         improve the way to detect QWTHOME and QWT_INCLUDES
45799         add mandrake 10.2 support (qwt.h in /usr/lib/qt3/include/qwt)
45800
45801 2005-06-03 09:15  adam
45802
45803         * salome_adm/unix/config_files/check_qt.m4:
45804
45805         replace moc by MOC
45806         adding V3.3.4 support
45807
45808 2005-06-03 08:40  adam
45809
45810         * salome_adm/unix/config_files/check_sip.m4:
45811
45812         sip 4.2 version availibility
45813
45814 2005-06-03 08:30  adam
45815
45816         * salome_adm/unix/config_files/check_med2.m4:
45817
45818         If MED2HOME is not defined, search in mdump in PATH
45819
45820 2005-06-03 08:08  smh
45821
45822         * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
45823
45824         SMH: Remove implementation dependency
45825
45826 2005-06-02 15:44  adam
45827
45828         * salome_adm/unix/config_files/check_vtk.m4:
45829
45830         If VTKHOME is not defined, search in /usr
45831
45832 2005-06-02 15:15  adam
45833
45834         * salome_adm/unix/config_files/check_cas.m4:
45835
45836         If CASROOT is not defined, search in LD_LIBRARY_PATH
45837
45838 2005-06-02 15:12  adam
45839
45840         * salome_adm/unix/config_files/check_boost.m4:
45841
45842         If BOOSTDIR is not defined, search in system
45843
45844 2005-06-02 14:44  smh
45845
45846         * idl/SALOME_Comm.idl, src/Communication/Makefile.in,
45847           src/Communication/Receiver.hxx,
45848           src/Communication/ReceiverFactory.cxx,
45849           src/Communication/ReceiverFactory.hxx,
45850           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
45851           src/Communication/SALOME_Comm_i.cxx,
45852           src/Communication/SALOME_Comm_i.hxx,
45853           src/Communication/SenderFactory.cxx,
45854           src/Communication/SenderFactory.hxx:
45855
45856         SMH: Merge with V2_2_3 version (to be compatible with MED from maintainance branch) - prepare 3.0.0
45857
45858 2005-06-02 14:23  adam
45859
45860         * salome_adm/unix/config_files/: check_hdf5.m4:
45861
45862         If HDF5HOME is not defined, search h5dump in PATH
45863
45864 2005-06-02 13:55  secher
45865
45866         * src/Container/: SALOME_ContainerManager.cxx,
45867           SALOME_ContainerManager.hxx:
45868
45869         Container Manager knows only ResourcesManager and not LoadRate
45870
45871 2005-06-02 11:35  srn
45872
45873         * src/KERNEL_PY/kernel_shared_modules.py:
45874
45875         Added import of CosNaming
45876
45877 2005-06-02 09:33  secher
45878
45879         * resources/: CatalogResources.xml:
45880
45881         [no log message]
45882
45883 2005-06-02 09:14  prascle
45884
45885         * src/Container/Container_i.cxx:
45886
45887         PAL9042, Correction from Jean Rahuel
45888
45889 2005-06-01 10:46  mkr
45890
45891         * doc/salome/Parallelisme_dans_Salome.pdf:
45892
45893         file Parallelisme_dans_Salome.pdf was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
45894
45895 2005-06-01 10:46  mkr
45896
45897         * doc/salome/Parallelisme_dans_Salome.ps:
45898
45899         file Parallelisme_dans_Salome.ps was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
45900
45901 2005-06-01 10:46  secher
45902
45903         * doc/salome/Parallelisme_dans_Salome.pdf:
45904
45905         file Parallelisme_dans_Salome.pdf was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
45906
45907 2005-06-01 10:46  secher
45908
45909         * doc/salome/Parallelisme_dans_Salome.ps:
45910
45911         file Parallelisme_dans_Salome.ps was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
45912
45913 2005-06-01 10:46  secher
45914
45915         * doc/salome/: Parallelisme_dans_Salome.pdf,
45916           Parallelisme_dans_Salome.ps:
45917
45918         rajout de la doc sur les container MPI
45919
45920 2005-05-31 11:44  srn
45921
45922         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
45923
45924         BugID: PAL8727, fixed method _SaveAs. Added a pair unlock/lock around  a method Translate_IOR_to_persistentID
45925
45926 2005-05-30 14:12  mkr
45927
45928         * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
45929
45930         file LifeCycleCORBA.py was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:46 +0000
45931
45932 2005-05-30 14:12  mkr
45933
45934         * src/LifeCycleCORBA_SWIG/Makefile.in:
45935
45936         file Makefile.in was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
45937
45938 2005-05-30 14:12  mkr
45939
45940         * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
45941
45942         file TestLifeCycleCORBA.py was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
45943
45944 2005-05-30 14:12  mkr
45945
45946         * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
45947
45948         file libSALOME_LifeCycleCORBA.i was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
45949
45950 2005-05-30 14:12  prascle
45951
45952         * src/: LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
45953           LifeCycleCORBA_SWIG/Makefile.in,
45954           LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
45955           LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i, Makefile.in,
45956           LifeCycleCORBA/Makefile.in,
45957           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
45958           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
45959
45960         PR: Swig LifeCycleCORBA
45961
45962 2005-05-30 14:12  prascle
45963
45964         * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
45965
45966         file LifeCycleCORBA.py was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
45967
45968 2005-05-30 14:12  prascle
45969
45970         * src/LifeCycleCORBA_SWIG/Makefile.in:
45971
45972         file Makefile.in was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
45973
45974 2005-05-30 14:12  prascle
45975
45976         * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
45977
45978         file TestLifeCycleCORBA.py was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
45979
45980 2005-05-30 14:12  prascle
45981
45982         * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
45983
45984         file libSALOME_LifeCycleCORBA.i was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
45985
45986 2005-05-30 11:51  vsr
45987
45988         * resources/Plugin:
45989
45990         remove deprecated file
45991
45992 2005-05-30 11:50  vsr
45993
45994         * salome_adm/unix/make_commence.in:
45995
45996         - fix a bugs of 'check msg2qm' procedure
45997
45998 2005-05-30 11:49  vsr
45999
46000         * salome_adm/unix/make_conclude.in:
46001
46002         - fix a bugs of 'check msg2qm' procedure
46003         - fix a bug of processing SIP-wrapping libraries (for SIP-4.1)
46004
46005 2005-05-30 11:48  vsr
46006
46007         * salome_adm/unix/config_files/check_msg2qm.m4:
46008
46009         Fix a bugs of 'check msg2qm' procedure
46010
46011 2005-05-30 11:47  vsr
46012
46013         * salome_adm/unix/config_files/check_cas.m4:
46014
46015         Fix a bug of 'check CASCADE' procedure: do not generate config.h file if it already exists
46016
46017 2005-05-30 11:46  vsr
46018
46019         * Makefile.in:
46020
46021         Fix a bug of make procedure: copy Plugin file (generated from resources/Plugin.in) to share/salome/resources
46022
46023 2005-05-30 07:32  vsr
46024
46025         * salome_adm/Makefile.in:
46026
46027         Fix a bug of 'make clean' procedure
46028
46029 2005-05-27 15:06  asv
46030
46031         * idl/SALOME_Session.idl:
46032
46033         This file was removed from Makefile.in, so remove it from repository.
46034
46035 2005-05-27 14:38  prascle
46036
46037         * src/Container/: Container_i.cxx, SALOME_Container.cxx:
46038
46039         PR: cleaning
46040
46041 2005-05-27 13:13  secher
46042
46043         * resources/CatalogResources.xml, src/Container/Component_i.cxx,
46044           src/Container/SALOME_Component_i.hxx,
46045           src/Container/SALOME_Container_i.hxx,
46046           src/ResourcesManager/SALOME_ResourcesManager.cxx:
46047
46048         improvement for NP component
46049
46050 2005-05-27 12:37  prascle
46051
46052         * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
46053           SALOME_LifeCycleCORBA.hxx:
46054
46055         PR: documentation, find method, load method...
46056
46057 2005-05-27 07:29  smh
46058
46059         * src/Registry/Makefile.in:
46060
46061         SMH: Correction - new libarary
46062
46063 2005-05-26 15:54  smh
46064
46065         * src/Utils/: duplicate.cxx, Utils_SINGLETON.hxx,
46066           Utils_SignalsHandler.cxx, Utils_Timer.cxx, Utils_Timer.hxx:
46067
46068         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46069
46070 2005-05-26 15:51  smh
46071
46072         * src/Utils/: Utils_Identity.cxx, Utils_Identity.hxx,
46073           Utils_ORB_INIT.cxx, Utils_SALOME_Exception.cxx:
46074
46075         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46076
46077 2005-05-26 15:47  smh
46078
46079         * src/Utils/: Makefile.in, OpUtil.cxx, Utils_CorbaException.hxx,
46080           Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils_DESTRUCTEUR_GENERIQUE.hxx,
46081           Utils_ExceptHandlers.hxx:
46082
46083         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46084
46085 2005-05-26 15:43  smh
46086
46087         * src/TestContainer/: Makefile.in, SALOME_TestComponent_i.cxx,
46088           TestComponentPy.py, TestContainer.cxx:
46089
46090         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46091
46092 2005-05-26 15:37  smh
46093
46094         * src/: SALOMELocalTrace/utilities.h,
46095           SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
46096           TOOLSDS/Makefile.in, TOOLSDS/SALOMEDS_Tool.cxx,
46097           TOOLSDS/SALOMEDS_Tool.hxx:
46098
46099         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46100
46101 2005-05-26 15:30  smh
46102
46103         * src/: Registry/SALOME_Registry_Server.cxx,
46104           ResourcesManager/SALOME_ResourcesManager.cxx:
46105
46106         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46107
46108 2005-05-26 15:26  smh
46109
46110         * src/: NamingService/SALOME_NamingService.hxx,
46111           NamingService/SALOME_NamingService.i,
46112           NamingService/SALOME_NamingServicePy.py,
46113           Notification/NOTIFICATION.cxx:
46114
46115         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46116
46117 2005-05-26 15:23  smh
46118
46119         * src/: ModuleCatalog/Makefile.in,
46120           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
46121           NamingService/NamingService_WaitForServerReadiness.cxx,
46122           NamingService/SALOME_NamingService.cxx:
46123
46124         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46125
46126 2005-05-26 15:18  smh
46127
46128         * src/: LifeCycleCORBA/Launchers.cxx,
46129           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
46130           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
46131           LifeCycleCORBA/TestLifeCycleCORBA.cxx,
46132           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.py,
46133           Logger/SALOME_Trace.cxx:
46134
46135         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46136
46137 2005-05-26 15:15  smh
46138
46139         * src/Container/: SALOME_Container.cxx,
46140           SALOME_ContainerManager.cxx, SALOME_Container_i.hxx:
46141
46142         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46143
46144 2005-05-26 15:12  smh
46145
46146         * src/Container/: Component_i.cxx, Container_i.cxx, Makefile.in,
46147           SALOME_ComponentPy.py, SALOME_Component_i.hxx:
46148
46149         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46150
46151 2005-05-26 15:07  smh
46152
46153         * salome_adm/unix/config_files/check_pyqt.m4,
46154           salome_adm/unix/config_files/check_qt.m4,
46155           salome_adm/unix/config_files/check_qwt.m4,
46156           salome_adm/unix/config_files/check_sip.m4,
46157           salome_adm/unix/config_files/check_vtk.m4, src/Makefile.in:
46158
46159         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46160
46161 2005-05-26 15:04  smh
46162
46163         * salome_adm/unix/: make_conclude.in,
46164           config_files/ac_cxx_depend_flag.m4, config_files/check_boost.m4,
46165           config_files/check_cas.m4, config_files/check_lsf.m4,
46166           config_files/check_med2.m4, config_files/check_openpbs.m4:
46167
46168         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46169
46170 2005-05-26 15:01  smh
46171
46172         * idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
46173           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
46174           resources/KERNELCatalog.xml, salome_adm/unix/SALOMEconfig.h.in,
46175           salome_adm/unix/make_commence.in:
46176
46177         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46178
46179 2005-05-26 14:53  smh
46180
46181         * INSTALL, Makefile.in, configure.in.base, bin/VERSION,
46182           bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
46183           bin/orbmodule.py, bin/runNS.sh, bin/runSalome, bin/runSalome.py,
46184           bin/salome.launch, bin/salomeConsole.py:
46185
46186         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46187
46188 2005-05-26 14:42  smh
46189
46190         * src/Utils/: Utils_Mutex.cxx, Utils_Mutex.hxx:
46191
46192         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46193
46194 2005-05-26 14:39  smh
46195
46196         * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS.hxx,
46197           SALOMEDS_AttributeComment.cxx, SALOMEDS_AttributeComment.hxx,
46198           SALOMEDS_AttributeDrawable.cxx, SALOMEDS_AttributeDrawable.hxx,
46199           SALOMEDS_AttributeExpandable.cxx,
46200           SALOMEDS_AttributeExpandable.hxx,
46201           SALOMEDS_AttributeExternalFileDef.cxx,
46202           SALOMEDS_AttributeExternalFileDef.hxx,
46203           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
46204           SALOMEDS_AttributeFlags.cxx, SALOMEDS_AttributeFlags.hxx,
46205           SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeGraphic.hxx,
46206           SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR.hxx,
46207           SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeInteger.hxx,
46208           SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeLocalID.hxx,
46209           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName.hxx,
46210           SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened.hxx,
46211           SALOMEDS_AttributePersistentRef.cxx,
46212           SALOMEDS_AttributePersistentRef.hxx,
46213           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
46214           SALOMEDS_AttributePythonObject.cxx,
46215           SALOMEDS_AttributePythonObject.hxx, SALOMEDS_AttributeReal.cxx,
46216           SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeSelectable.cxx,
46217           SALOMEDS_AttributeSelectable.hxx,
46218           SALOMEDS_AttributeSequenceOfInteger.cxx,
46219           SALOMEDS_AttributeSequenceOfInteger.hxx,
46220           SALOMEDS_AttributeSequenceOfReal.cxx,
46221           SALOMEDS_AttributeSequenceOfReal.hxx,
46222           SALOMEDS_AttributeStudyProperties.cxx,
46223           SALOMEDS_AttributeStudyProperties.hxx,
46224           SALOMEDS_AttributeTableOfInteger.cxx,
46225           SALOMEDS_AttributeTableOfInteger.hxx,
46226           SALOMEDS_AttributeTableOfReal.cxx,
46227           SALOMEDS_AttributeTableOfReal.hxx,
46228           SALOMEDS_AttributeTableOfString.cxx,
46229           SALOMEDS_AttributeTableOfString.hxx,
46230           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
46231           SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
46232           SALOMEDS_AttributeTextHighlightColor.cxx,
46233           SALOMEDS_AttributeTextHighlightColor.hxx,
46234           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
46235           SALOMEDS_AttributeUserID.cxx, SALOMEDS_AttributeUserID.hxx,
46236           SALOMEDS_Attributes.hxx, SALOMEDS_ChildIterator.cxx,
46237           SALOMEDS_ChildIterator.hxx, SALOMEDS_ClientAttributes.hxx,
46238           SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
46239           SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute.hxx,
46240           SALOMEDS_SComponent.cxx, SALOMEDS_SComponent.hxx,
46241           SALOMEDS_SComponentIterator.cxx, SALOMEDS_SComponentIterator.hxx,
46242           SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
46243           SALOMEDS_Study.hxx, SALOMEDS_StudyBuilder.cxx,
46244           SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyManager.cxx,
46245           SALOMEDS_StudyManager.hxx, SALOMEDS_UseCaseBuilder.cxx,
46246           SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseIterator.cxx,
46247           SALOMEDS_UseCaseIterator.hxx, Makefile.in,
46248           SALOMEDS_AttributeComment_i.cxx, SALOMEDS_AttributeComment_i.hxx,
46249           SALOMEDS_AttributeDrawable_i.cxx,
46250           SALOMEDS_AttributeDrawable_i.hxx,
46251           SALOMEDS_AttributeExpandable_i.cxx,
46252           SALOMEDS_AttributeExpandable_i.hxx,
46253           SALOMEDS_AttributeExternalFileDef_i.cxx,
46254           SALOMEDS_AttributeExternalFileDef_i.hxx,
46255           SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
46256           SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic_i.cxx,
46257           SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR_i.hxx,
46258           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeInteger_i.hxx,
46259           SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeName_i.cxx,
46260           SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
46261           SALOMEDS_AttributeOpened_i.hxx,
46262           SALOMEDS_AttributePersistentRef_i.cxx,
46263           SALOMEDS_AttributePersistentRef_i.hxx,
46264           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
46265           SALOMEDS_AttributePythonObject_i.cxx,
46266           SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
46267           SALOMEDS_AttributeSelectable_i.hxx,
46268           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
46269           SALOMEDS_AttributeSequenceOfReal_i.cxx,
46270           SALOMEDS_AttributeStudyProperties_i.cxx,
46271           SALOMEDS_AttributeTableOfInteger_i.cxx,
46272           SALOMEDS_AttributeTableOfInteger_i.hxx,
46273           SALOMEDS_AttributeTableOfReal_i.cxx,
46274           SALOMEDS_AttributeTableOfReal_i.hxx,
46275           SALOMEDS_AttributeTableOfString_i.hxx,
46276           SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
46277           SALOMEDS_AttributeTextColor_i.cxx,
46278           SALOMEDS_AttributeTextColor_i.hxx,
46279           SALOMEDS_AttributeTextHighlightColor_i.cxx,
46280           SALOMEDS_AttributeTreeNode_i.cxx,
46281           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.hxx,
46282           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Client.cxx,
46283           SALOMEDS_GenericAttribute_i.cxx,
46284           SALOMEDS_SComponentIterator_i.cxx,
46285           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.hxx,
46286           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
46287           SALOMEDS_Server.cxx, SALOMEDS_StudyBuilder_i.cxx,
46288           SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.cxx,
46289           SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
46290           SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
46291           SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_AttributeFileType_i.hxx,
46292           SALOMEDS_AttributeIOR_i.cxx, SALOMEDS_AttributeLocalID_i.hxx,
46293           SALOMEDS_AttributePythonObject_i.hxx,
46294           SALOMEDS_AttributeReal_i.hxx,
46295           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
46296           SALOMEDS_AttributeSequenceOfReal_i.hxx,
46297           SALOMEDS_AttributeStudyProperties_i.hxx,
46298           SALOMEDS_AttributeTableOfString_i.cxx,
46299           SALOMEDS_AttributeTextHighlightColor_i.hxx,
46300           SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_ChildIterator_i.hxx,
46301           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SComponent_i.cxx,
46302           SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx:
46303
46304         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46305
46306 2005-05-26 14:28  smh
46307
46308         * src/: SALOMEDSImpl/Makefile.in,
46309           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
46310           SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
46311           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
46312           SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
46313           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
46314           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
46315           SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
46316           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
46317           SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
46318           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
46319           SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
46320           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
46321           SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
46322           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
46323           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
46324           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
46325           SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
46326           SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
46327           SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
46328           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
46329           SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
46330           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
46331           SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
46332           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
46333           SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
46334           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
46335           SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
46336           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
46337           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
46338           SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
46339           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
46340           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
46341           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
46342           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
46343           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
46344           SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
46345           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
46346           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
46347           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
46348           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
46349           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
46350           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
46351           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
46352           SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
46353           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
46354           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
46355           SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
46356           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
46357           SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
46358           SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
46359           SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
46360           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
46361           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
46362           SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
46363           SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
46364           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
46365           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
46366           SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
46367           SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
46368           SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
46369           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
46370           SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
46371           SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
46372           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
46373           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
46374           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
46375           SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
46376           SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
46377           SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
46378           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
46379           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
46380           SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
46381           SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
46382           SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
46383           SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
46384           SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
46385           SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
46386           SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
46387           SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
46388           SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
46389           SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
46390           SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
46391           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
46392           SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
46393           SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
46394           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
46395           SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
46396           SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
46397           SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
46398           SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
46399           SALOMEDSImpl/testDS.cxx, Container/Container_init_python.cxx,
46400           Container/Container_init_python.hxx,
46401           Container/SALOME_Container.py,
46402           Container/SALOME_ContainerManagerServer.cxx:
46403
46404         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46405
46406 2005-05-26 14:23  smh
46407
46408         * src/: KERNEL_PY/Help.py, KERNEL_PY/Makefile.in,
46409           KERNEL_PY/PyInterp.py, KERNEL_PY/batchmode_salome.py,
46410           KERNEL_PY/import_hook.py, KERNEL_PY/kernel_shared_modules.py,
46411           KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
46412           KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
46413           KERNEL_PY/salome.py, KERNEL_PY/salome_study.py,
46414           KERNEL_PY/salome_test.py, SALOMEDSClient/Makefile.in,
46415           SALOMEDSClient/SALOMEDSClient.hxx,
46416           SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
46417           SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
46418           SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
46419           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
46420           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
46421           SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
46422           SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
46423           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
46424           SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
46425           SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
46426           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
46427           SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
46428           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
46429           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
46430           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
46431           SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
46432           SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
46433           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
46434           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
46435           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
46436           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
46437           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
46438           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
46439           SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
46440           SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
46441           SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
46442           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
46443           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
46444           SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
46445           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
46446           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
46447           SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
46448           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
46449           SALOMEDSClient/SALOMEDSClient_Study.hxx,
46450           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
46451           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
46452           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
46453           SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
46454           SALOMEDSClient/SALOMEDSClient_definitions.hxx:
46455
46456         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46457
46458 2005-05-26 14:20  prascle
46459
46460         * resources/Plugin.in:
46461
46462         file Plugin.in was added on branch BR_V220_LifeCycle on 2005-07-08 07:13:35 +0000
46463
46464 2005-05-26 14:20  mpv
46465
46466         * resources/Plugin.in:
46467
46468         file Plugin.in was added on branch V2_2_0_maintainance on 2005-06-08 04:22:12 +0000
46469
46470 2005-05-26 14:20  smh
46471
46472         * resources/Plugin.in,
46473           salome_adm/unix/config_files/check_msg2qm.m4:
46474
46475         SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
46476
46477 2005-05-26 13:22  srn
46478
46479         * src/SALOMEDS/: SALOMEDS_AttributeExternalFileDef_i.cxx,
46480           SALOMEDS_AttributeExternalFileDef_i.hxx,
46481           SALOMEDS_AttributeFileType_i.cxx,
46482           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_StudyManager_i.cxx:
46483
46484         BugID: PAL8917: Added a support for store/restore operations on ExternalFileDef and FileType attributes.
46485
46486 2005-05-26 12:37  ageay
46487
46488         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
46489
46490         Correction of a bug :
46491         When a component does not exist in a machine, list of machine was not updated correctly.
46492
46493 2005-05-25 11:01  secher
46494
46495         * idl/SALOME_MPIContainer.idl, src/Container/Container_i.cxx,
46496           src/Container/SALOME_ContainerManager.cxx,
46497           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
46498           src/MPIContainer/MPIContainer_i.cxx,
46499           src/MPIContainer/MPIContainer_i.hxx,
46500           src/NamingService/SALOME_NamingService.cxx,
46501           src/NamingService/SALOME_NamingService.hxx:
46502
46503         destroy container name in naming service on shutdown
46504
46505 2005-05-24 13:59  secher
46506
46507         * Makefile.in, idl/SALOME_ContainerManager.idl,
46508           idl/SALOME_MPIContainer.idl, resources/CatalogResources.xml,
46509           resources/CatalogRessources.xml, src/Makefile.in,
46510           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
46511           src/Container/SALOME_Component_i.hxx,
46512           src/Container/SALOME_ContainerManager.cxx,
46513           src/Container/SALOME_ContainerManager.hxx,
46514           src/Container/SALOME_Container_i.hxx,
46515           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
46516           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
46517           src/MPIContainer/MPIContainer_i.cxx,
46518           src/MPIContainer/MPIContainer_i.hxx,
46519           src/MPIContainer/SALOME_MPIContainer.cxx,
46520           src/NamingService/SALOME_NamingService.cxx,
46521           src/NamingService/SALOME_NamingService.hxx,
46522           src/ResourcesManager/SALOME_ResourcesManager.cxx,
46523           src/ResourcesManager/SALOME_ResourcesManager.hxx,
46524           src/TestMPIContainer/Makefile.in,
46525           src/TestMPIContainer/TestMPIContainer.cxx:
46526
46527         manage MPI containers in resources manager
46528
46529 2005-05-20 16:31  prascle
46530
46531         * src/Container/: Component_i.cxx, Container_i.cxx,
46532           Container_init_python.cxx, Container_init_python.hxx,
46533           SALOME_Container.cxx, SALOME_Container_i.hxx:
46534
46535         PR: compatibility with Supervision, use new Python thread states for safety
46536
46537 2005-05-18 17:16  prascle
46538
46539         * src/Container/: Container_i.cxx, SALOME_Container.cxx,
46540           SALOME_Container.py:
46541
46542         PR: embedded container C++ & Python, debug
46543
46544 2005-05-18 11:48  prascle
46545
46546         * bin/runSalome.py, src/Container/Container_i.cxx,
46547           src/Container/Container_init_python.cxx,
46548           src/Container/Container_init_python.hxx,
46549           src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
46550           src/LifeCycleCORBA/Launchers.cxx,
46551           src/TestContainer/TestContainer.cxx:
46552
46553         PR: embedded container C++ & Python
46554
46555 2005-05-18 11:48  smh
46556
46557         * src/Container/Container_init_python.cxx:
46558
46559         file Container_init_python.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
46560
46561 2005-05-18 11:48  smh
46562
46563         * src/Container/Container_init_python.hxx:
46564
46565         file Container_init_python.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
46566
46567 2005-05-13 16:17  prascle
46568
46569         * src/Container/Container_i.cxx:
46570
46571         PR: C++ container used as a Python container
46572
46573 2005-05-13 13:31  prascle
46574
46575         * src/: Container/Container_i.cxx, Container/SALOME_Container.py,
46576           TestContainer/TestContainer.cxx:
46577
46578         PR: C++ container used as a Python container
46579
46580 2005-05-13 10:32  smh
46581
46582         * src/Container/SALOME_Container.py:
46583
46584         file SALOME_Container.py was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
46585
46586 2005-05-13 10:32  prascle
46587
46588         * src/Container/: Container_i.cxx, Makefile.in,
46589           SALOME_Container.cxx, SALOME_Container.py:
46590
46591         PR: C++ container used as a Python container
46592
46593 2005-05-12 13:17  prascle
46594
46595         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
46596           TestContainer/TestContainer.cxx:
46597
46598         PR: remove argument library name (always libCOMPONENTEngine.so)
46599
46600 2005-05-12 13:13  prascle
46601
46602         * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
46603
46604         PR: remove argument library name (always libCOMPONENTEngine.so)
46605
46606 2005-05-12 13:12  prascle
46607
46608         * idl/SALOME_Component.idl:
46609
46610         PR: remove argument library name (always libCOMPONENTEngine.so), + comments
46611
46612 2005-05-12 11:17  srn
46613
46614         * src/SALOMEDS/: SALOMEDS_StudyManager.cxx,
46615           SALOMEDS_StudyManager.hxx:
46616
46617         Added empty constructor
46618
46619 2005-05-12 10:23  srn
46620
46621         * src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
46622
46623         Added support of BOOST's shared_ptr
46624
46625 2005-05-12 07:58  srn
46626
46627         * src/TOOLSDS/: Makefile.in, SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
46628
46629         Added support of BOOST's shared_ptr
46630
46631 2005-05-12 07:23  srn
46632
46633         * src/: SALOMEDSClient/SALOMEDSClient.hxx,
46634           SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
46635           SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
46636           SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
46637           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
46638           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
46639           SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
46640           SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
46641           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
46642           SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
46643           SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
46644           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
46645           SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
46646           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
46647           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
46648           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
46649           SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
46650           SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
46651           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
46652           SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
46653           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
46654           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
46655           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
46656           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
46657           SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
46658           SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
46659           SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
46660           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
46661           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
46662           SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
46663           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
46664           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
46665           SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
46666           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
46667           SALOMEDSClient/SALOMEDSClient_Study.hxx,
46668           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
46669           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
46670           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
46671           SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
46672           SALOMEDSClient/SALOMEDSClient_definitions.hxx,
46673           SALOMEDS/Makefile.in, SALOMEDS/SALOMEDS_AttributeTarget.cxx,
46674           SALOMEDS/SALOMEDS_AttributeTarget.hxx,
46675           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
46676           SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
46677           SALOMEDS/SALOMEDS_ChildIterator.cxx,
46678           SALOMEDS/SALOMEDS_ChildIterator.hxx,
46679           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
46680           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
46681           SALOMEDS/SALOMEDS_SComponentIterator.cxx,
46682           SALOMEDS/SALOMEDS_SComponentIterator.hxx,
46683           SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
46684           SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
46685           SALOMEDS/SALOMEDS_StudyBuilder.cxx,
46686           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
46687           SALOMEDS/SALOMEDS_StudyManager.cxx,
46688           SALOMEDS/SALOMEDS_StudyManager.hxx,
46689           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
46690           SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
46691           SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
46692           SALOMEDS/SALOMEDS_UseCaseIterator.hxx:
46693
46694         Added support of BOOST's shared_ptr
46695
46696 2005-05-06 08:39  eap
46697
46698         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
46699
46700         Bug IPAL8742 (Add comments into generated files of DumpPython). Add static GetDumpStudyComment()
46701         Bug IPAL8749. Return false if any of scripts is invalid
46702
46703 2005-05-06 08:36  eap
46704
46705         * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
46706
46707         Bug IPAL8742 (Add comments into generated files of DumpPython). Add static GetDumpStudyComment()
46708
46709 2005-05-06 07:51  srn
46710
46711         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
46712
46713         Removed unnecessary cout's from method DumpPython
46714
46715 2005-05-05 13:51  srn
46716
46717         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
46718
46719         BugID IPAL8745, IPAL8744. Modified method DumpStudy, now if the components are not loaded
46720         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.
46721
46722 2005-04-29 13:24  asv
46723
46724         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
46725
46726         Fix for bug PAL8727.
46727         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().
46728         The fix consists in calling to unlock() BEFORE calling Engine::Save() and lock() again - after the call.
46729
46730 2005-04-29 13:17  asv
46731
46732         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
46733
46734         Fix for bug PAL8727.
46735         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().
46736         The fix consists in calling to unlock() BEFORE calling Engine::Save() and lock() again - after the call.
46737
46738 2005-04-25 11:14  vsr
46739
46740         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
46741
46742         Increment version number (2.2.3)
46743
46744 2005-04-20 14:27  prascle
46745
46746         * src/Container/Component_i.cxx:
46747
46748         PR: Documentation
46749
46750 2005-04-20 13:50  prascle
46751
46752         * idl/SALOME_Component.idl:
46753
46754         PR: doc
46755
46756 2005-04-20 07:28  mpv
46757
46758         * src/TOOLSDS/Makefile.in:
46759
46760         MPV:
46761         GenericObj is necessary for SALOMEDS
46762
46763 2005-04-20 06:32  mpv
46764
46765         * src/SALOMEDS/Makefile.in,
46766           src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
46767           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
46768           src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
46769           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
46770           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
46771           src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
46772           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
46773           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
46774           src/SALOMEDS/SALOMEDS_SObject.cxx,
46775           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
46776           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
46777           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
46778           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
46779           src/SALOMEDS/SALOMEDS_Study_i.cxx,
46780           src/SALOMEDS/SALOMEDS_Study_i.hxx,
46781           src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
46782           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
46783           src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
46784           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx, idl/SALOMEDS.idl:
46785
46786         MPV:
46787         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)
46788
46789 2005-04-19 16:38  prascle
46790
46791         * src/Container/: Container_i.cxx, SALOME_Container.cxx:
46792
46793         PR: find method...
46794
46795 2005-04-18 15:58  prascle
46796
46797         * src/Container/: Component_i.cxx, Container_i.cxx,
46798           SALOME_Container_i.hxx:
46799
46800         PR: container lifecycle, new design, try to dlclose, still not safe...
46801
46802 2005-04-18 13:11  adam
46803
46804         * salome_adm/unix/config_files/check_swig.m4:
46805
46806         E.A. : OOPS, removing the "exit"
46807
46808 2005-04-18 13:09  adam
46809
46810         * salome_adm/unix/config_files/check_swig.m4:
46811
46812         E.A. : Add a SWIG_VERSION variable
46813
46814 2005-04-18 08:02  prascle
46815
46816         * idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
46817           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
46818           src/Container/SALOME_Component_i.hxx,
46819           src/Container/SALOME_Container_i.hxx,
46820           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
46821           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
46822           src/NamingService/NamingService_WaitForServerReadiness.cxx,
46823           src/NamingService/SALOME_NamingService.cxx,
46824           src/NamingService/SALOME_NamingService.hxx,
46825           src/TestContainer/SALOME_TestComponent_i.cxx,
46826           src/TestContainer/TestContainer.cxx:
46827
46828         PR: container lifecycle, new design, first part
46829
46830 2005-04-14 10:44  ageay
46831
46832         * idl/SALOME_Comm.idl:
46833
46834         Sender replaced by SenderDouble, SenderInt.
46835
46836 2005-04-14 08:54  srn
46837
46838         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
46839
46840         Fixed bug in the method Copy, now a clipboard document is re-created every time.
46841
46842 2005-04-14 08:08  srn
46843
46844         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
46845
46846         Modified method dump
46847
46848 2005-04-14 07:51  srn
46849
46850         * src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
46851
46852         In method GetAllAttributes added a check to avoid returning of AttributeReference
46853
46854 2005-04-13 14:54  ageay
46855
46856         * src/Communication/Receiver.cxx:
46857
46858         Improvement PAL8343.
46859         Receiver is henceforth a template class.
46860
46861 2005-04-13 14:53  ageay
46862
46863         * src/Communication/: Makefile.in, Receiver.hxx,
46864           ReceiverFactory.cxx, ReceiverFactory.hxx, Receivers.cxx,
46865           Receivers.hxx, SALOME_Comm_i.cxx, SALOME_Comm_i.hxx,
46866           SenderFactory.cxx, SenderFactory.hxx:
46867
46868         Improvement PAL8343.
46869         Sender reaplaced by SenderInt and SenderDouble for more explicit API.
46870
46871         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).
46872
46873 2005-04-13 14:07  srn
46874
46875         * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
46876           SALOMEDS_SComponent.cxx, SALOMEDS_SObject.cxx,
46877           SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
46878           SALOMEDS_StudyManager.cxx:
46879
46880         Removed unnecessary CORBA::release statements. Added _retn() to CORBA objects returned from GetStudy. GetSObject and GetSComponent methods.
46881
46882 2005-04-12 10:38  srn
46883
46884         * src/SALOMEDS/: SALOMEDS_SComponent.cxx, SALOMEDS_SComponent.hxx,
46885           SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
46886           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx:
46887
46888         Added methods to get a CORBA wrappers of the SALOMEDSClient objects
46889
46890 2005-04-11 12:55  srn
46891
46892         * src/SALOMEDS/SALOMEDS_Study_i.cxx:
46893
46894         Modified methdo GetObjectPath, to take into account an input argument of type SObject
46895
46896 2005-04-11 11:30  srn
46897
46898         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
46899
46900         Removed unnecessary CORBA::release calls.
46901
46902 2005-04-08 10:58  srn
46903
46904         * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_Study.hxx:
46905
46906         Added method GetStudy, which return a CORBA SALOMEDS::Study
46907
46908 2005-04-08 09:15  srn
46909
46910         * src/SALOMEDS/SALOMEDS_ChildIterator.cxx:
46911
46912         Removed CORBA::release from destructors to avoid releasing already deleted objects
46913
46914 2005-04-08 08:10  srn
46915
46916         * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
46917           SALOMEDS_SComponentIterator.cxx, SALOMEDS_SObject.cxx,
46918           SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
46919           SALOMEDS_StudyManager.cxx, SALOMEDS_UseCaseBuilder.cxx,
46920           SALOMEDS_UseCaseIterator.cxx:
46921
46922         Removed CORBA::release from destructors to avoid releasing already deleted objects
46923
46924 2005-04-07 15:36  vsr
46925
46926         * src/Makefile.in:
46927
46928         Fix a bug of compilation: TOOLSDS package depends on SALOMEDSImpl
46929
46930 2005-04-07 14:29  srn
46931
46932         * src/SALOMEDSClient/: SALOMEDSClient_ChildIterator.hxx,
46933           SALOMEDSClient_GenericAttribute.hxx,
46934           SALOMEDSClient_SComponent.hxx,
46935           SALOMEDSClient_SComponentIterator.hxx,
46936           SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
46937           SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
46938           SALOMEDSClient_UseCaseBuilder.hxx,
46939           SALOMEDSClient_UseCaseIterator.hxx:
46940
46941         Added virtual destructors
46942
46943 2005-04-07 13:49  mpv
46944
46945         * src/Utils/OpUtil.cxx:
46946
46947         mpv: memory leak fix: gethostname method returns 0 if OK
46948
46949 2005-04-07 13:31  srn
46950
46951         * src/: SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
46952           SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
46953           SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
46954           SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
46955           SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
46956           SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
46957           SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
46958           SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
46959           SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
46960           SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
46961           SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
46962           SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
46963           SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
46964           SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
46965           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
46966           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
46967           SALOMEDSClient/SALOMEDSClient_SObject.hxx,
46968           SALOMEDSClient/SALOMEDSClient_Study.hxx,
46969           SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
46970           SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
46971           SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
46972           SALOMEDS/SALOMEDS_AttributeComment.cxx,
46973           SALOMEDS/SALOMEDS_AttributeComment.hxx,
46974           SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
46975           SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
46976           SALOMEDS/SALOMEDS_AttributeFileType.cxx,
46977           SALOMEDS/SALOMEDS_AttributeFileType.hxx,
46978           SALOMEDS/SALOMEDS_AttributeIOR.cxx,
46979           SALOMEDS/SALOMEDS_AttributeIOR.hxx,
46980           SALOMEDS/SALOMEDS_AttributeName.cxx,
46981           SALOMEDS/SALOMEDS_AttributeName.hxx,
46982           SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
46983           SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
46984           SALOMEDS/SALOMEDS_AttributePixMap.cxx,
46985           SALOMEDS/SALOMEDS_AttributePixMap.hxx,
46986           SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
46987           SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
46988           SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
46989           SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
46990           SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
46991           SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
46992           SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
46993           SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
46994           SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
46995           SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
46996           SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
46997           SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
46998           SALOMEDS/SALOMEDS_AttributeUserID.cxx,
46999           SALOMEDS/SALOMEDS_AttributeUserID.hxx,
47000           SALOMEDS/SALOMEDS_ClientAttributes.hxx,
47001           SALOMEDS/SALOMEDS_GenericAttribute.cxx,
47002           SALOMEDS/SALOMEDS_GenericAttribute.hxx,
47003           SALOMEDS/SALOMEDS_SComponent.cxx,
47004           SALOMEDS/SALOMEDS_SComponent.hxx, SALOMEDS/SALOMEDS_SObject.cxx,
47005           SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_Study.cxx,
47006           SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
47007           SALOMEDS/SALOMEDS_StudyBuilder.hxx,
47008           SALOMEDS/SALOMEDS_StudyManager.cxx,
47009           SALOMEDS/SALOMEDS_StudyManager.hxx,
47010           SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
47011           SALOMEDS/SALOMEDS_UseCaseBuilder.hxx:
47012
47013         replaced char* to std::string
47014
47015 2005-04-07 11:18  srn
47016
47017         * src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
47018
47019         Added const modificator for Name method
47020
47021 2005-04-07 08:26  srn
47022
47023         * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx,
47024           SALOMEDS_ChildIterator.hxx, SALOMEDS_SComponentIterator.cxx,
47025           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
47026
47027         Added duplicate and release to constructors/destructors
47028
47029 2005-04-07 07:41  srn
47030
47031         * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
47032
47033         Added release of _driver and _orb in the destructor of the SALOMEDS_Driver_i
47034
47035 2005-04-07 07:22  srn
47036
47037         * src/SALOMEDS/: SALOMEDS_StudyManager.cxx,
47038           SALOMEDS_StudyManager_i.cxx:
47039
47040         Added deletion of Drivers in Copy/Paste methods
47041
47042 2005-04-07 06:55  srn
47043
47044         * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
47045           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_SObject.cxx,
47046           SALOMEDS_SObject_i.cxx, SALOMEDS_Study.cxx,
47047           SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager.hxx,
47048           SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
47049
47050         Cnaged WNT on WIN32, modified methods for Copy/Paste in StudManager
47051
47052 2005-04-06 13:56  srn
47053
47054         * src/SALOMEDS/: SALOMEDS_AttributeName.cxx,
47055           SALOMEDS_GenericAttribute.cxx, SALOMEDS_SObject.cxx,
47056           SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
47057           SALOMEDS_StudyManager.cxx:
47058
47059         Added CORBA::release to destrutors
47060
47061 2005-04-06 12:40  srn
47062
47063         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
47064           SALOMEDSImpl_Study.hxx:
47065
47066         Added method dump for out the study's content in the file
47067
47068 2005-04-06 11:38  srn
47069
47070         * src/SALOMEDS/SALOMEDS_SObject.cxx:
47071
47072         Removed debug outputs
47073
47074 2005-04-06 11:14  srn
47075
47076         * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
47077
47078         Added 3 mthods to work with SALOMEDSClients
47079
47080 2005-04-06 11:13  srn
47081
47082         * src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
47083
47084         Added & to return arguments
47085
47086 2005-04-06 11:12  srn
47087
47088         * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx, Makefile.in,
47089           SALOMEDS_GenericAttribute.cxx, SALOMEDS_SComponentIterator.cxx,
47090           SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
47091           SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx,
47092           SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
47093
47094         Removed method _duplicate from constructors of Clients
47095
47096 2005-04-06 06:49  srn
47097
47098         * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
47099
47100         Removed debug output
47101
47102 2005-04-05 14:31  srn
47103
47104         * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
47105
47106         Removed debug output
47107
47108 2005-04-05 14:20  srn
47109
47110         * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
47111           SALOMEDS_StudyManager.cxx:
47112
47113         Fixes of the return SObjects and SComponents that are NULL
47114
47115 2005-04-04 14:35  srn
47116
47117         * src/SALOMEDSClient/SALOMEDSClient.hxx:
47118
47119         Added a newline at the file end
47120
47121 2005-04-04 13:42  srn
47122
47123         * src/SALOMEDS/: SALOMEDS_AttributeTextColor.cxx,
47124           SALOMEDS_AttributeTextColor.hxx,
47125           SALOMEDS_AttributeTextHighlightColor.cxx,
47126           SALOMEDS_AttributeTextHighlightColor.hxx:
47127
47128         Changed vector<double> on structure STextColor
47129
47130 2005-04-04 13:40  srn
47131
47132         * src/SALOMEDSClient/: Makefile.in, SALOMEDSClient.hxx,
47133           SALOMEDSClient_AttributeTextColor.hxx,
47134           SALOMEDSClient_AttributeTextHighlightColor.hxx,
47135           SALOMEDSClient_definitions.hxx:
47136
47137         Added common inclusion file, added structure TextColor
47138
47139 2005-04-04 13:40  smh
47140
47141         * src/SALOMEDSClient/SALOMEDSClient.hxx:
47142
47143         file SALOMEDSClient.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47144
47145 2005-04-04 13:40  smh
47146
47147         * src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
47148
47149         file SALOMEDSClient_definitions.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47150
47151 2005-04-04 11:23  mpv
47152
47153         * src/SALOMEDS/SALOMEDS_Client.cxx:
47154
47155         MPV: added HDF include to avoid compilation error
47156
47157 2005-04-04 09:34  srn
47158
47159         * src/SALOMEDSImpl/: SALOMEDSImpl_StudyManager.cxx,
47160           SALOMEDSImpl_StudyManager.hxx:
47161
47162         Removed a HDF include from hxx file.
47163
47164 2005-04-04 09:05  srn
47165
47166         * idl/SALOMEDS.idl:
47167
47168         Added methods GetLocalImpl() to SObject, Study, StudyManager and GenericAttribute interfaces
47169         (for SALOMEDS proxy task)
47170
47171 2005-04-04 09:04  srn
47172
47173         * src/SALOMEDS/SALOMEDS_SObject.cxx:
47174
47175         Removed unnecessary output
47176
47177 2005-04-04 09:03  srn
47178
47179         * src/SALOMEDS/: Makefile.in, SALOMEDS_AttributeComment_i.cxx,
47180           SALOMEDS_AttributeDrawable_i.cxx,
47181           SALOMEDS_AttributeExpandable_i.cxx,
47182           SALOMEDS_AttributeExternalFileDef_i.cxx,
47183           SALOMEDS_AttributeFileType_i.cxx,
47184           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeName_i.cxx,
47185           SALOMEDS_AttributeOpened_i.cxx,
47186           SALOMEDS_AttributePersistentRef_i.cxx,
47187           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributeReal_i.cxx,
47188           SALOMEDS_AttributeSelectable_i.cxx,
47189           SALOMEDS_AttributeTableOfInteger_i.cxx,
47190           SALOMEDS_AttributeTableOfReal_i.cxx,
47191           SALOMEDS_AttributeTableOfString_i.cxx,
47192           SALOMEDS_AttributeTarget_i.cxx,
47193           SALOMEDS_AttributeTextColor_i.cxx,
47194           SALOMEDS_AttributeTextHighlightColor_i.cxx,
47195           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
47196           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
47197           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
47198           SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx:
47199
47200         Modified attributes to comply with modifications in the method's names in SALOMEDSImpl
47201
47202 2005-04-04 09:02  smh
47203
47204         * src/SALOMEDS/SALOMEDS_AttributeComment.hxx:
47205
47206         file SALOMEDS_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47207
47208 2005-04-04 09:02  smh
47209
47210         * src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx:
47211
47212         file SALOMEDS_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47213
47214 2005-04-04 09:02  smh
47215
47216         * src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx:
47217
47218         file SALOMEDS_AttributeExpandable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47219
47220 2005-04-04 09:02  smh
47221
47222         * src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx:
47223
47224         file SALOMEDS_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47225
47226 2005-04-04 09:02  smh
47227
47228         * src/SALOMEDS/SALOMEDS_AttributeFileType.hxx:
47229
47230         file SALOMEDS_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47231
47232 2005-04-04 09:02  smh
47233
47234         * src/SALOMEDS/SALOMEDS_AttributeFlags.cxx:
47235
47236         file SALOMEDS_AttributeFlags.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47237
47238 2005-04-04 09:02  smh
47239
47240         * src/SALOMEDS/SALOMEDS_AttributeFlags.hxx:
47241
47242         file SALOMEDS_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47243
47244 2005-04-04 09:02  smh
47245
47246         * src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx:
47247
47248         file SALOMEDS_AttributeGraphic.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47249
47250 2005-04-04 09:02  smh
47251
47252         * src/SALOMEDS/SALOMEDS_AttributeIOR.cxx:
47253
47254         file SALOMEDS_AttributeIOR.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47255
47256 2005-04-04 09:02  smh
47257
47258         * src/SALOMEDS/SALOMEDS_AttributeIOR.hxx:
47259
47260         file SALOMEDS_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47261
47262 2005-04-04 09:02  smh
47263
47264         * src/SALOMEDS/SALOMEDS_AttributeInteger.hxx:
47265
47266         file SALOMEDS_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47267
47268 2005-04-04 09:02  smh
47269
47270         * src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx:
47271
47272         file SALOMEDS_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47273
47274 2005-04-04 09:02  smh
47275
47276         * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
47277
47278         file SALOMEDS_AttributeName.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47279
47280 2005-04-04 09:02  smh
47281
47282         * src/SALOMEDS/SALOMEDS_AttributeOpened.hxx:
47283
47284         file SALOMEDS_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47285
47286 2005-04-04 09:02  smh
47287
47288         * src/SALOMEDS/SALOMEDS_AttributeReal.hxx:
47289
47290         file SALOMEDS_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47291
47292 2005-04-04 09:02  smh
47293
47294         * src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx:
47295
47296         file SALOMEDS_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47297
47298 2005-04-04 09:02  smh
47299
47300         * src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx:
47301
47302         file SALOMEDS_AttributeSequenceOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47303
47304 2005-04-04 09:02  smh
47305
47306         * src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx:
47307
47308         file SALOMEDS_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47309
47310 2005-04-04 09:02  smh
47311
47312         * src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx:
47313
47314         file SALOMEDS_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47315
47316 2005-04-04 09:02  smh
47317
47318         * src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx:
47319
47320         file SALOMEDS_AttributeTableOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47321
47322 2005-04-04 09:02  smh
47323
47324         * src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx:
47325
47326         file SALOMEDS_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47327
47328 2005-04-04 09:02  smh
47329
47330         * src/SALOMEDS/SALOMEDS_AttributeTarget.cxx:
47331
47332         file SALOMEDS_AttributeTarget.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47333
47334 2005-04-04 09:02  smh
47335
47336         * src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx:
47337
47338         file SALOMEDS_AttributeTextColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47339
47340 2005-04-04 09:02  smh
47341
47342         * src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx:
47343
47344         file SALOMEDS_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47345
47346 2005-04-04 09:02  smh
47347
47348         * src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx:
47349
47350         file SALOMEDS_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47351
47352 2005-04-04 09:02  smh
47353
47354         * src/SALOMEDS/SALOMEDS_ChildIterator.hxx:
47355
47356         file SALOMEDS_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47357
47358 2005-04-04 09:02  smh
47359
47360         * src/SALOMEDS/SALOMEDS_SObject.cxx:
47361
47362         file SALOMEDS_SObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47363
47364 2005-04-04 09:02  smh
47365
47366         * src/SALOMEDS/SALOMEDS_Study.hxx:
47367
47368         file SALOMEDS_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47369
47370 2005-04-04 09:02  smh
47371
47372         * src/SALOMEDS/SALOMEDS_StudyBuilder.hxx:
47373
47374         file SALOMEDS_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47375
47376 2005-04-04 09:02  smh
47377
47378         * src/SALOMEDS/SALOMEDS_AttributeComment.cxx:
47379
47380         file SALOMEDS_AttributeComment.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47381
47382 2005-04-04 09:02  smh
47383
47384         * src/SALOMEDS/SALOMEDS_AttributeFileType.cxx:
47385
47386         file SALOMEDS_AttributeFileType.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47387
47388 2005-04-04 09:02  smh
47389
47390         * src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx:
47391
47392         file SALOMEDS_AttributeSelectable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47393
47394 2005-04-04 09:02  smh
47395
47396         * src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx:
47397
47398         file SALOMEDS_AttributeStudyProperties.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47399
47400 2005-04-04 09:02  smh
47401
47402         * src/SALOMEDS/SALOMEDS_AttributeTarget.hxx:
47403
47404         file SALOMEDS_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47405
47406 2005-04-04 09:02  smh
47407
47408         * src/SALOMEDS/SALOMEDS_GenericAttribute.hxx:
47409
47410         file SALOMEDS_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47411
47412 2005-04-04 09:02  smh
47413
47414         * src/SALOMEDS/SALOMEDS_StudyBuilder.cxx:
47415
47416         file SALOMEDS_StudyBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47417
47418 2005-04-04 09:02  smh
47419
47420         * src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx:
47421
47422         file SALOMEDS_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47423
47424 2005-04-04 09:02  smh
47425
47426         * src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx:
47427
47428         file SALOMEDS_AttributeDrawable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47429
47430 2005-04-04 09:02  smh
47431
47432         * src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx:
47433
47434         file SALOMEDS_AttributeLocalID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47435
47436 2005-04-04 09:02  smh
47437
47438         * src/SALOMEDS/SALOMEDS_AttributeOpened.cxx:
47439
47440         file SALOMEDS_AttributeOpened.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47441
47442 2005-04-04 09:02  smh
47443
47444         * src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx:
47445
47446         file SALOMEDS_AttributeTextHighlightColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47447
47448 2005-04-04 09:02  smh
47449
47450         * src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
47451
47452         file SALOMEDS_UseCaseIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47453
47454 2005-04-04 09:02  srn
47455
47456         * src/SALOMEDS/: SALOMEDS_AttributeExpandable.hxx,
47457           SALOMEDS_AttributeExternalFileDef.cxx,
47458           SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeInteger.cxx,
47459           SALOMEDS_AttributeName.hxx, SALOMEDS_AttributePersistentRef.cxx,
47460           SALOMEDS_AttributePersistentRef.hxx,
47461           SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
47462           SALOMEDS_AttributePythonObject.cxx,
47463           SALOMEDS_AttributePythonObject.hxx, SALOMEDS_AttributeReal.cxx,
47464           SALOMEDS_AttributeSequenceOfInteger.hxx,
47465           SALOMEDS_AttributeSequenceOfReal.cxx,
47466           SALOMEDS_AttributeTableOfReal.cxx,
47467           SALOMEDS_AttributeTableOfReal.hxx,
47468           SALOMEDS_AttributeTableOfString.cxx,
47469           SALOMEDS_AttributeTableOfString.hxx,
47470           SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
47471           SALOMEDS_AttributeUserID.cxx, SALOMEDS_AttributeUserID.hxx,
47472           SALOMEDS_ChildIterator.cxx, SALOMEDS_ClientAttributes.hxx,
47473           SALOMEDS_GenericAttribute.cxx, SALOMEDS_SComponent.cxx,
47474           SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.cxx,
47475           SALOMEDS_SComponentIterator.hxx, SALOMEDS_SObject.hxx,
47476           SALOMEDS_Study.cxx, SALOMEDS_StudyManager.cxx,
47477           SALOMEDS_StudyManager.hxx, SALOMEDS_UseCaseBuilder.cxx,
47478           SALOMEDS_UseCaseIterator.hxx, SALOMEDS_AttributeDrawable.cxx,
47479           SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeOpened.cxx,
47480           SALOMEDS_AttributeTextHighlightColor.cxx,
47481           SALOMEDS_UseCaseIterator.cxx, SALOMEDS_AttributeComment.cxx,
47482           SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeSelectable.cxx,
47483           SALOMEDS_AttributeStudyProperties.cxx,
47484           SALOMEDS_AttributeTarget.hxx, SALOMEDS_GenericAttribute.hxx,
47485           SALOMEDS_StudyBuilder.cxx, SALOMEDS_UseCaseBuilder.hxx,
47486           SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeDrawable.hxx,
47487           SALOMEDS_AttributeExpandable.cxx,
47488           SALOMEDS_AttributeExternalFileDef.hxx,
47489           SALOMEDS_AttributeFileType.hxx, SALOMEDS_AttributeFlags.cxx,
47490           SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeGraphic.cxx,
47491           SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR.hxx,
47492           SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeLocalID.hxx,
47493           SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeOpened.hxx,
47494           SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeSelectable.hxx,
47495           SALOMEDS_AttributeSequenceOfInteger.cxx,
47496           SALOMEDS_AttributeSequenceOfReal.hxx,
47497           SALOMEDS_AttributeStudyProperties.hxx,
47498           SALOMEDS_AttributeTableOfInteger.cxx,
47499           SALOMEDS_AttributeTableOfInteger.hxx,
47500           SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTextColor.cxx,
47501           SALOMEDS_AttributeTextColor.hxx,
47502           SALOMEDS_AttributeTextHighlightColor.hxx,
47503           SALOMEDS_ChildIterator.hxx, SALOMEDS_SObject.cxx,
47504           SALOMEDS_Study.hxx, SALOMEDS_StudyBuilder.hxx:
47505
47506         Proxy classe's implementations for SALOMEDS
47507
47508 2005-04-04 09:02  smh
47509
47510         * src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx:
47511
47512         file SALOMEDS_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47513
47514 2005-04-04 09:02  smh
47515
47516         * src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx:
47517
47518         file SALOMEDS_AttributeExternalFileDef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47519
47520 2005-04-04 09:02  smh
47521
47522         * src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx:
47523
47524         file SALOMEDS_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47525
47526 2005-04-04 09:02  smh
47527
47528         * src/SALOMEDS/SALOMEDS_AttributeInteger.cxx:
47529
47530         file SALOMEDS_AttributeInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
47531
47532 2005-04-04 09:02  smh
47533
47534         * src/SALOMEDS/SALOMEDS_AttributeName.hxx:
47535
47536         file SALOMEDS_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47537
47538 2005-04-04 09:02  smh
47539
47540         * src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx:
47541
47542         file SALOMEDS_AttributePersistentRef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47543
47544 2005-04-04 09:02  smh
47545
47546         * src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx:
47547
47548         file SALOMEDS_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47549
47550 2005-04-04 09:02  smh
47551
47552         * src/SALOMEDS/SALOMEDS_AttributePixMap.cxx:
47553
47554         file SALOMEDS_AttributePixMap.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47555
47556 2005-04-04 09:02  smh
47557
47558         * src/SALOMEDS/SALOMEDS_AttributePixMap.hxx:
47559
47560         file SALOMEDS_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47561
47562 2005-04-04 09:02  smh
47563
47564         * src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx:
47565
47566         file SALOMEDS_AttributePythonObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47567
47568 2005-04-04 09:02  smh
47569
47570         * src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx:
47571
47572         file SALOMEDS_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47573
47574 2005-04-04 09:02  smh
47575
47576         * src/SALOMEDS/SALOMEDS_AttributeReal.cxx:
47577
47578         file SALOMEDS_AttributeReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47579
47580 2005-04-04 09:02  smh
47581
47582         * src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx:
47583
47584         file SALOMEDS_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47585
47586 2005-04-04 09:02  smh
47587
47588         * src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx:
47589
47590         file SALOMEDS_AttributeSequenceOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47591
47592 2005-04-04 09:02  smh
47593
47594         * src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx:
47595
47596         file SALOMEDS_AttributeTableOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47597
47598 2005-04-04 09:02  smh
47599
47600         * src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx:
47601
47602         file SALOMEDS_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47603
47604 2005-04-04 09:02  smh
47605
47606         * src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx:
47607
47608         file SALOMEDS_AttributeTableOfString.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47609
47610 2005-04-04 09:02  smh
47611
47612         * src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx:
47613
47614         file SALOMEDS_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47615
47616 2005-04-04 09:02  smh
47617
47618         * src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx:
47619
47620         file SALOMEDS_AttributeTreeNode.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47621
47622 2005-04-04 09:02  smh
47623
47624         * src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx:
47625
47626         file SALOMEDS_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47627
47628 2005-04-04 09:02  smh
47629
47630         * src/SALOMEDS/SALOMEDS_AttributeUserID.cxx:
47631
47632         file SALOMEDS_AttributeUserID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47633
47634 2005-04-04 09:02  smh
47635
47636         * src/SALOMEDS/SALOMEDS_AttributeUserID.hxx:
47637
47638         file SALOMEDS_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47639
47640 2005-04-04 09:02  smh
47641
47642         * src/SALOMEDS/SALOMEDS_ChildIterator.cxx:
47643
47644         file SALOMEDS_ChildIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47645
47646 2005-04-04 09:02  smh
47647
47648         * src/SALOMEDS/SALOMEDS_ClientAttributes.hxx:
47649
47650         file SALOMEDS_ClientAttributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47651
47652 2005-04-04 09:02  smh
47653
47654         * src/SALOMEDS/SALOMEDS_GenericAttribute.cxx:
47655
47656         file SALOMEDS_GenericAttribute.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
47657
47658 2005-04-04 09:02  smh
47659
47660         * src/SALOMEDS/SALOMEDS_SComponent.cxx:
47661
47662         file SALOMEDS_SComponent.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47663
47664 2005-04-04 09:02  smh
47665
47666         * src/SALOMEDS/SALOMEDS_SComponent.hxx:
47667
47668         file SALOMEDS_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47669
47670 2005-04-04 09:02  smh
47671
47672         * src/SALOMEDS/SALOMEDS_SComponentIterator.cxx:
47673
47674         file SALOMEDS_SComponentIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47675
47676 2005-04-04 09:02  smh
47677
47678         * src/SALOMEDS/SALOMEDS_SComponentIterator.hxx:
47679
47680         file SALOMEDS_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47681
47682 2005-04-04 09:02  smh
47683
47684         * src/SALOMEDS/SALOMEDS_SObject.hxx:
47685
47686         file SALOMEDS_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47687
47688 2005-04-04 09:02  smh
47689
47690         * src/SALOMEDS/SALOMEDS_Study.cxx:
47691
47692         file SALOMEDS_Study.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47693
47694 2005-04-04 09:02  smh
47695
47696         * src/SALOMEDS/SALOMEDS_StudyManager.cxx:
47697
47698         file SALOMEDS_StudyManager.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47699
47700 2005-04-04 09:02  smh
47701
47702         * src/SALOMEDS/SALOMEDS_StudyManager.hxx:
47703
47704         file SALOMEDS_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47705
47706 2005-04-04 09:02  smh
47707
47708         * src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx:
47709
47710         file SALOMEDS_UseCaseBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47711
47712 2005-04-04 09:02  smh
47713
47714         * src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx:
47715
47716         file SALOMEDS_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
47717
47718 2005-04-04 08:59  srn
47719
47720         * src/SALOMEDSClient/: Makefile.in,
47721           SALOMEDSClient_AttributeComment.hxx,
47722           SALOMEDSClient_AttributeDrawable.hxx,
47723           SALOMEDSClient_AttributeExpandable.hxx,
47724           SALOMEDSClient_AttributeExternalFileDef.hxx,
47725           SALOMEDSClient_AttributeFileType.hxx,
47726           SALOMEDSClient_AttributeFlags.hxx,
47727           SALOMEDSClient_AttributeGraphic.hxx,
47728           SALOMEDSClient_AttributeIOR.hxx,
47729           SALOMEDSClient_AttributeInteger.hxx,
47730           SALOMEDSClient_AttributeLocalID.hxx,
47731           SALOMEDSClient_AttributeName.hxx,
47732           SALOMEDSClient_AttributeOpened.hxx,
47733           SALOMEDSClient_AttributePersistentRef.hxx,
47734           SALOMEDSClient_AttributePixMap.hxx,
47735           SALOMEDSClient_AttributePythonObject.hxx,
47736           SALOMEDSClient_AttributeReal.hxx,
47737           SALOMEDSClient_AttributeSelectable.hxx,
47738           SALOMEDSClient_AttributeSequenceOfInteger.hxx,
47739           SALOMEDSClient_AttributeSequenceOfReal.hxx,
47740           SALOMEDSClient_AttributeStudyProperties.hxx,
47741           SALOMEDSClient_AttributeTableOfInteger.hxx,
47742           SALOMEDSClient_AttributeTableOfReal.hxx,
47743           SALOMEDSClient_AttributeTableOfString.hxx,
47744           SALOMEDSClient_AttributeTarget.hxx,
47745           SALOMEDSClient_AttributeTextColor.hxx,
47746           SALOMEDSClient_AttributeTextHighlightColor.hxx,
47747           SALOMEDSClient_AttributeTreeNode.hxx,
47748           SALOMEDSClient_AttributeUserID.hxx,
47749           SALOMEDSClient_ChildIterator.hxx,
47750           SALOMEDSClient_GenericAttribute.hxx,
47751           SALOMEDSClient_SComponent.hxx,
47752           SALOMEDSClient_SComponentIterator.hxx,
47753           SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
47754           SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
47755           SALOMEDSClient_UseCaseBuilder.hxx,
47756           SALOMEDSClient_UseCaseIterator.hxx:
47757
47758         Proxy classe's headers for SALOMEDS
47759
47760 2005-04-04 08:59  smh
47761
47762         * src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx:
47763
47764         file SALOMEDSClient_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47765
47766 2005-04-04 08:59  smh
47767
47768         * src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx:
47769
47770         file SALOMEDSClient_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47771
47772 2005-04-04 08:59  smh
47773
47774         * src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx:
47775
47776         file SALOMEDSClient_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47777
47778 2005-04-04 08:59  smh
47779
47780         * src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx:
47781
47782         file SALOMEDSClient_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47783
47784 2005-04-04 08:59  smh
47785
47786         * src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx:
47787
47788         file SALOMEDSClient_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47789
47790 2005-04-04 08:59  smh
47791
47792         * src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx:
47793
47794         file SALOMEDSClient_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47795
47796 2005-04-04 08:59  smh
47797
47798         * src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx:
47799
47800         file SALOMEDSClient_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47801
47802 2005-04-04 08:59  smh
47803
47804         * src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx:
47805
47806         file SALOMEDSClient_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47807
47808 2005-04-04 08:59  smh
47809
47810         * src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx:
47811
47812         file SALOMEDSClient_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47813
47814 2005-04-04 08:59  smh
47815
47816         * src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx:
47817
47818         file SALOMEDSClient_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47819
47820 2005-04-04 08:59  smh
47821
47822         * src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx:
47823
47824         file SALOMEDSClient_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47825
47826 2005-04-04 08:59  smh
47827
47828         * src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx:
47829
47830         file SALOMEDSClient_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47831
47832 2005-04-04 08:59  smh
47833
47834         * src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx:
47835
47836         file SALOMEDSClient_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47837
47838 2005-04-04 08:59  smh
47839
47840         * src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx:
47841
47842         file SALOMEDSClient_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47843
47844 2005-04-04 08:59  smh
47845
47846         * src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx:
47847
47848         file SALOMEDSClient_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47849
47850 2005-04-04 08:59  smh
47851
47852         * src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx:
47853
47854         file SALOMEDSClient_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47855
47856 2005-04-04 08:59  smh
47857
47858         * src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx:
47859
47860         file SALOMEDSClient_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47861
47862 2005-04-04 08:59  smh
47863
47864         * src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx:
47865
47866         file SALOMEDSClient_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47867
47868 2005-04-04 08:59  smh
47869
47870         * src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx:
47871
47872         file SALOMEDSClient_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47873
47874 2005-04-04 08:59  smh
47875
47876         * src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx:
47877
47878         file SALOMEDSClient_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47879
47880 2005-04-04 08:59  smh
47881
47882         * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx:
47883
47884         file SALOMEDSClient_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47885
47886 2005-04-04 08:59  smh
47887
47888         * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx:
47889
47890         file SALOMEDSClient_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47891
47892 2005-04-04 08:59  smh
47893
47894         * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
47895
47896         file SALOMEDSClient_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47897
47898 2005-04-04 08:59  smh
47899
47900         * src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx:
47901
47902         file SALOMEDSClient_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47903
47904 2005-04-04 08:59  smh
47905
47906         * src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx:
47907
47908         file SALOMEDSClient_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47909
47910 2005-04-04 08:59  smh
47911
47912         *
47913           src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx:
47914
47915         file SALOMEDSClient_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47916
47917 2005-04-04 08:59  smh
47918
47919         * src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx:
47920
47921         file SALOMEDSClient_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47922
47923 2005-04-04 08:59  smh
47924
47925         * src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx:
47926
47927         file SALOMEDSClient_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47928
47929 2005-04-04 08:59  smh
47930
47931         * src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx:
47932
47933         file SALOMEDSClient_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47934
47935 2005-04-04 08:59  smh
47936
47937         * src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx:
47938
47939         file SALOMEDSClient_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47940
47941 2005-04-04 08:59  smh
47942
47943         * src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
47944
47945         file SALOMEDSClient_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47946
47947 2005-04-04 08:59  smh
47948
47949         * src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx:
47950
47951         file SALOMEDSClient_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47952
47953 2005-04-04 08:59  smh
47954
47955         * src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
47956
47957         file SALOMEDSClient_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47958
47959 2005-04-04 08:59  smh
47960
47961         * src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx:
47962
47963         file SALOMEDSClient_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47964
47965 2005-04-04 08:59  smh
47966
47967         * src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx:
47968
47969         file SALOMEDSClient_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
47970
47971 2005-04-04 08:57  srn
47972
47973         * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.hxx,
47974           SALOMEDSImpl_AttributeDrawable.hxx,
47975           SALOMEDSImpl_AttributeExpandable.cxx,
47976           SALOMEDSImpl_AttributeExpandable.hxx,
47977           SALOMEDSImpl_AttributeExternalFileDef.hxx,
47978           SALOMEDSImpl_AttributeFileType.hxx,
47979           SALOMEDSImpl_AttributeInteger.cxx,
47980           SALOMEDSImpl_AttributeInteger.hxx,
47981           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
47982           SALOMEDSImpl_AttributeOpened.cxx,
47983           SALOMEDSImpl_AttributePersistentRef.cxx,
47984           SALOMEDSImpl_AttributePixMap.cxx,
47985           SALOMEDSImpl_AttributePixMap.hxx, SALOMEDSImpl_AttributeReal.cxx,
47986           SALOMEDSImpl_AttributeSelectable.cxx,
47987           SALOMEDSImpl_AttributeSelectable.hxx,
47988           SALOMEDSImpl_AttributeTableOfInteger.hxx,
47989           SALOMEDSImpl_AttributeTableOfReal.hxx,
47990           SALOMEDSImpl_AttributeTableOfString.cxx,
47991           SALOMEDSImpl_AttributeTarget.cxx,
47992           SALOMEDSImpl_AttributeTarget.hxx,
47993           SALOMEDSImpl_AttributeTextColor.cxx,
47994           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
47995           SALOMEDSImpl_AttributeTextHighlightColor.hxx,
47996           SALOMEDSImpl_ChildIterator.cxx,
47997           SALOMEDSImpl_GenericAttribute.cxx,
47998           SALOMEDSImpl_SComponentIterator.cxx, SALOMEDSImpl_SObject.cxx,
47999           SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Study.hxx,
48000           SALOMEDSImpl_StudyBuilder.cxx, SALOMEDSImpl_StudyManager.cxx,
48001           SALOMEDSImpl_UseCaseBuilder.cxx,
48002           SALOMEDSImpl_UseCaseIterator.cxx, testDS.cxx,
48003           SALOMEDSImpl_AttributeComment.cxx,
48004           SALOMEDSImpl_AttributeDrawable.cxx,
48005           SALOMEDSImpl_AttributeExternalFileDef.cxx,
48006           SALOMEDSImpl_AttributeFileType.cxx,
48007           SALOMEDSImpl_AttributeOpened.hxx,
48008           SALOMEDSImpl_AttributePersistentRef.hxx,
48009           SALOMEDSImpl_AttributeReal.hxx,
48010           SALOMEDSImpl_AttributeTableOfInteger.cxx,
48011           SALOMEDSImpl_AttributeTableOfReal.cxx,
48012           SALOMEDSImpl_AttributeTableOfString.hxx,
48013           SALOMEDSImpl_AttributeTextColor.hxx,
48014           SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_SComponent.cxx:
48015
48016         Make most of attribute have method's names coinciding with that in IDL
48017
48018 2005-04-04 08:22  prascle
48019
48020         * INSTALL, bin/VERSION, bin/orbmodule.py, bin/runSalome.py,
48021           bin/salomeConsole.py, resources/KERNELCatalog.xml,
48022           salome_adm/unix/SALOMEconfig.h.in,
48023           salome_adm/unix/make_commence.in,
48024           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
48025           salome_adm/unix/config_files/check_cas.m4,
48026           salome_adm/unix/config_files/check_med2.m4,
48027           salome_adm/unix/config_files/check_pyqt.m4,
48028           salome_adm/unix/config_files/check_qt.m4,
48029           salome_adm/unix/config_files/check_qwt.m4,
48030           salome_adm/unix/config_files/check_sip.m4, src/Makefile.in,
48031           src/Container/Container_i.cxx, src/Container/Makefile.in,
48032           src/Container/SALOME_Container.cxx,
48033           src/Container/SALOME_ContainerManager.cxx,
48034           src/Container/SALOME_ContainerManagerServer.cxx,
48035           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
48036           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
48037           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
48038           src/NamingService/NamingService_WaitForServerReadiness.cxx,
48039           src/NamingService/SALOME_NamingService.cxx,
48040           src/NamingService/SALOME_NamingServicePy.py,
48041           src/Notification/NOTIFICATION.cxx,
48042           src/Registry/SALOME_Registry_Server.cxx,
48043           src/ResourcesManager/SALOME_ResourcesManager.cxx,
48044           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
48045           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
48046           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
48047           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
48048           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
48049           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
48050           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
48051           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
48052           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
48053           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
48054           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
48055           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
48056           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
48057           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
48058           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
48059           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
48060           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
48061           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
48062           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
48063           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
48064           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
48065           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
48066           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
48067           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
48068           src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
48069           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
48070           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
48071           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
48072           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
48073           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
48074           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
48075           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
48076           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
48077           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
48078           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
48079           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
48080           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
48081           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
48082           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
48083           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
48084           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
48085           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
48086           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
48087           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
48088           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
48089           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
48090           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
48091           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
48092           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
48093           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
48094           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
48095           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
48096           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
48097           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
48098           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
48099           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
48100           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
48101           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
48102           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
48103           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
48104           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
48105           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
48106           src/SALOMEDS/SALOMEDS_Server.cxx,
48107           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
48108           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
48109           src/SALOMEDS/SALOMEDS_Study_i.cxx,
48110           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
48111           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
48112           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
48113           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
48114           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
48115           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
48116           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
48117           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
48118           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
48119           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
48120           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
48121           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
48122           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
48123           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
48124           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
48125           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
48126           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
48127           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
48128           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
48129           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
48130           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
48131           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
48132           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
48133           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
48134           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
48135           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
48136           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
48137           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
48138           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
48139           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
48140           src/Utils/Utils_CorbaException.hxx, src/Utils/Utils_Mutex.cxx,
48141           src/Utils/Utils_Mutex.hxx:
48142
48143         PR: merge from tag V2_2_2
48144
48145 2005-03-30 12:12  srn
48146
48147         * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx:
48148
48149         Added Copy and empty constructors.
48150
48151 2005-03-30 11:48  srn
48152
48153         * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
48154           SALOMEDSImpl_GenericAttribute.hxx:
48155
48156         Added method GetSObject
48157
48158 2005-03-28 08:00  srn
48159
48160         * idl/SALOMEDS.idl:
48161
48162         Added 2 methods to StudyManger (ConvertObjectToString and ConvertStringToObject)
48163
48164 2005-03-28 07:58  srn
48165
48166         * src/SALOMEDS/: SALOMEDS_Driver_i.hxx,
48167           SALOMEDS_StudyManager_i.hxx:
48168
48169         Added 2 methods to StudyManger (ConvertObjectToString and ConvertStringToObject),
48170         changed a field of Driver from Driver_ptr to Driver_var
48171
48172 2005-03-25 13:15  vsr
48173
48174         * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
48175
48176         Change version number to 2.2.2
48177
48178 2005-03-25 08:23  srn
48179
48180         * src/: SALOMEDSImpl/Makefile.in,
48181           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
48182           SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
48183           SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
48184           SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
48185           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
48186           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
48187           SALOMEDS/SALOMEDS_Study_i.cxx:
48188
48189         New implementation of ChildIterator
48190
48191 2005-03-25 08:23  smh
48192
48193         * src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx:
48194
48195         file SALOMEDSImpl_ChildIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48196
48197 2005-03-25 08:23  smh
48198
48199         * src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx:
48200
48201         file SALOMEDSImpl_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48202
48203 2005-03-24 06:45  srn
48204
48205         * src/SALOMEDS/SALOMEDS_SObject_i.hxx,
48206           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
48207           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
48208           src/SALOMEDS/SALOMEDS_Study_i.hxx, idl/SALOMEDS.idl,
48209           src/SALOMEDS/SALOMEDS_Callback_i.hxx:
48210
48211         Removed unnecessary methods for Callback
48212
48213 2005-03-23 08:56  srn
48214
48215         * src/SALOMEDS/: SALOMEDS_StudyManager_i.cxx,
48216           SALOMEDS_StudyManager_i.hxx:
48217
48218         Removed unnecessary methods
48219
48220 2005-03-23 08:03  srn
48221
48222         * src/SALOMEDS/SALOMEDS_Callback_i.hxx:
48223
48224         Mark this class as depricated
48225
48226 2005-03-22 10:57  srn
48227
48228         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx:
48229
48230         Removed depricated methods Store and Restore from GenericAttribute interface
48231
48232 2005-03-22 08:54  srn
48233
48234         * src/SALOMEDS/: SALOMEDS_AttributeTarget_i.cxx,
48235           SALOMEDS_Attributes.hxx, SALOMEDS_ChildIterator_i.cxx,
48236           SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
48237           SALOMEDS_GenericAttribute_i.cxx,
48238           SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
48239           SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
48240           SALOMEDS_SObject_i.hxx, SALOMEDS_StudyBuilder_i.cxx,
48241           SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx,
48242           SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
48243           SALOMEDS_UseCaseIterator_i.cxx:
48244
48245         Fixed bug with freezing the SALOMEDS in standalone mode.
48246         Implemented a support of creation SObjects, SComponents and Attributes only once, without their later re-creation.
48247
48248 2005-03-22 08:52  srn
48249
48250         * src/SALOMEDSImpl/:
48251           Handle_SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
48252           Handle_SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
48253           SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString.hxx,
48254           SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
48255           SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel.hxx,
48256           SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel_0.cxx,
48257           SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
48258           SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString_0.cxx,
48259           SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
48260           SALOMEDSImpl_DataMapNodeOfDataMapStringLabel_0.cxx,
48261           SALOMEDSImpl_DataMapOfIntegerString.hxx,
48262           SALOMEDSImpl_DataMapOfIntegerString_0.cxx,
48263           SALOMEDSImpl_DataMapStringLabel.hxx,
48264           SALOMEDSImpl_DataMapStringLabel_0.cxx:
48265
48266         Replaced Maps on templates from NCollection package
48267
48268 2005-03-22 08:51  srn
48269
48270         * src/SALOMEDSImpl/: SALOMEDSImpl_Study.hxx, Makefile.in,
48271           SALOMEDSImpl_AttributeTableOfString.cxx,
48272           SALOMEDSImpl_AttributeTableOfString.hxx,
48273           SALOMEDSImpl_SComponent.cxx, SALOMEDSImpl_SComponentIterator.cxx,
48274           SALOMEDSImpl_SObject.cxx, SALOMEDSImpl_SObject.hxx,
48275           SALOMEDSImpl_Study.cxx, SALOMEDSImpl_StudyBuilder.cxx,
48276           SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_UseCaseBuilder.cxx,
48277           SALOMEDSImpl_UseCaseIterator.cxx:
48278
48279         Implemented a support of creation of SObjects, SComponents and Attributes only once, without later re-creation.
48280
48281 2005-03-21 09:26  srn
48282
48283         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
48284
48285         Fixed bug in method LoadWith for case when study is filled by Python script
48286
48287 2005-03-18 15:14  srn
48288
48289         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
48290
48291         Changed "import of batchmode_salome" to "import salome" in DumpStudy
48292
48293 2005-03-18 13:25  prascle
48294
48295         * bin/orbmodule.py, bin/runSalome.py, bin/salomeConsole.py,
48296           salome_adm/unix/make_commence.in,
48297           salome_adm/unix/config_files/check_pyqt.m4,
48298           salome_adm/unix/config_files/check_qt.m4,
48299           salome_adm/unix/config_files/check_qwt.m4,
48300           salome_adm/unix/config_files/check_sip.m4,
48301           src/Container/SALOME_Container.cxx,
48302           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
48303           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
48304           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
48305           src/NamingService/NamingService_WaitForServerReadiness.cxx,
48306           src/NamingService/SALOME_NamingService.cxx,
48307           src/NamingService/SALOME_NamingServicePy.py,
48308           src/Notification/NOTIFICATION.cxx,
48309           src/Registry/SALOME_Registry_Server.cxx,
48310           src/SALOMEDS/SALOMEDS_Server.cxx,
48311           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
48312           src/TestContainer/TestContainer.cxx:
48313
48314         merged from mergeto_V2_2_0_maintainance_18mar05
48315
48316 2005-03-18 13:01  prascle
48317
48318         * bin/runSalome.py, salome_adm/unix/SALOMEconfig.h.in,
48319           salome_adm/unix/make_commence.in,
48320           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
48321           salome_adm/unix/config_files/check_cas.m4,
48322           salome_adm/unix/config_files/check_med2.m4, src/Makefile.in,
48323           src/Container/Container_i.cxx, src/Container/Makefile.in,
48324           src/Container/SALOME_ContainerManager.cxx,
48325           src/Container/SALOME_ContainerManagerServer.cxx,
48326           src/ResourcesManager/SALOME_ResourcesManager.cxx,
48327           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
48328           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
48329           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
48330           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
48331           src/Utils/Utils_CorbaException.hxx:
48332
48333         merged from V2_2_0_maintainance_18mar05
48334
48335 2005-03-17 13:17  apo
48336
48337         * salome_adm/unix/: SALOMEconfig.h.in,
48338           config_files/ac_cxx_depend_flag.m4, config_files/check_med2.m4:
48339
48340         Fix on previous integration, that was associated with CCRT_Port_V220.
48341         The regression was caused by customisation of compilation between PCLINUX and OSF1 platforms for KERNEL/MEDWrapper library.
48342         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.
48343
48344 2005-03-17 12:57  apo
48345
48346         * salome_adm/unix/: SALOMEconfig.h.in,
48347           config_files/ac_cxx_depend_flag.m4, config_files/check_med2.m4:
48348
48349         Fix on previous integration, that was associated with CCRT_Port_V220.
48350         The regression was caused by customisation of compilation between PCLINUX and OSF1 platforms for KERNEL/MEDWrapper library.
48351         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.
48352
48353 2005-03-17 09:59  prascle
48354
48355         * bin/orbmodule.py:
48356
48357         PR: behavior change on iterators in CosNaming, omniORB 4.0
48358
48359 2005-03-17 09:58  srn
48360
48361         * src/Utils/: Makefile.in, Utils_Mutex.cxx, Utils_Mutex.hxx:
48362
48363         Locks
48364
48365 2005-03-17 09:56  prascle
48366
48367         * bin/runSalome.py:
48368
48369         PR: get the same behavior as in V2_2_1
48370
48371 2005-03-17 09:19  srn
48372
48373         * src/SALOMEDS/: SALOMEDS_TableOfIntegerAttribute.cxx,
48374           SALOMEDS_TableOfIntegerAttribute.hxx,
48375           SALOMEDS_TableOfIntegerAttribute.ixx,
48376           SALOMEDS_TableOfIntegerAttribute.jxx,
48377           SALOMEDS_TableOfRealAttribute.cxx,
48378           SALOMEDS_TableOfRealAttribute.hxx,
48379           SALOMEDS_TableOfRealAttribute.ixx,
48380           SALOMEDS_TableOfRealAttribute.jxx,
48381           SALOMEDS_TableOfStringAttribute.cxx,
48382           SALOMEDS_TableOfStringAttribute.hxx,
48383           SALOMEDS_TableOfStringAttribute.ixx,
48384           SALOMEDS_TableOfStringAttribute.jxx,
48385           SALOMEDS_TargetAttribute.cdl, SALOMEDS_TargetAttribute.cxx,
48386           SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
48387           SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cdl,
48388           SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
48389           SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
48390           SALOMEDS_TextHighlightColorAttribute.cdl,
48391           SALOMEDS_TextHighlightColorAttribute.cxx,
48392           SALOMEDS_TextHighlightColorAttribute.hxx,
48393           SALOMEDS_TextHighlightColorAttribute.ixx,
48394           SALOMEDS_TextHighlightColorAttribute.jxx:
48395
48396         Local Study
48397
48398 2005-03-17 09:11  srn
48399
48400         * src/SALOMEDS/:
48401           Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
48402           Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
48403           Handle_SALOMEDS_DrawableAttribute.hxx,
48404           Handle_SALOMEDS_ExpandableAttribute.hxx,
48405           Handle_SALOMEDS_ExternalFileDef.hxx,
48406           Handle_SALOMEDS_FileType.hxx, Handle_SALOMEDS_IORAttribute.hxx,
48407           Handle_SALOMEDS_LocalIDAttribute.hxx,
48408           Handle_SALOMEDS_OCAFApplication.hxx,
48409           Handle_SALOMEDS_OpenedAttribute.hxx,
48410           Handle_SALOMEDS_PersRefAttribute.hxx,
48411           Handle_SALOMEDS_PixMapAttribute.hxx,
48412           Handle_SALOMEDS_PythonObjectAttribute.hxx,
48413           Handle_SALOMEDS_SelectableAttribute.hxx,
48414           Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
48415           Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
48416           Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
48417           Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
48418           Handle_SALOMEDS_TableOfRealAttribute.hxx,
48419           Handle_SALOMEDS_TableOfStringAttribute.hxx,
48420           Handle_SALOMEDS_TargetAttribute.hxx,
48421           Handle_SALOMEDS_TextColorAttribute.hxx,
48422           Handle_SALOMEDS_TextHighlightColorAttribute.hxx, SALOMEDS.cdl,
48423           SALOMEDS_AttLong_i.cxx, SALOMEDS_AttLong_i.hxx,
48424           SALOMEDS_AttReal_i.cxx, SALOMEDS_AttReal_i.hxx,
48425           README_attributes, SALOMEDS.cxx, SALOMEDS.hxx:
48426
48427         [no log message]
48428
48429 2005-03-17 08:52  srn
48430
48431         * src/SALOMEDS/: Makefile.in, README_attributes, SALOMEDS.cxx,
48432           SALOMEDS.hxx, SALOMEDS_AttributeComment_i.cxx,
48433           SALOMEDS_AttributeComment_i.hxx,
48434           SALOMEDS_AttributeDrawable_i.cxx,
48435           SALOMEDS_AttributeDrawable_i.hxx,
48436           SALOMEDS_AttributeExpandable_i.cxx,
48437           SALOMEDS_AttributeExpandable_i.hxx,
48438           SALOMEDS_AttributeExternalFileDef_i.cxx,
48439           SALOMEDS_AttributeExternalFileDef_i.hxx,
48440           SALOMEDS_AttributeFileType_i.cxx,
48441           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags_i.cxx,
48442           SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic_i.cxx,
48443           SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
48444           SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger_i.cxx,
48445           SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID_i.cxx,
48446           SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName_i.cxx,
48447           SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
48448           SALOMEDS_AttributeOpened_i.hxx,
48449           SALOMEDS_AttributePersistentRef_i.cxx,
48450           SALOMEDS_AttributePersistentRef_i.hxx,
48451           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
48452           SALOMEDS_AttributePythonObject_i.cxx,
48453           SALOMEDS_AttributePythonObject_i.hxx,
48454           SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeReal_i.hxx,
48455           SALOMEDS_AttributeSelectable_i.cxx,
48456           SALOMEDS_AttributeSelectable_i.hxx,
48457           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
48458           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
48459           SALOMEDS_AttributeSequenceOfReal_i.cxx,
48460           SALOMEDS_AttributeSequenceOfReal_i.hxx,
48461           SALOMEDS_AttributeStudyProperties_i.cxx,
48462           SALOMEDS_AttributeStudyProperties_i.hxx,
48463           SALOMEDS_AttributeTableOfInteger_i.cxx,
48464           SALOMEDS_AttributeTableOfInteger_i.hxx,
48465           SALOMEDS_AttributeTableOfReal_i.cxx,
48466           SALOMEDS_AttributeTableOfReal_i.hxx,
48467           SALOMEDS_AttributeTableOfString_i.cxx,
48468           SALOMEDS_AttributeTableOfString_i.hxx,
48469           SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
48470           SALOMEDS_AttributeTextColor_i.cxx,
48471           SALOMEDS_AttributeTextColor_i.hxx,
48472           SALOMEDS_AttributeTextHighlightColor_i.cxx,
48473           SALOMEDS_AttributeTextHighlightColor_i.hxx,
48474           SALOMEDS_AttributeTreeNode_i.cxx,
48475           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.cxx,
48476           SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
48477           SALOMEDS_BasicAttributeFactory.cxx,
48478           SALOMEDS_BasicAttributeFactory.hxx,
48479           SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
48480           SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.cxx,
48481           SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Client.cxx,
48482           SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
48483           SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
48484           SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
48485           SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
48486           SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
48487           SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
48488           SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
48489           SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
48490           SALOMEDS_DataMapOfIntegerString.hxx,
48491           SALOMEDS_DataMapOfIntegerString_0.cxx,
48492           SALOMEDS_DataMapStringLabel.hxx,
48493           SALOMEDS_DataMapStringLabel_0.cxx,
48494           SALOMEDS_DrawableAttribute.cdl, SALOMEDS_DrawableAttribute.cxx,
48495           SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
48496           SALOMEDS_DrawableAttribute.jxx, SALOMEDS_Driver_i.cxx,
48497           SALOMEDS_Driver_i.hxx, SALOMEDS_ExpandableAttribute.cdl,
48498           SALOMEDS_ExpandableAttribute.cxx,
48499           SALOMEDS_ExpandableAttribute.hxx,
48500           SALOMEDS_ExpandableAttribute.ixx,
48501           SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cdl,
48502           SALOMEDS_ExternalFileDef.cxx, SALOMEDS_ExternalFileDef.hxx,
48503           SALOMEDS_ExternalFileDef.ixx, SALOMEDS_ExternalFileDef.jxx,
48504           SALOMEDS_FileType.cdl, SALOMEDS_FileType.cxx,
48505           SALOMEDS_FileType.hxx, SALOMEDS_FileType.ixx,
48506           SALOMEDS_FileType.jxx, SALOMEDS_FlagsAttribute.cxx,
48507           SALOMEDS_FlagsAttribute.hxx, SALOMEDS_GenericAttribute_i.cxx,
48508           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_GraphicAttribute.cxx,
48509           SALOMEDS_GraphicAttribute.hxx, SALOMEDS_IORAttribute.cdl,
48510           SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
48511           SALOMEDS_IORAttribute.ixx, SALOMEDS_IORAttribute.jxx,
48512           SALOMEDS_LocalIDAttribute.cdl, SALOMEDS_LocalIDAttribute.cxx,
48513           SALOMEDS_LocalIDAttribute.hxx, SALOMEDS_LocalIDAttribute.ixx,
48514           SALOMEDS_LocalIDAttribute.jxx, SALOMEDS_OCAFApplication.cdl,
48515           SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
48516           SALOMEDS_OCAFApplication.ixx, SALOMEDS_OCAFApplication.jxx,
48517           SALOMEDS_OpenedAttribute.cdl, SALOMEDS_OpenedAttribute.cxx,
48518           SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
48519           SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cdl,
48520           SALOMEDS_PersRefAttribute.cxx, SALOMEDS_PersRefAttribute.hxx,
48521           SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PersRefAttribute.jxx,
48522           SALOMEDS_PixMapAttribute.cdl, SALOMEDS_PixMapAttribute.cxx,
48523           SALOMEDS_PixMapAttribute.hxx, SALOMEDS_PixMapAttribute.ixx,
48524           SALOMEDS_PixMapAttribute.jxx, SALOMEDS_PythonObjectAttribute.cdl,
48525           SALOMEDS_PythonObjectAttribute.cxx,
48526           SALOMEDS_PythonObjectAttribute.hxx,
48527           SALOMEDS_PythonObjectAttribute.ixx,
48528           SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
48529           SALOMEDS_SComponentIterator_i.cxx,
48530           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
48531           SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
48532           SALOMEDS_SObject_i.hxx, SALOMEDS_SelectableAttribute.cdl,
48533           SALOMEDS_SelectableAttribute.cxx,
48534           SALOMEDS_SelectableAttribute.hxx,
48535           SALOMEDS_SelectableAttribute.ixx,
48536           SALOMEDS_SelectableAttribute.jxx,
48537           SALOMEDS_SequenceOfIntegerAttribute.cdl,
48538           SALOMEDS_SequenceOfIntegerAttribute.cxx,
48539           SALOMEDS_SequenceOfIntegerAttribute.hxx,
48540           SALOMEDS_SequenceOfIntegerAttribute.ixx,
48541           SALOMEDS_SequenceOfIntegerAttribute.jxx,
48542           SALOMEDS_SequenceOfRealAttribute.cdl,
48543           SALOMEDS_SequenceOfRealAttribute.cxx,
48544           SALOMEDS_SequenceOfRealAttribute.hxx,
48545           SALOMEDS_SequenceOfRealAttribute.ixx,
48546           SALOMEDS_SequenceOfRealAttribute.jxx,
48547           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
48548           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
48549           SALOMEDS_StudyPropertiesAttribute.cdl,
48550           SALOMEDS_StudyPropertiesAttribute.cxx,
48551           SALOMEDS_StudyPropertiesAttribute.hxx,
48552           SALOMEDS_StudyPropertiesAttribute.ixx,
48553           SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
48554           SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
48555           SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator_i.cxx,
48556           SALOMEDS_UseCaseIterator_i.hxx:
48557
48558         Local Study
48559
48560 2005-03-17 08:52  smh
48561
48562         * src/SALOMEDS/SALOMEDS_Attributes.hxx:
48563
48564         file SALOMEDS_Attributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
48565
48566 2005-03-17 08:52  smh
48567
48568         * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
48569
48570         file SALOMEDS_Driver_i.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
48571
48572 2005-03-17 08:52  smh
48573
48574         * src/SALOMEDS/SALOMEDS_Driver_i.hxx:
48575
48576         file SALOMEDS_Driver_i.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
48577
48578 2005-03-17 08:45  srn
48579
48580         * src/Container/: Component_i.cxx, SALOME_ComponentPy.py,
48581           SALOME_Component_i.hxx:
48582
48583         Dump Python
48584
48585 2005-03-17 08:35  smh
48586
48587         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx:
48588
48589         file SALOMEDSImpl_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48590
48591 2005-03-17 08:35  smh
48592
48593         * src/SALOMEDSImpl/testDS.cxx:
48594
48595         file testDS.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48596
48597 2005-03-17 08:35  smh
48598
48599         * src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx:
48600
48601         file SALOMEDSImpl_OCAFApplication.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48602
48603 2005-03-17 08:35  smh
48604
48605         * src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx:
48606
48607         file SALOMEDSImpl_OCAFApplication.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48608
48609 2005-03-17 08:35  smh
48610
48611         * src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx:
48612
48613         file SALOMEDSImpl_SComponent.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48614
48615 2005-03-17 08:35  smh
48616
48617         * src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx:
48618
48619         file SALOMEDSImpl_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48620
48621 2005-03-17 08:35  smh
48622
48623         * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx:
48624
48625         file SALOMEDSImpl_SComponentIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48626
48627 2005-03-17 08:35  smh
48628
48629         * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx:
48630
48631         file SALOMEDSImpl_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48632
48633 2005-03-17 08:35  smh
48634
48635         * src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
48636
48637         file SALOMEDSImpl_SObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48638
48639 2005-03-17 08:35  smh
48640
48641         * src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
48642
48643         file SALOMEDSImpl_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48644
48645 2005-03-17 08:35  smh
48646
48647         * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
48648
48649         file SALOMEDSImpl_Study.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48650
48651 2005-03-17 08:35  smh
48652
48653         * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
48654
48655         file SALOMEDSImpl_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48656
48657 2005-03-17 08:35  smh
48658
48659         * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
48660
48661         file SALOMEDSImpl_StudyBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48662
48663 2005-03-17 08:35  smh
48664
48665         * src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx:
48666
48667         file SALOMEDSImpl_StudyHandle.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48668
48669 2005-03-17 08:35  smh
48670
48671         * src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx:
48672
48673         file SALOMEDSImpl_StudyHandle.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48674
48675 2005-03-17 08:35  smh
48676
48677         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
48678
48679         file SALOMEDSImpl_StudyManager.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48680
48681 2005-03-17 08:35  smh
48682
48683         * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
48684
48685         file SALOMEDSImpl_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48686
48687 2005-03-17 08:35  smh
48688
48689         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
48690
48691         file SALOMEDSImpl_Tool.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48692
48693 2005-03-17 08:35  smh
48694
48695         * src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
48696
48697         file SALOMEDSImpl_Tool.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48698
48699 2005-03-17 08:35  smh
48700
48701         * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
48702
48703         file SALOMEDSImpl_UseCaseBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48704
48705 2005-03-17 08:35  smh
48706
48707         * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx:
48708
48709         file SALOMEDSImpl_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48710
48711 2005-03-17 08:35  smh
48712
48713         * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx:
48714
48715         file SALOMEDSImpl_UseCaseIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48716
48717 2005-03-17 08:35  smh
48718
48719         * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx:
48720
48721         file SALOMEDSImpl_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48722
48723 2005-03-17 08:35  smh
48724
48725         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx:
48726
48727         file SALOMEDSImpl_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48728
48729 2005-03-17 08:35  smh
48730
48731         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx:
48732
48733         file SALOMEDSImpl_AttributeSequenceOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48734
48735 2005-03-17 08:35  smh
48736
48737         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx:
48738
48739         file SALOMEDSImpl_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48740
48741 2005-03-17 08:35  smh
48742
48743         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx:
48744
48745         file SALOMEDSImpl_AttributeStudyProperties.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48746
48747 2005-03-17 08:35  smh
48748
48749         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx:
48750
48751         file SALOMEDSImpl_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48752
48753 2005-03-17 08:35  smh
48754
48755         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx:
48756
48757         file SALOMEDSImpl_AttributeTableOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48758
48759 2005-03-17 08:35  smh
48760
48761         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx:
48762
48763         file SALOMEDSImpl_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48764
48765 2005-03-17 08:35  smh
48766
48767         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx:
48768
48769         file SALOMEDSImpl_AttributeTableOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48770
48771 2005-03-17 08:35  smh
48772
48773         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx:
48774
48775         file SALOMEDSImpl_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48776
48777 2005-03-17 08:35  smh
48778
48779         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
48780
48781         file SALOMEDSImpl_AttributeTableOfString.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48782
48783 2005-03-17 08:35  smh
48784
48785         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx:
48786
48787         file SALOMEDSImpl_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48788
48789 2005-03-17 08:35  smh
48790
48791         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx:
48792
48793         file SALOMEDSImpl_AttributeTarget.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48794
48795 2005-03-17 08:35  smh
48796
48797         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx:
48798
48799         file SALOMEDSImpl_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48800
48801 2005-03-17 08:35  smh
48802
48803         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx:
48804
48805         file SALOMEDSImpl_AttributeTextColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48806
48807 2005-03-17 08:35  smh
48808
48809         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx:
48810
48811         file SALOMEDSImpl_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48812
48813 2005-03-17 08:35  smh
48814
48815         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx:
48816
48817         file SALOMEDSImpl_AttributeTextHighlightColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48818
48819 2005-03-17 08:35  smh
48820
48821         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx:
48822
48823         file SALOMEDSImpl_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48824
48825 2005-03-17 08:35  smh
48826
48827         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx:
48828
48829         file SALOMEDSImpl_AttributeTreeNode.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48830
48831 2005-03-17 08:35  smh
48832
48833         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx:
48834
48835         file SALOMEDSImpl_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48836
48837 2005-03-17 08:35  smh
48838
48839         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx:
48840
48841         file SALOMEDSImpl_AttributeUserID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48842
48843 2005-03-17 08:35  smh
48844
48845         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx:
48846
48847         file SALOMEDSImpl_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48848
48849 2005-03-17 08:35  smh
48850
48851         * src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx:
48852
48853         file SALOMEDSImpl_Attributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48854
48855 2005-03-17 08:35  smh
48856
48857         * src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx:
48858
48859         file SALOMEDSImpl_Callback.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48860
48861 2005-03-17 08:35  smh
48862
48863         * src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx:
48864
48865         file SALOMEDSImpl_Callback.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48866
48867 2005-03-17 08:35  smh
48868
48869         * src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx:
48870
48871         file SALOMEDSImpl_ChildNodeIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48872
48873 2005-03-17 08:35  smh
48874
48875         * src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx:
48876
48877         file SALOMEDSImpl_ChildNodeIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48878
48879 2005-03-17 08:35  smh
48880
48881         * src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx:
48882
48883         file SALOMEDSImpl_Driver.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48884
48885 2005-03-17 08:35  smh
48886
48887         * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx:
48888
48889         file SALOMEDSImpl_GenericAttribute.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
48890
48891 2005-03-17 08:35  smh
48892
48893         * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx:
48894
48895         file SALOMEDSImpl_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48896
48897 2005-03-17 08:35  srn
48898
48899         * src/SALOMEDSImpl/:
48900           Handle_SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
48901           Handle_SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
48902           Makefile.in, SALOMEDSImpl_AttributeComment.cxx,
48903           SALOMEDSImpl_AttributeComment.hxx,
48904           SALOMEDSImpl_AttributeDrawable.cxx,
48905           SALOMEDSImpl_AttributeDrawable.hxx,
48906           SALOMEDSImpl_AttributeExpandable.cxx,
48907           SALOMEDSImpl_AttributeExpandable.hxx,
48908           SALOMEDSImpl_AttributeExternalFileDef.cxx,
48909           SALOMEDSImpl_AttributeExternalFileDef.hxx,
48910           SALOMEDSImpl_AttributeFileType.cxx,
48911           SALOMEDSImpl_AttributeFileType.hxx,
48912           SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
48913           SALOMEDSImpl_AttributeGraphic.cxx,
48914           SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
48915           SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
48916           SALOMEDSImpl_AttributeInteger.hxx,
48917           SALOMEDSImpl_AttributeLocalID.cxx,
48918           SALOMEDSImpl_AttributeLocalID.hxx,
48919           SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
48920           SALOMEDSImpl_AttributeOpened.cxx,
48921           SALOMEDSImpl_AttributeOpened.hxx,
48922           SALOMEDSImpl_AttributePersistentRef.cxx,
48923           SALOMEDSImpl_AttributePersistentRef.hxx,
48924           SALOMEDSImpl_AttributePixMap.cxx,
48925           SALOMEDSImpl_AttributePixMap.hxx,
48926           SALOMEDSImpl_AttributePythonObject.cxx,
48927           SALOMEDSImpl_AttributePythonObject.hxx,
48928           SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
48929           SALOMEDSImpl_AttributeReference.cxx,
48930           SALOMEDSImpl_AttributeReference.hxx,
48931           SALOMEDSImpl_AttributeSelectable.cxx,
48932           SALOMEDSImpl_AttributeSelectable.hxx,
48933           SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
48934           SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
48935           SALOMEDSImpl_AttributeSequenceOfReal.cxx,
48936           SALOMEDSImpl_AttributeSequenceOfReal.hxx,
48937           SALOMEDSImpl_AttributeStudyProperties.cxx,
48938           SALOMEDSImpl_AttributeStudyProperties.hxx,
48939           SALOMEDSImpl_AttributeTableOfInteger.cxx,
48940           SALOMEDSImpl_AttributeTableOfInteger.hxx,
48941           SALOMEDSImpl_AttributeTableOfReal.cxx,
48942           SALOMEDSImpl_AttributeTableOfReal.hxx,
48943           SALOMEDSImpl_AttributeTableOfString.cxx,
48944           SALOMEDSImpl_AttributeTableOfString.hxx,
48945           SALOMEDSImpl_AttributeTarget.cxx,
48946           SALOMEDSImpl_AttributeTarget.hxx,
48947           SALOMEDSImpl_AttributeTextColor.cxx,
48948           SALOMEDSImpl_AttributeTextColor.hxx,
48949           SALOMEDSImpl_AttributeTextHighlightColor.cxx,
48950           SALOMEDSImpl_AttributeTextHighlightColor.hxx,
48951           SALOMEDSImpl_AttributeTreeNode.cxx,
48952           SALOMEDSImpl_AttributeTreeNode.hxx,
48953           SALOMEDSImpl_AttributeUserID.cxx,
48954           SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
48955           SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
48956           SALOMEDSImpl_ChildNodeIterator.cxx,
48957           SALOMEDSImpl_ChildNodeIterator.hxx,
48958           SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString.hxx,
48959           SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
48960           SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel.hxx,
48961           SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel_0.cxx,
48962           SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
48963           SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString_0.cxx,
48964           SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
48965           SALOMEDSImpl_DataMapNodeOfDataMapStringLabel_0.cxx,
48966           SALOMEDSImpl_DataMapOfIntegerString.hxx,
48967           SALOMEDSImpl_DataMapOfIntegerString_0.cxx,
48968           SALOMEDSImpl_DataMapStringLabel.hxx,
48969           SALOMEDSImpl_DataMapStringLabel_0.cxx, SALOMEDSImpl_Driver.hxx,
48970           SALOMEDSImpl_GenericAttribute.cxx,
48971           SALOMEDSImpl_GenericAttribute.hxx,
48972           SALOMEDSImpl_OCAFApplication.cxx,
48973           SALOMEDSImpl_OCAFApplication.hxx, SALOMEDSImpl_SComponent.cxx,
48974           SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
48975           SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
48976           SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
48977           SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
48978           SALOMEDSImpl_StudyHandle.cxx, SALOMEDSImpl_StudyHandle.hxx,
48979           SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_StudyManager.hxx,
48980           SALOMEDSImpl_Tool.cxx, SALOMEDSImpl_UseCaseBuilder.cxx,
48981           SALOMEDSImpl_UseCaseBuilder.hxx,
48982           SALOMEDSImpl_UseCaseIterator.cxx,
48983           SALOMEDSImpl_UseCaseIterator.hxx, SALOMEDSImpl_StudyBuilder.hxx,
48984           SALOMEDSImpl_Tool.hxx, testDS.cxx:
48985
48986         Local Study
48987
48988 2005-03-17 08:35  smh
48989
48990         * src/SALOMEDSImpl/Makefile.in:
48991
48992         file Makefile.in was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48993
48994 2005-03-17 08:35  smh
48995
48996         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx:
48997
48998         file SALOMEDSImpl_AttributeComment.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
48999
49000 2005-03-17 08:35  smh
49001
49002         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx:
49003
49004         file SALOMEDSImpl_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49005
49006 2005-03-17 08:35  smh
49007
49008         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx:
49009
49010         file SALOMEDSImpl_AttributeDrawable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49011
49012 2005-03-17 08:35  smh
49013
49014         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx:
49015
49016         file SALOMEDSImpl_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49017
49018 2005-03-17 08:35  smh
49019
49020         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx:
49021
49022         file SALOMEDSImpl_AttributeExpandable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49023
49024 2005-03-17 08:35  smh
49025
49026         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx:
49027
49028         file SALOMEDSImpl_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49029
49030 2005-03-17 08:35  smh
49031
49032         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx:
49033
49034         file SALOMEDSImpl_AttributeExternalFileDef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49035
49036 2005-03-17 08:35  smh
49037
49038         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx:
49039
49040         file SALOMEDSImpl_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49041
49042 2005-03-17 08:35  smh
49043
49044         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx:
49045
49046         file SALOMEDSImpl_AttributeFileType.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49047
49048 2005-03-17 08:35  smh
49049
49050         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx:
49051
49052         file SALOMEDSImpl_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49053
49054 2005-03-17 08:35  smh
49055
49056         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx:
49057
49058         file SALOMEDSImpl_AttributeFlags.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49059
49060 2005-03-17 08:35  smh
49061
49062         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx:
49063
49064         file SALOMEDSImpl_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49065
49066 2005-03-17 08:35  smh
49067
49068         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx:
49069
49070         file SALOMEDSImpl_AttributeGraphic.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49071
49072 2005-03-17 08:35  smh
49073
49074         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx:
49075
49076         file SALOMEDSImpl_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49077
49078 2005-03-17 08:35  smh
49079
49080         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
49081
49082         file SALOMEDSImpl_AttributeIOR.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49083
49084 2005-03-17 08:35  smh
49085
49086         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx:
49087
49088         file SALOMEDSImpl_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49089
49090 2005-03-17 08:35  smh
49091
49092         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx:
49093
49094         file SALOMEDSImpl_AttributeInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49095
49096 2005-03-17 08:35  smh
49097
49098         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx:
49099
49100         file SALOMEDSImpl_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49101
49102 2005-03-17 08:35  smh
49103
49104         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx:
49105
49106         file SALOMEDSImpl_AttributeLocalID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49107
49108 2005-03-17 08:35  smh
49109
49110         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx:
49111
49112         file SALOMEDSImpl_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49113
49114 2005-03-17 08:35  smh
49115
49116         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx:
49117
49118         file SALOMEDSImpl_AttributeName.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49119
49120 2005-03-17 08:35  smh
49121
49122         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx:
49123
49124         file SALOMEDSImpl_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49125
49126 2005-03-17 08:35  smh
49127
49128         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx:
49129
49130         file SALOMEDSImpl_AttributeOpened.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49131
49132 2005-03-17 08:35  smh
49133
49134         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx:
49135
49136         file SALOMEDSImpl_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49137
49138 2005-03-17 08:35  smh
49139
49140         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx:
49141
49142         file SALOMEDSImpl_AttributePersistentRef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49143
49144 2005-03-17 08:35  smh
49145
49146         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx:
49147
49148         file SALOMEDSImpl_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49149
49150 2005-03-17 08:35  smh
49151
49152         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx:
49153
49154         file SALOMEDSImpl_AttributePixMap.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49155
49156 2005-03-17 08:35  smh
49157
49158         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx:
49159
49160         file SALOMEDSImpl_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49161
49162 2005-03-17 08:35  smh
49163
49164         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx:
49165
49166         file SALOMEDSImpl_AttributePythonObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49167
49168 2005-03-17 08:35  smh
49169
49170         * src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx:
49171
49172         file SALOMEDSImpl_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49173
49174 2005-03-17 08:35  smh
49175
49176         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx:
49177
49178         file SALOMEDSImpl_AttributeReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49179
49180 2005-03-17 08:35  smh
49181
49182         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx:
49183
49184         file SALOMEDSImpl_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49185
49186 2005-03-17 08:35  smh
49187
49188         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx:
49189
49190         file SALOMEDSImpl_AttributeReference.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49191
49192 2005-03-17 08:35  smh
49193
49194         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx:
49195
49196         file SALOMEDSImpl_AttributeReference.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49197
49198 2005-03-17 08:35  smh
49199
49200         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx:
49201
49202         file SALOMEDSImpl_AttributeSelectable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49203
49204 2005-03-17 08:35  smh
49205
49206         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx:
49207
49208         file SALOMEDSImpl_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
49209
49210 2005-03-17 08:35  smh
49211
49212         * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx:
49213
49214         file SALOMEDSImpl_AttributeSequenceOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
49215
49216 2005-03-17 08:27  smh
49217
49218         * src/SALOMEDSClient/Makefile.in:
49219
49220         file Makefile.in was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
49221
49222 2005-03-17 08:27  smh
49223
49224         * src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx:
49225
49226         file SALOMEDSClient_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
49227
49228 2005-03-17 08:27  smh
49229
49230         * src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx:
49231
49232         file SALOMEDSClient_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
49233
49234 2005-03-17 08:27  smh
49235
49236         * src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
49237
49238         file SALOMEDSClient_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
49239
49240 2005-03-17 08:26  srn
49241
49242         * src/: Makefile.in, SALOMEDSClient/Makefile.in,
49243           SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
49244           SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
49245           SALOMEDSClient/SALOMEDSClient_SObject.hxx:
49246
49247         Local Study
49248
49249 2005-03-17 08:25  srn
49250
49251         * idl/: SALOMEDS.idl, SALOME_Component.idl:
49252
49253         Dump Python
49254
49255 2005-03-16 08:03  ageay
49256
49257         * src/Utils/Utils_CorbaException.hxx:
49258
49259         Merge from branch CCRT_Port_V220.
49260
49261 2005-03-16 08:00  ageay
49262
49263         * src/Container/Container_i.cxx, src/Container/Makefile.in,
49264           src/Container/SALOME_ContainerManagerServer.cxx, src/Makefile.in,
49265           bin/runSalome.py, salome_adm/unix/make_commence.in,
49266           salome_adm/unix/config_files/check_cas.m4,
49267           src/ResourcesManager/SALOME_ResourcesManager.cxx,
49268           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
49269           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
49270           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
49271           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx:
49272
49273         Merge from branch CCRT_Port_V220.
49274
49275 2005-03-16 06:48  ageay
49276
49277         * bin/runSalome.py:
49278
49279         Merge from branch CCRT_Port_V220.
49280
49281 2005-03-16 06:44  ageay
49282
49283         * src/: ResourcesManager/SALOME_ResourcesManager.cxx,
49284           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
49285           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
49286           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
49287           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
49288           Utils/Utils_CorbaException.hxx:
49289
49290         Merge from branch CCRT_Port_V220.
49291
49292 2005-03-16 06:40  ageay
49293
49294         * src/Container/Container_i.cxx, src/Container/Makefile.in,
49295           src/Container/SALOME_ContainerManagerServer.cxx, src/Makefile.in,
49296           salome_adm/unix/make_commence.in,
49297           salome_adm/unix/config_files/check_cas.m4:
49298
49299         Merge from branch CCRT_Port_V220.
49300
49301 2005-03-14 16:21  prascle
49302
49303         * salome_adm/unix/: make_commence.in, config_files/check_pyqt.m4,
49304           config_files/check_qt.m4, config_files/check_sip.m4:
49305
49306         PR: SARGE port...
49307
49308 2005-03-08 07:26  ageay
49309
49310         * src/Container/SALOME_ContainerManager.cxx:
49311
49312         This servant must be invoked remotely sequentially to prevent that concurrent invocation of lcc.FindOrLoadComponent needed during containers launching corrupt data.
49313
49314 2005-03-08 07:10  ageay
49315
49316         * src/Container/SALOME_ContainerManager.cxx:
49317
49318         This servant must be invoked remotely sequentially to prevent that concurrent invocation of lcc.FindOrLoadComponent needed during containers launching corrupt data.
49319
49320 2005-03-07 13:10  prascle
49321
49322         * bin/orbmodule.py, bin/runSalome.py, bin/salomeConsole.py,
49323           salome_adm/unix/config_files/check_pyqt.m4,
49324           salome_adm/unix/config_files/check_qt.m4,
49325           salome_adm/unix/config_files/check_qwt.m4,
49326           salome_adm/unix/config_files/check_sip.m4,
49327           src/Container/SALOME_Container.cxx,
49328           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
49329           src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
49330           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
49331           src/NamingService/NamingService_WaitForServerReadiness.cxx,
49332           src/NamingService/SALOME_NamingService.cxx,
49333           src/NamingService/SALOME_NamingServicePy.py,
49334           src/Notification/NOTIFICATION.cxx,
49335           src/Registry/SALOME_Registry_Server.cxx,
49336           src/SALOMEDS/SALOMEDS_Server.cxx,
49337           src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
49338           src/TestContainer/TestContainer.cxx:
49339
49340         port on debian sarge, first step
49341
49342 2005-03-01 15:07  vsr
49343
49344         * resources/KERNELCatalog.xml:
49345
49346         Update version number : 2.2.1
49347
49348 2005-03-01 15:02  vsr
49349
49350         * INSTALL, bin/VERSION:
49351
49352         Update version number : 2.2.1
49353
49354 2005-02-28 16:14  san
49355
49356         * src/: Utils/Makefile.in, Utils/Utils_Mutex.cxx,
49357           Utils/Utils_Mutex.hxx, SALOMEDS/Makefile.in,
49358           SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
49359           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
49360           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
49361           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
49362           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
49363           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
49364           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
49365           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
49366           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
49367           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
49368           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
49369           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
49370           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
49371           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
49372           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
49373           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
49374           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
49375           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
49376           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
49377           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
49378           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
49379           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
49380           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
49381           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
49382           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
49383           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
49384           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
49385           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
49386           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
49387           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
49388           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
49389           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
49390           SALOMEDS/SALOMEDS_SComponent_i.cxx,
49391           SALOMEDS/SALOMEDS_SObject_i.cxx,
49392           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
49393           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
49394           SALOMEDS/SALOMEDS_Study_i.cxx:
49395
49396         PAL8065
49397
49398 2005-02-28 16:07  san
49399
49400         * src/SALOMEDS/: Makefile.in, SALOMEDS.cxx, SALOMEDS.hxx,
49401           SALOMEDS_AttributeComment_i.cxx,
49402           SALOMEDS_AttributeDrawable_i.cxx,
49403           SALOMEDS_AttributeExpandable_i.cxx,
49404           SALOMEDS_AttributeExternalFileDef_i.cxx,
49405           SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
49406           SALOMEDS_AttributeGraphic_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
49407           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
49408           SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
49409           SALOMEDS_AttributePersistentRef_i.cxx,
49410           SALOMEDS_AttributePixMap_i.cxx,
49411           SALOMEDS_AttributePythonObject_i.cxx,
49412           SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
49413           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
49414           SALOMEDS_AttributeSequenceOfReal_i.cxx,
49415           SALOMEDS_AttributeStudyProperties_i.cxx,
49416           SALOMEDS_AttributeTableOfInteger_i.cxx,
49417           SALOMEDS_AttributeTableOfReal_i.cxx,
49418           SALOMEDS_AttributeTableOfString_i.cxx,
49419           SALOMEDS_AttributeTarget_i.cxx,
49420           SALOMEDS_AttributeTextColor_i.cxx,
49421           SALOMEDS_AttributeTextHighlightColor_i.cxx,
49422           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
49423           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_GenericAttribute_i.cxx,
49424           SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
49425           SALOMEDS_SObject_i.cxx, SALOMEDS_StudyBuilder_i.cxx,
49426           SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
49427
49428         PAL8065
49429
49430 2005-02-28 16:07  smh
49431
49432         * src/SALOMEDS/SALOMEDS.cxx:
49433
49434         file SALOMEDS.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
49435
49436 2005-02-28 16:07  smh
49437
49438         * src/SALOMEDS/SALOMEDS.hxx:
49439
49440         file SALOMEDS.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
49441
49442 2005-02-28 16:03  san
49443
49444         * src/Utils/: Makefile.in, Utils_Mutex.cxx, Utils_Mutex.hxx:
49445
49446         PAL8065
49447
49448 2005-02-28 16:03  smh
49449
49450         * src/Utils/Utils_Mutex.cxx:
49451
49452         file Utils_Mutex.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:42:22 +0000
49453
49454 2005-02-28 16:03  smh
49455
49456         * src/Utils/Utils_Mutex.hxx:
49457
49458         file Utils_Mutex.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:42:22 +0000
49459
49460 2005-02-25 15:41  ageay
49461
49462         * src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx:
49463
49464         [no log message]
49465
49466 2005-02-25 15:38  ageay
49467
49468         * src/: ResourcesManager/SALOME_ResourcesManager.cxx,
49469           Utils/Utils_CorbaException.hxx:
49470
49471         [no log message]
49472
49473 2005-02-25 15:37  ageay
49474
49475         * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger_i.cxx,
49476           SALOMEDS_AttributeTableOfReal_i.cxx,
49477           SALOMEDS_AttributeTableOfString_i.cxx:
49478
49479         Useless includes of CASCADE includes.
49480
49481 2005-02-25 15:37  ageay
49482
49483         * src/Makefile.in:
49484
49485         MEDWrapper added in withoutihm subdirs for MED module.
49486
49487 2005-02-25 15:36  ageay
49488
49489         * src/Container/Container_i.cxx:
49490
49491         sizeof(CORBA::Long) != sizeof(long) sur le CCRT.
49492
49493 2005-02-25 15:35  ageay
49494
49495         * src/Container/SALOME_ContainerManagerServer.cxx:
49496
49497         Server only present for ContainerManager servant.
49498
49499 2005-02-25 15:34  ageay
49500
49501         * salome_adm/unix/config_files/check_cas.m4:
49502
49503         NO_CXX_EXCEPTION flag deactivated on CCRT to be compatible with CASCADE includes.
49504
49505 2005-02-25 15:33  ageay
49506
49507         * salome_adm/unix/make_commence.in, src/Container/Makefile.in:
49508
49509         [no log message]
49510
49511 2005-02-25 15:32  ageay
49512
49513         * bin/runSalome.py:
49514
49515         Launch a server only for ContainerManager to launch on CCRT.
49516
49517 2005-02-11 14:48  prascle
49518
49519         * src/LifeCycleCORBA/LifeCycleCORBA.py:
49520
49521         PR: from E.Adam, Engines import sometimes incomplete...
49522
49523 2005-02-11 09:47  prascle
49524
49525         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
49526
49527         PR: from A. Geay
49528
49529 2005-02-10 16:44  dutka
49530
49531         * salome_adm/unix/config_files/install-sh:
49532
49533         IDM : Batch sur CCRT (Dev. A. Geay)
49534
49535 2005-02-10 16:38  dutka
49536
49537         * configure.in.base, src/Makefile.in:
49538
49539         IDM : Batch sur CCRT
49540
49541 2005-02-10 14:04  prascle
49542
49543         * src/Container/SALOME_ContainerPy.py:
49544
49545         PR: add shutdown method (A. Geay)
49546
49547 2005-02-10 14:02  prascle
49548
49549         * bin/orbmodule.py:
49550
49551         PR: wait a little more for slow systems
49552
49553 2005-02-07 08:03  prascle
49554
49555         * src/Container/: Container_i.cxx, SALOME_Container.cxx,
49556           SALOME_Container_i.hxx:
49557
49558         PR: Modif A.Geay, Shutdown container when servant alone
49559
49560 2005-02-03 16:06  vsr
49561
49562         * resources/: Application-About.png, Application-Splash.png:
49563
49564         Improve SALOME images
49565
49566 2005-02-03 13:50  rahuel
49567
49568         * src/Container/Container_i.cxx:
49569
49570         sigaction was called with a mask of signals (SIGINT | SIGUSR1)
49571         But sigaction must be called with only one signal code.
49572         So there is one call for SIGINT and an other one for SIGUSR1
49573
49574 2005-02-03 09:12  mpv
49575
49576         * src/SALOMEDS/: SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx:
49577
49578         MPV:
49579         Fix for bug PAL7956:
49580         Don not chechLock on CORBA attribute creation (without OCAF document modifications)
49581
49582 2005-02-01 12:25  mpv
49583
49584         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
49585
49586         MPV:
49587         Correct creation of the study file-paths for multi-file saving.
49588         Fix for bug PAL7827
49589
49590 2005-01-31 10:57  prascle
49591
49592         * src/LifeCycleCORBA/Launchers.py:
49593
49594         PR: traceback is confusing, replaced by a warning, because it's OK to continue
49595
49596 2005-01-31 10:55  prascle
49597
49598         * bin/runSalome.py:
49599
49600         PR: bug 7930: to work with $KERNEL_ROOT_DIR/bin/salome/runSalome --interp=1
49601
49602 2005-01-31 09:13  prascle
49603
49604         * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
49605
49606         PR: from A. Geay, RedHat 9.0 compatibility
49607
49608 2005-01-31 08:45  san
49609
49610         * bin/runSalome.py:
49611
49612         PAL7930
49613
49614 2005-01-28 13:51  apo
49615
49616         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49617
49618         [Bug PAL7900] g++ 3.3 compatibility
49619           There are 3 other occurences of ::data_type in the same file.
49620
49621 2005-01-28 10:54  prascle
49622
49623         * doc/salome/: kernel_resources.pdf, kernel_resources.ps:
49624
49625         PR: update documentation
49626
49627 2005-01-28 06:49  apo
49628
49629         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49630
49631         Fix on [Bug PAL7900] g++ 3.3 compatibility
49632
49633 2005-01-27 20:35  prascle
49634
49635         * README, doc/configuration_examples/example_prerequis.sh:
49636
49637         PR: some more install documentation.
49638
49639 2005-01-27 19:43  prascle
49640
49641         * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
49642           src/MPIContainer/MPIContainer_i.hxx,
49643           src/MPIContainer/SALOME_MPIContainer.cxx,
49644           src/TestMPIContainer/Makefile.in,
49645           src/TestMPIContainer/TestMPIComponentEngine.cxx,
49646           src/TestMPIContainer/TestMPIContainer.cxx:
49647
49648         PR: merge some files (MPI) from debug_V2_1_0a2
49649
49650 2005-01-27 18:59  prascle
49651
49652         * README:
49653
49654         PR: a first README, to be completed
49655
49656 2005-01-27 18:47  prascle
49657
49658         * bin/: launchConfigureParser.py, runSalome.py:
49659
49660         PR: merge from tag mergeto_HEAD_26Jan05
49661
49662 2005-01-27 15:04  prascle
49663
49664         * Makefile.in, bin/envSalome.py, bin/launchConfigureParser.py,
49665           bin/runSalome.py, bin/salomeConsole.py, idl/SALOME_Component.idl,
49666           resources/KERNELCatalog.xml, salome_adm/unix/make_commence.in,
49667           salome_adm/unix/config_files/check_sip.m4,
49668           src/Container/Container_i.cxx,
49669           src/Container/SALOME_ContainerPy.py,
49670           src/Container/SALOME_Container_i.hxx,
49671           src/LifeCycleCORBA/Launchers.cxx,
49672           src/LifeCycleCORBA/Launchers.hxx,
49673           src/LifeCycleCORBA/Launchers.py,
49674           src/LifeCycleCORBA/LifeCycleCORBA.py,
49675           src/LifeCycleCORBA/Makefile.in,
49676           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49677           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
49678           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
49679           src/Logger/SALOME_Trace.hxx,
49680           src/NamingService/SALOME_NamingService.cxx,
49681           src/NamingService/SALOME_NamingService.hxx,
49682           src/Utils/Utils_Identity.py:
49683
49684         PR: merge from tag mergeto_HEAD_25Jan05
49685
49686 2005-01-27 12:37  apo
49687
49688         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49689
49690         Fix on Bug PAL7838
49691                 STUD-006regress: The UseCase Browser contents isn't restored after "Save - Open"
49692
49693 2005-01-27 07:45  apo
49694
49695         * src/SALOMEDS/: SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
49696           SALOMEDS_StudyManager_i.cxx:
49697
49698         Fix on [Bug PAL7840] It's impossible to create a copy of imported .med file in the
49699
49700 2005-01-26 12:17  mpv
49701
49702         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
49703
49704         MPV
49705         Debug saving study:
49706          SALOMEDS creates LifeCycleCORBA with not root ("/Study") current directory of naming context. Set it to "/" in LifeCycleCORBA constructor before "ContainerManager" usage.
49707
49708 2005-01-26 07:47  prascle
49709
49710         * INSTALL, Makefile.in, bin/VERSION, bin/orbmodule.py,
49711           bin/runSalome.py, doc/salome/tui/Makefile.in, idl/Makefile.in,
49712           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
49713           resources/CatalogResources.xml, resources/KERNELCatalog.xml,
49714           salome_adm/unix/make_commence.in,
49715           salome_adm/unix/make_conclude.in, src/Makefile.in,
49716           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
49717           src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
49718           src/Container/SALOME_Container.cxx,
49719           src/Container/SALOME_ContainerManager.cxx,
49720           src/Container/SALOME_ContainerManager.hxx,
49721           src/Container/SALOME_Container_i.hxx,
49722           src/LifeCycleCORBA/LifeCycleCORBA.py,
49723           src/LifeCycleCORBA/Makefile.in,
49724           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49725           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
49726           src/Logger/SALOME_Logger_Server.cxx,
49727           src/MPIContainer/MPIContainer_i.cxx,
49728           src/ModuleCatalog/Makefile.in,
49729           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
49730           src/NamingService/NamingService_WaitForServerReadiness.cxx,
49731           src/NamingService/SALOME_NamingService.cxx,
49732           src/NamingService/SALOME_NamingService.hxx,
49733           src/Registry/Makefile.in, src/ResourcesManager/Makefile.in,
49734           src/ResourcesManager/SALOME_LoadRateManager.cxx,
49735           src/ResourcesManager/SALOME_LoadRateManager.hxx,
49736           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
49737           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
49738           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
49739           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
49740           src/ResourcesManager/SALOME_ResourcesManager.cxx,
49741           src/ResourcesManager/SALOME_ResourcesManager.hxx,
49742           src/SALOMEDS/Makefile.in,
49743           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
49744           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
49745           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
49746           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
49747           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
49748           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
49749           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
49750           src/SALOMEDS/SALOMEDS_Server.cxx,
49751           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
49752           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
49753           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
49754           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
49755           src/SALOMEDS/SALOMEDS_Study_i.cxx,
49756           src/SALOMEDS/SALOMEDS_Study_i.hxx,
49757           src/SALOMELocalTrace/Makefile.in, src/TestContainer/Makefile.in:
49758
49759         PR: merge from tag mergefrom_HEAD_24Jan05 + corrections
49760
49761 2005-01-25 10:44  prascle
49762
49763         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49764           ResourcesManager/SALOME_ResourcesManager.cxx:
49765
49766         PR: patches from A.Geay
49767
49768 2005-01-25 06:58  prascle
49769
49770         * src/: Container/Makefile.in, LifeCycleCORBA/Makefile.in,
49771           ModuleCatalog/Makefile.in, Registry/Makefile.in,
49772           SALOMEDS/Makefile.in, TestContainer/Makefile.in:
49773
49774         PR: binaries generation : remove duplicate rules
49775
49776 2005-01-24 17:27  prascle
49777
49778         * salome_adm/unix/make_commence.in,
49779           salome_adm/unix/make_conclude.in, src/Container/Makefile.in,
49780           src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
49781           src/Registry/Makefile.in, src/SALOMEDS/Makefile.in,
49782           src/SALOMELocalTrace/Makefile.in, src/TestContainer/Makefile.in:
49783
49784         PR: modify makefiles to separate rules for libraries and binaries.
49785
49786 2005-01-24 17:25  prascle
49787
49788         * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
49789           SALOME_LifeCycleCORBA.hxx:
49790
49791         PR: add FindContainer method for supervisor (non regression)
49792
49793 2005-01-24 14:08  caremoli
49794
49795         * bin/envSalome.py, bin/salomeConsole.py,
49796           resources/KERNELCatalog.xml, src/LifeCycleCORBA/Launchers.cxx,
49797           src/LifeCycleCORBA/Launchers.hxx,
49798           src/LifeCycleCORBA/Launchers.py,
49799           src/LifeCycleCORBA/LifeCycleCORBA.py,
49800           src/LifeCycleCORBA/Makefile.in,
49801           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49802           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
49803           src/NamingService/SALOME_NamingService.cxx,
49804           src/NamingService/SALOME_NamingService.hxx:
49805
49806         CCAR: Update of start container modifications.
49807         Adding files forgotten in previous commit
49808         Adding C++ functionnality (wrap of python module)
49809
49810 2005-01-24 08:49  prascle
49811
49812         * bin/orbmodule.py, src/Container/SALOME_Container.cxx,
49813           src/Logger/SALOME_Logger_Server.cxx,
49814           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
49815           src/NamingService/NamingService_WaitForServerReadiness.cxx,
49816           src/SALOMEDS/SALOMEDS_Server.cxx:
49817
49818         PR: relax start timers everywhere to 40x500ms = 20s
49819
49820 2005-01-24 07:26  prascle
49821
49822         * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
49823           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49824           Container/SALOME_ContainerManager.cxx:
49825
49826         PR: debug for save study, filters not known components (Interface Applicative)
49827
49828 2005-01-21 17:58  caremoli
49829
49830         * Makefile.in, bin/launchConfigureParser.py, bin/runSalome.py,
49831           idl/SALOME_Component.idl, src/Container/Container_i.cxx,
49832           src/Container/SALOME_ContainerPy.py,
49833           src/Container/SALOME_Container_i.hxx,
49834           src/LifeCycleCORBA/LifeCycleCORBA.py,
49835           src/LifeCycleCORBA/Makefile.in, src/Utils/Utils_Identity.py:
49836
49837         CCAR: Modifications for container launching as is, ported from 2.1 to 2.2
49838         Need other files not in CVS to work (work in progress).
49839
49840 2005-01-21 15:09  caremoli
49841
49842         * salome_adm/unix/make_commence.in,
49843           salome_adm/unix/config_files/check_boost.m4,
49844           salome_adm/unix/config_files/check_sip.m4,
49845           src/Logger/SALOME_Trace.hxx, src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49846
49847         CCAR: Modifiactions to make KERNEL compile with g++ 3.3 (standard ISO)
49848         and to make Salome able to use PyQt 3.11 (+sip 3.10.1) as a prerequisite.
49849         Modification to check_boost is not mandatory
49850         Modification to QAD_FileDlg.h is already in the main trunk.
49851
49852 2005-01-21 15:05  prascle
49853
49854         * Makefile.in, bin/runSalome.py, doc/salome/tui/Makefile.in,
49855           idl/Makefile.in, idl/SALOME_Component.idl,
49856           idl/SALOME_ContainerManager.idl, resources/CatalogResources.xml,
49857           src/Makefile.in, src/Container/Component_i.cxx,
49858           src/Container/Container_i.cxx, src/Container/Makefile.in,
49859           src/Container/SALOME_Component_i.hxx,
49860           src/Container/SALOME_Container.cxx,
49861           src/Container/SALOME_ContainerManager.cxx,
49862           src/Container/SALOME_ContainerManager.hxx,
49863           src/Container/SALOME_Container_i.hxx,
49864           src/LifeCycleCORBA/LifeCycleCORBA.py,
49865           src/LifeCycleCORBA/Makefile.in,
49866           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
49867           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
49868           src/MPIContainer/MPIContainer_i.cxx,
49869           src/NamingService/SALOME_NamingService.cxx,
49870           src/NamingService/SALOME_NamingService.hxx,
49871           src/ResourcesManager/Makefile.in,
49872           src/ResourcesManager/SALOME_LoadRateManager.cxx,
49873           src/ResourcesManager/SALOME_LoadRateManager.hxx,
49874           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
49875           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
49876           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
49877           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
49878           src/ResourcesManager/SALOME_ResourcesManager.cxx,
49879           src/ResourcesManager/SALOME_ResourcesManager.hxx,
49880           src/SALOMEDS/Makefile.in, src/TestContainer/Makefile.in:
49881
49882         PR: merge from tag mergeto_trunk_20Jan05
49883
49884 2005-01-21 08:33  vsr
49885
49886         * bin/VERSION, INSTALL:
49887
49888         Modify the version number of SALOME: 2.2.0.
49889
49890 2005-01-21 06:28  apo
49891
49892         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49893
49894         Fix on [Bug PAL7750] Regression of UNDO in GEOM
49895         The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
49896         Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
49897
49898 2005-01-20 15:25  prascle
49899
49900         * bin/: launchConfigureParser.py, runSalome.py:
49901
49902         PR: new design of salome.py (related to 7658 7659 ...)
49903
49904 2005-01-20 15:10  vsr
49905
49906         * resources/KERNELCatalog.xml:
49907
49908         Modify the version number of SALOME: 2.2.0
49909
49910 2005-01-20 15:10  apo
49911
49912         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
49913
49914         Fix on [Bug PAL7750] Regression of UNDO in GEOM
49915         The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
49916         Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
49917
49918 2005-01-20 14:55  apo
49919
49920         * src/SALOMEDS/: SALOMEDS_AttributeIOR_i.cxx,
49921           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
49922           SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
49923           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
49924           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
49925           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
49926           SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx:
49927
49928         Fix on [Bug PAL7750] Regression of UNDO in GEOM
49929         The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
49930         Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
49931
49932 2005-01-20 13:46  ageay
49933
49934         * bin/runSalome.py:
49935
49936         [no log message]
49937
49938 2005-01-20 12:53  ageay
49939
49940         * Makefile.in:
49941
49942         For Resource catalog
49943
49944 2005-01-20 12:50  ageay
49945
49946         * resources/CatalogResources.xml:
49947
49948         Example of Resource catalog
49949
49950 2005-01-20 12:32  ageay
49951
49952         * src/ResourcesManager/SALOME_ResourcesManager.cxx:
49953
49954         [no log message]
49955
49956 2005-01-20 08:39  ageay
49957
49958         * src/Container/: SALOME_ContainerManagerServer.cxx,
49959           Container_i.cxx, SALOME_Container.cxx,
49960           SALOME_ContainerManager.cxx:
49961
49962         [no log message]
49963
49964 2005-01-20 08:27  ageay
49965
49966         * src/LifeCycleCORBA/: LifeCycleCORBA.py,
49967           SALOME_LifeCycleCORBA.cxx:
49968
49969         [no log message]
49970
49971 2005-01-19 18:30  prascle
49972
49973         * src/Makefile.in:
49974
49975         PR: lib forgotten in case without ihm
49976
49977 2005-01-19 07:57  prascle
49978
49979         * src/SALOMETraceCollector/: Makefile.in,
49980           LocalTrace_WaitForServerReadiness.cxx,
49981           LocalTrace_WaitForServerReadiness.hxx, SALOMETraceCollector.cxx,
49982           SALOMETraceCollector.hxx,
49983           TraceCollector_WaitForServerReadiness.cxx,
49984           TraceCollector_WaitForServerReadiness.hxx:
49985
49986         PR: bug 7769 loader aborts when logger not found in naming service,
49987         class renamed in coherence with library name.
49988
49989 2005-01-19 07:25  prascle
49990
49991         * src/SALOMELocalTrace/: LocalTraceCollector.cxx,
49992           LocalTraceCollector.hxx:
49993
49994         PR: add comments to differentiate LocalTraceCollector and SALOMETraceCollector
49995
49996 2005-01-18 11:39  apo
49997
49998         * src/SALOMEDS/: SALOMEDS_AttributeTarget_i.cxx,
49999           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
50000           SALOMEDS_SComponentIterator_i.cxx,
50001           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
50002           SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
50003           SALOMEDS_SObject_i.hxx, SALOMEDS_StudyBuilder_i.cxx,
50004           SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx,
50005           SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
50006           SALOMEDS_UseCaseIterator_i.cxx:
50007
50008         Fix on [Bug PAL7023] Problem loading MED file with a large number of families (same as VISU6154)
50009
50010 2005-01-17 17:36  ageay
50011
50012         * bin/runSalome.py:
50013
50014         [no log message]
50015
50016 2005-01-17 17:31  ageay
50017
50018         * src/TestContainer/Makefile.in, src/SALOMEDS/Makefile.in,
50019           src/MPIContainer/MPIContainer_i.cxx, idl/Makefile.in,
50020           idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl:
50021
50022         [no log message]
50023
50024 2005-01-17 17:24  ageay
50025
50026         * src/: LifeCycleCORBA/LifeCycleCORBA.py,
50027           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
50028           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
50029           Container/Container_i.cxx, Container/Makefile.in,
50030           Container/SALOME_Container.cxx,
50031           Container/SALOME_ContainerManager.cxx,
50032           Container/SALOME_ContainerManager.hxx,
50033           Container/SALOME_ContainerManagerServer.cxx,
50034           Container/SALOME_Container_i.hxx, ResourcesManager/Makefile.in,
50035           ResourcesManager/SALOME_LoadRateManager.cxx,
50036           ResourcesManager/SALOME_LoadRateManager.hxx,
50037           ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
50038           ResourcesManager/SALOME_ResourcesManager.cxx,
50039           ResourcesManager/SALOME_ResourcesManager.hxx,
50040           NamingService/SALOME_NamingService.cxx,
50041           NamingService/SALOME_NamingService.hxx:
50042
50043         [no log message]
50044
50045 2005-01-17 16:48  prascle
50046
50047         * src/Utils/Utils_CorbaException.hxx:
50048
50049         PR: merge from tag mergeto_trunk_18Jan05
50050
50051 2005-01-17 16:18  prascle
50052
50053         * doc/salome/tui/Makefile.in, doc/salome/tui/pythfilter.py,
50054           idl/SALOME_ModuleCatalog.idl, src/Container/Container_i.cxx,
50055           src/HDFPersist/HDFexception.hxx,
50056           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
50057           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
50058           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
50059           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
50060           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
50061           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
50062           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
50063           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
50064           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
50065           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
50066           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
50067           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
50068           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
50069           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
50070           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
50071           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
50072           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50073           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
50074           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
50075           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
50076           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
50077           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
50078           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
50079           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
50080           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
50081           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
50082           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
50083           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
50084           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
50085           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
50086           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
50087           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
50088           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
50089           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
50090           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
50091           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
50092           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
50093           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
50094           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
50095           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
50096           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
50097           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
50098           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
50099           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
50100           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
50101           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
50102           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
50103           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
50104           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
50105           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
50106           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
50107           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
50108           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
50109           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
50110           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
50111           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
50112           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
50113           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
50114           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
50115           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
50116           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
50117           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
50118           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
50119           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50120           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
50121           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
50122           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
50123           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
50124           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
50125           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
50126           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
50127           src/SALOMEDS/SALOMEDS_Server.cxx,
50128           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50129           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
50130           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
50131           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
50132           src/SALOMEDS/SALOMEDS_Study_i.cxx,
50133           src/SALOMEDS/SALOMEDS_Study_i.hxx,
50134           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
50135           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
50136           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
50137           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
50138           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx:
50139
50140         PR: merge from tag mergeto_trunk_17Jan05
50141
50142 2005-01-17 14:24  prascle
50143
50144         * src/SALOMELocalTrace/: LocalTrace_WaitForServerReadiness.cxx,
50145           LocalTrace_WaitForServerReadiness.hxx:
50146
50147         PR: merge from tag mergeto_trunk_16Jan05
50148
50149 2005-01-17 14:21  prascle
50150
50151         * configure.in.base, bin/launchConfigureParser.py,
50152           bin/runSalome.py, bin/salome.launch,
50153           salome_adm/unix/make_commence.in,
50154           salome_adm/unix/config_files/check_lsf.m4,
50155           salome_adm/unix/config_files/production.m4, src/Makefile.in,
50156           src/Container/Component_i.cxx, src/Container/Makefile.in,
50157           src/Container/SALOME_Container.cxx,
50158           src/ModuleCatalog/Makefile.in,
50159           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
50160           src/Registry/Makefile.in,
50161           src/Registry/SALOME_Registry_Server.cxx,
50162           src/SALOMELocalTrace/LocalTraceCollector.cxx,
50163           src/SALOMELocalTrace/LocalTraceCollector.hxx,
50164           src/SALOMELocalTrace/Makefile.in,
50165           src/SALOMELocalTrace/utilities.h,
50166           src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx,
50167           src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx,
50168           src/SALOMETraceCollector/Makefile.in,
50169           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
50170           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
50171           src/TestContainer/Makefile.in,
50172           src/TestContainer/TestContainer.cxx:
50173
50174         PR: merge from tag mergeto_trunk_16Jan05
50175
50176 2005-01-17 14:00  prascle
50177
50178         * src/SALOMELocalTrace/utilities.h:
50179
50180         PR: remove #include <strstream>, not used and deprecated
50181
50182 2005-01-17 13:58  prascle
50183
50184         * src/Container/Component_i.cxx:
50185
50186         PR: add a #if defined __GNUC__ to use setenv or putenv.
50187         todo: replace by an autoconf macro to check existence of setenv
50188
50189 2005-01-14 08:32  jfa
50190
50191         * doc/salome/tui/Makefile.in:
50192
50193         PAL6952: Documentation of geompy.py. Provide presence of pythfilter.py in installed KERNEL, not only in build version.
50194
50195 2005-01-13 15:30  dutka
50196
50197         * configure.in.base, salome_adm/unix/make_commence.in,
50198           salome_adm/unix/config_files/check_lsf.m4:
50199
50200         Add LSF Batch Manager detection to configure.in
50201
50202 2005-01-13 14:54  jfa
50203
50204         * doc/salome/tui/: Makefile.in, pythfilter.py:
50205
50206         PAL6952: Documentation of geompy.py. Add script for conversion of python files in format, suitable for Doxygen.
50207
50208 2005-01-12 08:58  rahuel
50209
50210         * src/Container/Container_i.cxx:
50211
50212         The variable k_setjmp was not resetted to false after the execution of a python function
50213
50214 2005-01-10 11:03  prascle
50215
50216         * src/SALOMELocalTrace/LocalTraceCollector.cxx:
50217
50218         PR: remove include not needed
50219
50220 2005-01-10 09:24  prascle
50221
50222         * salome_adm/unix/config_files/production.m4:
50223
50224         PR:bug 7656 correction from Alexey PETROV
50225
50226 2005-01-09 19:44  prascle
50227
50228         * bin/launchConfigureParser.py, bin/runSalome.py,
50229           bin/salome.launch, src/Makefile.in, src/Container/Makefile.in,
50230           src/Container/SALOME_Container.cxx,
50231           src/ModuleCatalog/Makefile.in,
50232           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
50233           src/Registry/Makefile.in,
50234           src/Registry/SALOME_Registry_Server.cxx,
50235           src/SALOMELocalTrace/LocalTraceCollector.cxx,
50236           src/SALOMELocalTrace/LocalTraceCollector.hxx,
50237           src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx,
50238           src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx,
50239           src/SALOMELocalTrace/Makefile.in,
50240           src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx,
50241           src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx,
50242           src/SALOMETraceCollector/Makefile.in,
50243           src/SALOMETraceCollector/SALOMETraceCollector.cxx,
50244           src/SALOMETraceCollector/SALOMETraceCollector.hxx,
50245           src/TestContainer/Makefile.in,
50246           src/TestContainer/TestContainer.cxx:
50247
50248         PR: bugs 7433 (Splash) and 7435 (SALOMELocalTrace without CORBA), plus trace option in file:
50249         M bin/launchConfigureParser.py
50250         M bin/runSalome.py
50251         M bin/salome.launch
50252         M bin/salome/runIDLparser.in
50253         M src/Makefile.in
50254         M src/Container/Makefile.in
50255         M src/Container/SALOME_Container.cxx
50256         M src/DataTypeCatalog/Makefile.in
50257         M src/DataTypeCatalog/SALOME_DataTypeCatalog_Server.cxx
50258         M src/Loader/Makefile.in
50259         M src/Loader/SALOME_Session_Loader.cxx
50260         M src/ModuleCatalog/Makefile.in
50261         M src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx
50262         M src/Registry/Makefile.in
50263         M src/Registry/SALOME_Registry_Server.cxx
50264         M src/RessourcesCatalog/Makefile.in
50265         M src/RessourcesCatalog/SALOME_RessourcesCatalog_Server.cxx
50266         M src/SALOMELocalTrace/LocalTraceCollector.cxx
50267         M src/SALOMELocalTrace/LocalTraceCollector.hxx
50268         R src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx
50269         R src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx
50270         M src/SALOMELocalTrace/Makefile.in
50271         A src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx
50272         A src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx
50273         A src/SALOMETraceCollector/Makefile.in
50274         A src/SALOMETraceCollector/SALOMETraceCollector.cxx
50275         A src/SALOMETraceCollector/SALOMETraceCollector.hxx
50276         M src/Session/Makefile.in
50277         M src/Session/SALOME_Session_Server.cxx
50278         M src/TestContainer/Makefile.in
50279         M src/TestContainer/TestContainer.cxx
50280
50281 2005-01-07 16:32  ageay
50282
50283         * doc/salome/tui/Makefile.in:
50284
50285         For install on CCRT.
50286
50287 2005-01-07 16:29  ageay
50288
50289         * src/: LifeCycleCORBA/Makefile.in,
50290           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
50291           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
50292           Container/Component_i.cxx, Container/Container_i.cxx,
50293           Container/Makefile.in, Container/SALOME_Component_i.hxx,
50294           Container/SALOME_Container_i.hxx:
50295
50296         Draft
50297
50298 2005-01-07 14:24  smh
50299
50300         * src/Container/SALOME_ContainerManagerServer.cxx:
50301
50302         file SALOME_ContainerManagerServer.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
50303
50304 2005-01-07 14:24  ageay
50305
50306         * src/Container/: SALOME_ContainerManager.cxx,
50307           SALOME_ContainerManager.hxx, SALOME_ContainerManagerServer.cxx,
50308           Makefile.in:
50309
50310         Draft
50311
50312 2005-01-07 14:19  ageay
50313
50314         * src/Makefile.in:
50315
50316         Draft
50317
50318 2005-01-07 14:16  ageay
50319
50320         * idl/SALOME_Component.idl:
50321
50322         Draft
50323
50324 2005-01-07 14:12  ageay
50325
50326         * idl/Makefile.in:
50327
50328         Draft
50329
50330 2005-01-07 14:09  ageay
50331
50332         * src/ResourcesManager/Makefile.in,
50333           src/ResourcesManager/SALOME_LoadRateManager.cxx,
50334           src/ResourcesManager/SALOME_LoadRateManager.hxx,
50335           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
50336           src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
50337           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
50338           src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
50339           src/ResourcesManager/SALOME_ResourcesManager.cxx,
50340           src/ResourcesManager/SALOME_ResourcesManager.hxx,
50341           idl/SALOME_ContainerManager.idl:
50342
50343         Draft
50344
50345 2005-01-05 14:35  apo
50346
50347         * src/: SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
50348           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
50349           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
50350           SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
50351           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
50352           SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
50353           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
50354           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
50355           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
50356           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
50357           SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
50358           SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
50359           SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50360           SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
50361           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
50362           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
50363           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
50364           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
50365           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
50366           SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
50367           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
50368           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
50369           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
50370           SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
50371           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
50372           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
50373           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
50374           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
50375           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
50376           SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
50377           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
50378           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
50379           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
50380           SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
50381           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
50382           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
50383           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
50384           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
50385           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
50386           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
50387           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
50388           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
50389           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
50390           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
50391           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
50392           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
50393           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
50394           SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
50395           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
50396           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
50397           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
50398           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
50399           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
50400           SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
50401           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
50402           SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
50403           SALOMEDS/SALOMEDS_Callback_i.hxx,
50404           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
50405           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
50406           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50407           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
50408           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
50409           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
50410           SALOMEDS/SALOMEDS_SComponent_i.cxx,
50411           SALOMEDS/SALOMEDS_SComponent_i.hxx,
50412           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
50413           SALOMEDS/SALOMEDS_Server.cxx,
50414           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50415           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
50416           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
50417           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
50418           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
50419           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
50420           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
50421           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
50422           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
50423           HDFPersist/HDFexception.hxx, TOOLSDS/SALOMEDS_Tool.cxx,
50424           TOOLSDS/SALOMEDS_Tool.hxx:
50425
50426         Connect to Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154)
50427
50428 2004-12-28 14:35  apo
50429
50430         * src/Utils/Utils_CorbaException.hxx:
50431
50432         [Bug PAL7252] DEVELOPMENT: Porting to MED2.2
50433
50434 2004-12-22 12:19  cvsadmin
50435
50436         * src/Container/Container_i.cxx, idl/SALOME_ModuleCatalog.idl,
50437           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
50438           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
50439           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
50440           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
50441
50442         Initial version of files for OCC developers
50443
50444 2004-12-14 14:56  rahuel
50445
50446         * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
50447
50448         Debug for Python function execution (SuperVision)
50449
50450 2004-12-10 11:04  rahuel
50451
50452         * src/Container/Component_i.cxx:
50453
50454         Void contructor initializations and traces
50455
50456 2004-12-09 14:37  rahuel
50457
50458         * src/Container/Component_i.cxx:
50459
50460         Some debugs about pthread_cancel/Kill_impl() to reset correctly _ThreadId field in case of signal (SIGSEGV, etc...)
50461
50462 2004-12-09 14:33  rahuel
50463
50464         * src/Container/Container_i.cxx:
50465
50466         Some addtional comments
50467
50468 2004-12-08 16:42  rahuel
50469
50470         * src/Container/Container_i.cxx:
50471
50472         SIGSEGV, SIGFPE and SIGBUS are catched by the handler and the Container does not crash.
50473
50474 2004-12-08 13:33  rahuel
50475
50476         * src/Container/SALOME_Container.cxx:
50477
50478         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.
50479         Now the orb is runned in another thread started from the main thread.
50480
50481 2004-12-08 13:30  rahuel
50482
50483         * src/Container/Container_i.cxx:
50484
50485         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.
50486         Log files are now in /tmp/log/${USER}/ to avoid conflicts between several users.
50487
50488 2004-12-08 13:26  rahuel
50489
50490         * src/Container/SALOME_Container_i.hxx:
50491
50492         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.
50493
50494 2004-12-08 13:22  rahuel
50495
50496         * src/Container/Makefile.in:
50497
50498         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.
50499         Now the signal handler become active again.
50500
50501 2004-12-08 13:21  rahuel
50502
50503         * src/Container/SALOME_Container_SignalsHandler.cxx:
50504
50505         No longer used. The previous signal handler in Container_i.cxx was disabled by that handler ===> Control of Execution of the SuperVisionEngine cannot run.
50506         Now the signal handler become active again.
50507
50508 2004-12-08 13:17  rahuel
50509
50510         * src/Container/SALOME_Component_i.hxx:
50511
50512         New field (mutex) for management of Kill, Suspend, Resume and CpuUsed.
50513
50514 2004-12-08 13:15  rahuel
50515
50516         * src/Container/SALOME_ComponentPy.py:
50517
50518         Not implemented methods Kill, Suspend and Resume return zero.
50519
50520 2004-12-08 13:13  rahuel
50521
50522         * src/Container/Component_i.cxx:
50523
50524         Several methods may be executed at the same time with the same object.
50525         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.
50526
50527 2004-12-03 14:32  secher
50528
50529         * idl/SALOME_Component.idl, idl/SALOME_MPIContainer.idl,
50530           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
50531           src/Container/SALOME_Container_i.hxx,
50532           src/MPIContainer/MPIContainer_i.cxx,
50533           src/MPIContainer/MPIContainer_i.hxx,
50534           src/MPIContainer/SALOME_MPIContainer.cxx,
50535           src/TestMPIContainer/Makefile.in,
50536           src/TestMPIContainer/TestMPIComponentEngine.cxx,
50537           src/TestMPIContainer/TestMPIContainer.cxx:
50538
50539         [no log message]
50540
50541 2004-11-29 17:15  prascle
50542
50543         * idl/: MPIContainer.idl, MPIObject.idl:
50544
50545         PR: remove files already removed from BR_CCRT2 branch
50546
50547 2004-11-29 16:59  prascle
50548
50549         * build_configure, configure.in.base, bin/runSalome.py,
50550           idl/SALOMEDS_Attributes.idl, resources/KERNELCatalog.xml,
50551           salome_adm/unix/envScript.in, salome_adm/unix/make_conclude.in,
50552           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
50553           salome_adm/unix/config_files/ac_cxx_warnings.m4,
50554           salome_adm/unix/config_files/check_Kernel.m4,
50555           salome_adm/unix/config_files/check_boost.m4,
50556           salome_adm/unix/config_files/check_med2.m4,
50557           salome_adm/unix/config_files/check_qt.m4,
50558           salome_adm/unix/config_files/check_withihm.m4,
50559           salome_adm/unix/config_files/production.m4, src/Makefile.in,
50560           src/Communication/SALOME_Comm_i.cxx,
50561           src/Communication/SALOME_Comm_i.hxx,
50562           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
50563           src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
50564           src/Container/SALOME_Container_SignalsHandler.cxx,
50565           src/Container/SALOME_Container_i.hxx,
50566           src/HDFPersist/HDFconvert.cc, src/MPIContainer/Makefile.in,
50567           src/ModuleCatalog/Makefile.in,
50568           src/ModuleGenerator/testIDLparser.in, src/SALOMEDS/Makefile.in,
50569           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
50570           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
50571           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50572           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
50573           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
50574           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
50575           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50576           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
50577           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
50578           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
50579           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
50580           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50581           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
50582           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
50583           src/TestContainer/SALOME_TestComponent_i.cxx,
50584           src/TestContainer/TestContainer.cxx,
50585           src/TestMPIContainer/Makefile.in,
50586           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
50587           src/Utils/Utils_Identity.cxx, src/Utils/Utils_SignalsHandler.cxx:
50588
50589         PR: merge from tag BR_CCRT2_mergeto_V2_1_0b1
50590
50591 2004-11-29 16:27  prascle
50592
50593         * bin/runSalome.py:
50594
50595         PR: no args to killLocalPort(), allways used with args as global.
50596
50597 2004-11-29 15:37  ageay
50598
50599         * bin/runSalome.py:
50600
50601         Merge with debug_V2_1_0a2
50602
50603 2004-11-29 15:33  ageay
50604
50605         * src/Utils/: Utils_SignalsHandler.cxx, Utils_Identity.py:
50606
50607         [no log message]
50608
50609 2004-11-26 13:54  ageay
50610
50611         * bin/runSalome.py:
50612
50613         Fix bug on killLocalPort when launching salome.
50614
50615 2004-11-26 13:50  ageay
50616
50617         * src/: Communication/SALOME_Comm_i.cxx,
50618           Communication/SALOME_Comm_i.hxx, HDFPersist/HDFconvert.cc,
50619           MPIContainer/Makefile.in:
50620
50621         Porting on CCRT.
50622
50623 2004-11-26 13:47  ageay
50624
50625         * src/: SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50626           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
50627           SALOMEDS/SALOMEDS_StudyManager_i.cxx, ModuleCatalog/Makefile.in:
50628
50629         Porting on CCRT.
50630
50631 2004-11-26 13:44  ageay
50632
50633         * src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx:
50634
50635         Porting on CCRT
50636
50637 2004-11-26 13:41  ageay
50638
50639         * src/: Utils/Utils_Identity.py, TestMPIContainer/Makefile.in,
50640           SALOMEDS/Makefile.in:
50641
50642         Porting on CCRT
50643
50644 2004-11-26 13:40  ageay
50645
50646         * src/Utils/Utils_Identity.cxx:
50647
50648         Porting on CCRT and memory violation bug fix.
50649
50650 2004-11-26 13:38  ageay
50651
50652         * src/TestContainer/TestContainer.cxx:
50653
50654         Merge from debugV2_1_0a2
50655
50656 2004-11-26 13:37  ageay
50657
50658         * src/: TestContainer/SALOME_TestComponent_i.cxx,
50659           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
50660
50661         Porting on CCRT
50662
50663 2004-11-26 13:30  ageay
50664
50665         * src/ModuleGenerator/testIDLparser.in:
50666
50667         Porting on CCRT:
50668
50669 2004-11-26 13:28  ageay
50670
50671         * src/Container/SALOME_Container_SignalsHandler.cxx:
50672
50673         Porting on CCRT:
50674         For CCRT needs the system signals are not catched yet.
50675
50676 2004-11-26 13:26  ageay
50677
50678         * src/Container/: Component_i.cxx, Container_i.cxx, Makefile.in,
50679           SALOME_Component_i.hxx, SALOME_Container_i.hxx:
50680
50681         Porting on CCRT:
50682
50683 2004-11-26 13:21  ageay
50684
50685         * salome_adm/unix/config_files/check_withihm.m4:
50686
50687         Porting on CCRT:
50688
50689 2004-11-26 13:19  ageay
50690
50691         * salome_adm/unix/make_conclude.in:
50692
50693         Porting on CCRT : adding option CPPFLAG needed.
50694
50695 2004-11-26 13:17  ageay
50696
50697         * build_configure, salome_adm/unix/envScript.in,
50698           salome_adm/unix/config_files/check_Kernel.m4,
50699           salome_adm/unix/config_files/check_med2.m4:
50700
50701         Porting on CCRT
50702
50703 2004-11-26 13:16  ageay
50704
50705         * configure.in.base:
50706
50707         Porting on CCRT :
50708         Adding gui presence handling.
50709
50710 2004-11-26 13:14  ageay
50711
50712         * src/Makefile.in:
50713
50714         Porting on CCRT :
50715         set subdirs taking account gui/no gui
50716
50717 2004-11-26 08:27  secher
50718
50719         * salome_adm/unix/config_files/check_boost.m4:
50720
50721         debug template option variable
50722
50723 2004-11-25 13:11  prascle
50724
50725         * src/Utils/Utils_SignalsHandler.cxx:
50726
50727         PR: change comment
50728
50729 2004-11-24 12:50  secher
50730
50731         * salome_adm/unix/config_files/check_boost.m4:
50732
50733         compilation option for template recursion
50734
50735 2004-11-22 11:07  secher
50736
50737         * src/TestContainer/TestContainer.cxx:
50738
50739         take account of trace modification
50740
50741 2004-11-22 10:49  prascle
50742
50743         * bin/runSalome.py:
50744
50745         PR: problem when runSalome.py is used without args.
50746         There is still a problem on killSalome whith --xterm: not solved.
50747
50748 2004-11-19 10:44  ageay
50749
50750         * configure.in.base,
50751           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
50752           salome_adm/unix/config_files/ac_cxx_warnings.m4,
50753           salome_adm/unix/config_files/check_boost.m4,
50754           salome_adm/unix/config_files/check_qt.m4,
50755           salome_adm/unix/config_files/production.m4, idl/MPIContainer.idl,
50756           idl/MPIObject.idl:
50757
50758         [no log message]
50759
50760 2004-11-19 10:23  ageay
50761
50762         * src/: SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50763           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx:
50764
50765         [no log message]
50766
50767 2004-11-19 08:50  ageay
50768
50769         * idl/SALOMEDS_Attributes.idl, resources/KERNELCatalog.xml,
50770           src/Makefile.in, src/SALOMEDS/Makefile.in,
50771           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
50772           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
50773           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50774           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
50775           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
50776           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
50777           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50778           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
50779           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx:
50780
50781         [no log message]
50782
50783 2004-11-17 07:48  cvsadmin
50784
50785         * src/Makefile.in, idl/SALOMEDS_Attributes.idl,
50786           src/SALOMEDS/Makefile.in,
50787           src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
50788           src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
50789           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
50790           src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
50791           src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
50792           src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
50793           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50794           src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
50795           src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
50796           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50797           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
50798           resources/KERNELCatalog.xml:
50799
50800         Merge with PAL/SALOME 2.1.0d
50801
50802 2004-11-16 10:14  secher
50803
50804         * salome_adm/unix/config_files/check_qt.m4:
50805
50806         portage alpha/osf1
50807
50808 2004-11-16 09:47  secher
50809
50810         * idl/: MPIContainer.idl, MPIObject.idl:
50811
50812         suppression de fichiers inutiles
50813
50814 2004-11-16 09:19  secher
50815
50816         * configure.in.base,
50817           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
50818           salome_adm/unix/config_files/check_boost.m4:
50819
50820         portage boost sur alpha/osf
50821
50822 2004-11-15 13:13  secher
50823
50824         * salome_adm/unix/config_files/: ac_cxx_warnings.m4, production.m4:
50825
50826         rationalisation des contrôles des options du compilateurs c++
50827
50828 2004-11-12 14:05  prascle
50829
50830         * bin/runSalome.py, src/Container/SALOME_ComponentPy.py,
50831           src/Container/SALOME_ContainerPy.py,
50832           src/LifeCycleCORBA/LifeCycleCORBA.py,
50833           src/TestContainer/TestComponentPy.py,
50834           src/Utils/Utils_Identity.py:
50835
50836         PR: new python function getShortHostName() in Utils_Identity.py, based on socket.gethotname(), to avoid use of HOSTNAME variable, not allways defined.
50837
50838         bin/runSalome.py
50839         src/Container/SALOME_ComponentPy.py
50840         src/Container/SALOME_ContainerPy.py
50841         src/LifeCycleCORBA/LifeCycleCORBA.py
50842         src/MPILifeCycleCORBA/MPILifeCycleCORBA.py
50843         src/TestContainer/TestComponentPy.py
50844         src/Utils/Utils_Identity.py
50845
50846 2004-11-12 08:27  prascle
50847
50848         * configure.in.base, idl/Makefile.in,
50849           salome_adm/unix/make_commence.in,
50850           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
50851           salome_adm/unix/config_files/ac_cxx_option.m4,
50852           salome_adm/unix/config_files/check_cas.m4,
50853           salome_adm/unix/config_files/check_lam.m4,
50854           salome_adm/unix/config_files/check_mpi.m4,
50855           salome_adm/unix/config_files/check_mpich.m4,
50856           salome_adm/unix/config_files/check_pthreads.m4,
50857           salome_adm/unix/config_files/check_sip.m4,
50858           salome_adm/unix/config_files/check_vtk.m4,
50859           salome_adm/unix/config_files/production.m4,
50860           salome_adm/unix/config_files/python.m4, src/Makefile.in,
50861           src/Communication/MultiCommException.cxx,
50862           src/Communication/MultiCommException.hxx,
50863           src/Communication/Receiver.cxx,
50864           src/Communication/ReceiverFactory.cxx,
50865           src/Communication/Receivers.cxx,
50866           src/Communication/SALOMEMultiComm.cxx,
50867           src/Communication/SALOME_Comm_i.cxx,
50868           src/Communication/SALOME_Comm_i.hxx,
50869           src/Communication/SenderFactory.cxx,
50870           src/Container/Component_i.cxx,
50871           src/Container/SALOME_Container.cxx,
50872           src/Container/SALOME_Container_SignalsHandler.cxx,
50873           src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
50874           src/HDFPersist/HDFattribute.cc,
50875           src/HDFPersist/HDFcontainerObject.cc,
50876           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFdataset.cc,
50877           src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
50878           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
50879           src/HDFPersist/HDFobject.cc, src/HDFPersist/test3.cxx,
50880           src/HDFPersist/test4.cxx, src/HDFPersist/test5.cxx,
50881           src/HDFPersist/test6.cxx, src/HDFPersist/test7.cxx,
50882           src/HDFPersist/test8.cxx, src/HDFPersist/test9.cxx,
50883           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
50884           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
50885           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
50886           src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
50887           src/MPIContainer/MPIContainer_i.cxx,
50888           src/MPIContainer/MPIContainer_i.hxx,
50889           src/MPIContainer/MPIObject_i.cxx,
50890           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
50891           src/MPIContainer/SALOME_MPIContainer.cxx,
50892           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
50893           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
50894           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
50895           src/NamingService/ServiceUnreachable.cxx,
50896           src/Notification/NOTIFICATION.cxx,
50897           src/Notification/NOTIFICATION_Consumer.cxx,
50898           src/Notification/NOTIFICATION_Supplier.cxx,
50899           src/Registry/RegistryConnexion.cxx,
50900           src/Registry/RegistryConnexion.hxx,
50901           src/Registry/RegistryService.cxx,
50902           src/Registry/RegistryService.hxx,
50903           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
50904           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
50905           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
50906           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
50907           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
50908           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
50909           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
50910           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
50911           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
50912           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
50913           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
50914           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
50915           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
50916           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
50917           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
50918           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
50919           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
50920           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
50921           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
50922           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
50923           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
50924           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
50925           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
50926           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
50927           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
50928           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
50929           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
50930           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
50931           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
50932           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
50933           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
50934           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
50935           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
50936           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
50937           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
50938           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
50939           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
50940           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
50941           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
50942           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
50943           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
50944           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
50945           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
50946           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
50947           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
50948           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
50949           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
50950           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
50951           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
50952           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
50953           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
50954           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
50955           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
50956           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
50957           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
50958           src/SALOMEDS/SALOMEDS_Study_i.cxx,
50959           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
50960           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
50961           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
50962           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
50963           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
50964           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
50965           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
50966           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
50967           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
50968           src/SALOMELocalTrace/utilities.h, src/TOOLSDS/SALOMEDS_Tool.cxx,
50969           src/TestContainer/SALOME_TestComponent_i.cxx,
50970           src/TestContainer/TestLogger.cxx,
50971           src/TestMPIContainer/TestMPIContainer.cxx,
50972           src/Utils/Utils_CommException.cxx,
50973           src/Utils/Utils_CorbaException.hxx,
50974           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
50975           src/Utils/Utils_ExceptHandlers.cxx,
50976           src/Utils/Utils_SALOME_Exception.cxx,
50977           src/Utils/Utils_SignalsHandler.cxx, src/Utils/Utils_Timer.cxx:
50978
50979         PR: mergefrom_BR_CCRT_11Nov04
50980
50981 2004-11-10 20:07  prascle
50982
50983         * configure.in.base, salome_adm/unix/make_commence.in,
50984           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
50985           salome_adm/unix/config_files/check_cas.m4:
50986
50987         PR: portage CCRT - ajustements sur RedHat8: minimisation ecart du au portage sur makefiles generes
50988
50989 2004-11-10 13:33  secher
50990
50991         * salome_adm/unix/config_files/: ac_cxx_option.m4, check_lam.m4,
50992           check_mpi.m4, check_mpich.m4:
50993
50994         merge from V1_2_4_with_MPI pour portage CCRT
50995
50996 2004-11-10 12:53  secher
50997
50998         * configure.in.base, idl/Makefile.in,
50999           salome_adm/unix/make_commence.in,
51000           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
51001           salome_adm/unix/config_files/check_cas.m4,
51002           salome_adm/unix/config_files/check_mpich.m4,
51003           salome_adm/unix/config_files/check_pthreads.m4,
51004           salome_adm/unix/config_files/check_sip.m4,
51005           salome_adm/unix/config_files/check_vtk.m4,
51006           salome_adm/unix/config_files/production.m4,
51007           salome_adm/unix/config_files/python.m4, src/Makefile.in,
51008           src/Container/SALOME_Container_i.hxx,
51009           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
51010           src/MPIContainer/MPIContainer_i.cxx,
51011           src/MPIContainer/MPIContainer_i.hxx,
51012           src/MPIContainer/MPIObject_i.cxx,
51013           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
51014           src/MPIContainer/SALOME_MPIContainer.cxx,
51015           src/Utils/Utils_CorbaException.hxx,
51016           src/Utils/Utils_SignalsHandler.cxx, src/Utils/Utils_Timer.cxx:
51017
51018         merge from V1_2_4_with_MPI pour portage CCRT
51019
51020 2004-11-09 09:55  rahuel
51021
51022         * bin/: orbmodule.py, runSalome.py:
51023
51024         Restore without ContainersManager and portability Alpha_OSF(CCRT)
51025
51026 2004-11-08 21:28  prascle
51027
51028         * src/: Communication/MultiCommException.cxx,
51029           Communication/MultiCommException.hxx, Communication/Receiver.cxx,
51030           Communication/ReceiverFactory.cxx, Communication/Receivers.cxx,
51031           Communication/SALOMEMultiComm.cxx,
51032           Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
51033           Communication/SenderFactory.cxx, Container/Component_i.cxx,
51034           Container/SALOME_Container.cxx,
51035           Container/SALOME_Container_SignalsHandler.cxx,
51036           HDFPersist/HDFascii.cc, HDFPersist/HDFattribute.cc,
51037           HDFPersist/HDFcontainerObject.cc, HDFPersist/HDFconvert.cc,
51038           HDFPersist/HDFdataset.cc, HDFPersist/HDFexplorer.cc,
51039           HDFPersist/HDFfile.cc, HDFPersist/HDFgroup.cc,
51040           HDFPersist/HDFinternalObject.cc, HDFPersist/HDFobject.cc,
51041           HDFPersist/test3.cxx, HDFPersist/test4.cxx, HDFPersist/test5.cxx,
51042           HDFPersist/test6.cxx, HDFPersist/test7.cxx, HDFPersist/test8.cxx,
51043           HDFPersist/test9.cxx, LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
51044           LifeCycleCORBA/TestLifeCycleCORBA.cxx,
51045           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
51046           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIObject_i.cxx,
51047           MPIContainer/SALOME_MPIContainer.cxx,
51048           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51049           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
51050           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
51051           NamingService/ServiceUnreachable.cxx,
51052           Notification/NOTIFICATION.cxx,
51053           Notification/NOTIFICATION_Consumer.cxx,
51054           Notification/NOTIFICATION_Supplier.cxx,
51055           Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
51056           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
51057           SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.cxx,
51058           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
51059           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51060           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51061           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
51062           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
51063           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
51064           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
51065           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
51066           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51067           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51068           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
51069           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
51070           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51071           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51072           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51073           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51074           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51075           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
51076           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
51077           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
51078           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
51079           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
51080           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
51081           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51082           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
51083           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
51084           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
51085           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
51086           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
51087           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
51088           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
51089           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
51090           SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
51091           SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
51092           SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
51093           SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
51094           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
51095           SALOMEDS/SALOMEDS_IORAttribute.cxx,
51096           SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
51097           SALOMEDS/SALOMEDS_OCAFApplication.cxx,
51098           SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
51099           SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
51100           SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
51101           SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
51102           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
51103           SALOMEDS/SALOMEDS_SComponent_i.cxx,
51104           SALOMEDS/SALOMEDS_SObject_i.cxx,
51105           SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
51106           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
51107           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
51108           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
51109           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
51110           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
51111           SALOMEDS/SALOMEDS_Study_i.cxx,
51112           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
51113           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
51114           SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
51115           SALOMEDS/SALOMEDS_TargetAttribute.cxx,
51116           SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
51117           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
51118           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
51119           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
51120           SALOMELocalTrace/LocalTraceBufferPool.cxx,
51121           SALOMELocalTrace/utilities.h, TOOLSDS/SALOMEDS_Tool.cxx,
51122           TestContainer/SALOME_TestComponent_i.cxx,
51123           TestContainer/TestLogger.cxx,
51124           TestMPIContainer/TestMPIContainer.cxx,
51125           Utils/Utils_CommException.cxx,
51126           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
51127           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_SALOME_Exception.cxx,
51128           Utils/Utils_SignalsHandler.cxx, Utils/Utils_Timer.cxx:
51129
51130         PR: portage CCRT, suppression -using namespace std- des includes, report instruction apres includes, dans les cxx
51131
51132 2004-11-08 16:27  rahuel
51133
51134         * src/SALOMEDS/Makefile.in:
51135
51136         Restore without ContainersManager & ContainersManager
51137
51138 2004-11-08 16:23  rahuel
51139
51140         * bin/: orbmodule.py, runSalome.py:
51141
51142         Restore without ContainersManager & ContainersManager
51143
51144 2004-11-08 16:07  rahuel
51145
51146         * src/TestContainer/: TestContainer.cxx:
51147
51148         Restore without ContainersManager & ContainersManager
51149
51150 2004-11-08 14:09  rahuel
51151
51152         * bin/runNS.sh:
51153
51154         Restore without ContainersManager & ContainersManager
51155
51156 2004-11-08 13:29  rahuel
51157
51158         * src/LifeCycleCORBA/Makefile.in:
51159
51160         Restore without ContainersManager & ContainersManager
51161
51162 2004-11-08 13:12  rahuel
51163
51164         * idl/SALOME_Component.idl:
51165
51166         Restore without ContainersManager & ContainersManager
51167
51168 2004-11-08 13:08  rahuel
51169
51170         * src/Container/SALOME_ContainerPy.py:
51171
51172         Restore without ContainersManager & ContainersManager
51173
51174 2004-11-08 12:59  rahuel
51175
51176         * src/Container/Container_i.cxx:
51177
51178         Restore without ContainersManager & ContainersManager
51179
51180 2004-11-08 12:51  rahuel
51181
51182         * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
51183
51184         Restore without ContainersManager & ContainersManager
51185
51186 2004-11-08 10:29  rahuel
51187
51188         * bin/startContainer.py, bin/runSalome.py,
51189           idl/ContainersManager.idl, idl/ResourcesManager.idl,
51190           idl/Makefile.in, Makefile.in:
51191
51192         Restore without ContainersManager & ContainersManager
51193
51194 2004-11-08 10:21  rahuel
51195
51196         * bin/: killSalome.py, orbmodule.py, runNS.sh, runSalome.py:
51197
51198         Restore without ContainersManager & ContainersManager
51199
51200 2004-11-08 09:27  rahuel
51201
51202         * src/: LifeCycleCORBA/LifeCycleCORBA.py,
51203           LifeCycleCORBA/Makefile.in,
51204           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
51205           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
51206           LifeCycleCORBA/TestLifeCycleCORBA.cxx, TestContainer/Makefile.in,
51207           TestContainer/SALOME_TestComponentPy.py,
51208           TestContainer/SALOME_TestComponent_i.hxx,
51209           TestContainer/TestComponentPy.py,
51210           TestContainer/TestContainer.cxx:
51211
51212         Restore previous state without ContainersManager & ContainersManager
51213
51214 2004-11-08 09:11  rahuel
51215
51216         * src/Makefile.in:
51217
51218         Restore previous state without ContainersManager & ContainersManager
51219
51220 2004-11-08 09:08  rahuel
51221
51222         * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
51223           ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
51224           ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
51225           ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
51226           ResourcesManager_Server.cxx:
51227
51228         Restore previous state without ResourcesManager
51229
51230 2004-11-05 18:54  prascle
51231
51232         * src/: SALOMELocalTrace/SALOME_Log.cxx,
51233           SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
51234
51235         PR: corrections residuelles des anomalies du merge cvs
51236
51237 2004-11-05 16:54  prascle
51238
51239         * bin/runSalome.py, src/Makefile.in,
51240           src/Container/SALOME_Container.cxx,
51241           src/MPIContainer/SALOME_MPIContainer.cxx,
51242           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
51243           src/NamingService/Makefile.in,
51244           src/NamingService/NamingService_WaitForServerReadiness.cxx,
51245           src/NamingService/NamingService_WaitForServerReadiness.hxx,
51246           src/Registry/SALOME_Registry_Server.cxx,
51247           src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
51248           src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
51249           src/SALOMELocalTrace/LocalTraceCollector.cxx,
51250           src/SALOMELocalTrace/LocalTraceCollector.hxx,
51251           src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx,
51252           src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx,
51253           src/SALOMELocalTrace/Makefile.in,
51254           src/SALOMELocalTrace/utilities.h, src/Utils/Makefile.in,
51255           src/Utils/duplicate.cxx:
51256
51257         PR: mergefrom_PRAS_br3_06Nov04
51258
51259 2004-11-05 16:21  prascle
51260
51261         * src/: SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
51262           Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h:
51263
51264         PR: merge from trunk tag mergeto_PRAS_br3_05Nov04
51265
51266 2004-11-05 16:17  prascle
51267
51268         * INSTALL, Makefile.in, build_configure, configure.in.base,
51269           make_config.in, bin/VERSION, bin/launchConfigureParser.py,
51270           bin/runSalome, bin/runSalome.csh, bin/runSalome.py,
51271           bin/salome.launch, idl/Makefile.in, idl/SALOMEDS.idl,
51272           idl/SALOME_Comm.idl, idl/SALOME_Session.idl,
51273           salome_adm/Makefile.in, salome_adm/unix/config.h.in,
51274           salome_adm/unix/make_commence.in,
51275           salome_adm/unix/make_conclude.in,
51276           salome_adm/unix/config_files/check_boost.m4,
51277           salome_adm/unix/config_files/check_cas.m4,
51278           salome_adm/unix/config_files/check_lam.m4,
51279           salome_adm/unix/config_files/check_mpi.m4,
51280           salome_adm/unix/config_files/check_mpich.m4,
51281           salome_adm/unix/config_files/check_omniorb.m4,
51282           salome_adm/unix/config_files/check_openpbs.m4,
51283           salome_adm/unix/config_files/check_pyqt.m4,
51284           salome_adm/unix/config_files/check_sockets.m4,
51285           salome_adm/unix/config_files/production.m4, src/Makefile.in,
51286           src/Communication/Makefile.in,
51287           src/Communication/MultiCommException.cxx,
51288           src/Communication/MultiCommException.hxx,
51289           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
51290           src/Communication/ReceiverFactory.cxx,
51291           src/Communication/ReceiverFactory.hxx,
51292           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
51293           src/Communication/SALOMEMultiComm.cxx,
51294           src/Communication/SALOMEMultiComm.hxx,
51295           src/Communication/SALOME_Comm_i.cxx,
51296           src/Communication/SALOME_Comm_i.hxx,
51297           src/Communication/SenderFactory.cxx,
51298           src/Communication/SenderFactory.hxx,
51299           src/Container/Container_i.cxx, src/Container/Makefile.in,
51300           src/Container/SALOME_Component_i.hxx,
51301           src/Container/SALOME_Container.cxx,
51302           src/Container/SALOME_Container_SignalsHandler.cxx,
51303           src/Container/SALOME_Container_i.hxx,
51304           src/GenericObj/SALOME_GenericObj_i.cc,
51305           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
51306           src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
51307           src/MPIContainer/MPIContainer_i.cxx,
51308           src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in,
51309           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
51310           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
51311           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51312           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
51313           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
51314           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
51315           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
51316           src/NamingService/SALOME_NamingService.cxx,
51317           src/NamingService/SALOME_NamingService.hxx,
51318           src/Notification/NOTIFICATION_Consumer.cxx,
51319           src/SALOMEDS/Makefile.in,
51320           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51321           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51322           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51323           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51324           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51325           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
51326           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51327           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51328           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51329           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51330           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51331           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
51332           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
51333           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
51334           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
51335           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
51336           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
51337           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
51338           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
51339           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
51340           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
51341           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
51342           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
51343           src/Utils/Utils_ExceptHandlers.cxx,
51344           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
51345           src/Utils/Utils_SALOME_Exception.hxx,
51346           src/Utils/Utils_SINGLETON.hxx,
51347           src/Utils/Utils_SignalsHandler.cxx,
51348           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
51349           src/Utils/duplicate.cxx:
51350
51351         PR: merge from trunk tag mergeto_PRAS_br3_05Nov04
51352
51353 2004-11-05 15:38  rahuel
51354
51355         * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
51356           ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
51357           ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
51358           ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
51359           ResourcesManager_Server.cxx:
51360
51361         Portability Alpha_OSF(CCRT)
51362
51363 2004-11-05 13:56  prascle
51364
51365         * configure.in.base, idl/Makefile.in, idl/SALOME_Comm.idl,
51366           salome_adm/unix/make_commence.in,
51367           salome_adm/unix/config_files/check_lam.m4,
51368           salome_adm/unix/config_files/check_mpi.m4,
51369           salome_adm/unix/config_files/check_mpich.m4,
51370           salome_adm/unix/config_files/check_omniorb.m4,
51371           salome_adm/unix/config_files/check_sockets.m4, src/Makefile.in,
51372           src/Communication/Makefile.in,
51373           src/Communication/MultiCommException.cxx,
51374           src/Communication/MultiCommException.hxx,
51375           src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
51376           src/Communication/ReceiverFactory.cxx,
51377           src/Communication/ReceiverFactory.hxx,
51378           src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
51379           src/Communication/SALOMEMultiComm.cxx,
51380           src/Communication/SALOMEMultiComm.hxx,
51381           src/Communication/SALOME_Comm_i.cxx,
51382           src/Communication/SALOME_Comm_i.hxx,
51383           src/Communication/SenderFactory.cxx,
51384           src/Communication/SenderFactory.hxx, src/Container/Makefile.in,
51385           src/Container/SALOME_Container.cxx,
51386           src/MPIContainer/MPIContainer_i.cxx,
51387           src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in:
51388
51389         PR: mergefrom_BR_GEAY_05Nov04
51390
51391 2004-11-05 13:02  prascle
51392
51393         * INSTALL, Makefile.in, build_configure, configure.in.base,
51394           make_config.in, bin/VERSION, bin/launchConfigureParser.py,
51395           bin/runSalome, bin/runSalome.csh, bin/runSalome.py,
51396           bin/salome.launch, idl/Makefile.in, idl/SALOMEDS.idl,
51397           idl/SALOME_Session.idl, salome_adm/Makefile.in,
51398           salome_adm/unix/config.h.in, salome_adm/unix/make_commence.in,
51399           salome_adm/unix/make_conclude.in,
51400           salome_adm/unix/config_files/check_boost.m4,
51401           salome_adm/unix/config_files/check_cas.m4,
51402           salome_adm/unix/config_files/check_omniorb.m4,
51403           salome_adm/unix/config_files/check_openpbs.m4,
51404           salome_adm/unix/config_files/check_pyqt.m4,
51405           salome_adm/unix/config_files/production.m4, src/Makefile.in,
51406           src/Container/Container_i.cxx, src/Container/Makefile.in,
51407           src/Container/SALOME_Component_i.hxx,
51408           src/Container/SALOME_Container.cxx,
51409           src/Container/SALOME_Container_SignalsHandler.cxx,
51410           src/Container/SALOME_Container_i.hxx,
51411           src/GenericObj/SALOME_GenericObj_i.cc,
51412           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
51413           src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
51414           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
51415           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
51416           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51417           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
51418           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
51419           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
51420           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
51421           src/NamingService/SALOME_NamingService.cxx,
51422           src/NamingService/SALOME_NamingService.hxx,
51423           src/Notification/NOTIFICATION_Consumer.cxx,
51424           src/SALOMEDS/Makefile.in,
51425           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51426           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51427           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51428           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51429           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51430           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
51431           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51432           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51433           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51434           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51435           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51436           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
51437           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
51438           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
51439           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
51440           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
51441           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
51442           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
51443           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
51444           src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
51445           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
51446           src/SALOMELocalTrace/SALOME_Log.cxx,
51447           src/SALOMELocalTrace/SALOME_Log.hxx,
51448           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
51449           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
51450           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
51451           src/Utils/Utils_ExceptHandlers.cxx,
51452           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
51453           src/Utils/Utils_SALOME_Exception.hxx,
51454           src/Utils/Utils_SINGLETON.hxx,
51455           src/Utils/Utils_SignalsHandler.cxx,
51456           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
51457           src/Utils/duplicate.cxx, src/Utils/utilities.h:
51458
51459         PR: merge from trunk tag mergeto_BR_GEAY_04Nov04
51460
51461 2004-11-05 09:57  rahuel
51462
51463         * src/Utils/Utils_Identity.py:
51464
51465         Portability Alpha_OSF :
51466         HOST environment variable instead of HOSTNAME
51467
51468 2004-11-05 09:55  rahuel
51469
51470         * src/Utils/Utils_Identity.cxx:
51471
51472         Portability Alpha_OSF :
51473         Memory corruption
51474
51475 2004-11-05 09:53  rahuel
51476
51477         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
51478
51479         Portability Alpha_OSF :
51480         MESSAGE ===> SEGV in constructor of the static
51481         Now "new list<DESTRUCTEUR_GENERIQUE_*> " is done by the first call to Ajout
51482
51483 2004-11-05 09:46  rahuel
51484
51485         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
51486
51487         MESSAGE
51488
51489 2004-11-05 09:44  rahuel
51490
51491         * src/TestContainer/: TestComponentPy.py, TestContainer.cxx:
51492
51493         ContainersManager
51494
51495 2004-11-05 09:42  rahuel
51496
51497         * src/TestContainer/SALOME_TestComponentPy.py:
51498
51499         Trace
51500
51501 2004-11-05 09:39  rahuel
51502
51503         * src/TestContainer/Makefile.in:
51504
51505         ContainersManager
51506
51507 2004-11-05 09:30  rahuel
51508
51509         * src/SALOMELocalTrace/SALOME_Log.cxx:
51510
51511         Portability Alpha_OSF(CCRT) : SEGV
51512
51513 2004-11-05 09:25  rahuel
51514
51515         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
51516
51517         Portability Alpha_OSF(CCRT)
51518
51519 2004-11-05 08:52  rahuel
51520
51521         * src/SALOMEDS/Makefile.in:
51522
51523         ContainersManager
51524
51525 2004-11-05 08:43  rahuel
51526
51527         * src/NamingService/SALOME_NamingServicePy.py:
51528
51529         ContainersManager : Unbind
51530
51531 2004-11-05 08:39  rahuel
51532
51533         * src/ModuleGenerator/testIDLparser.in:
51534
51535         Portability Alpha_OSF(CCRT)
51536
51537 2004-11-05 08:35  rahuel
51538
51539         * src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
51540
51541         ContainersManager
51542
51543 2004-11-05 08:32  rahuel
51544
51545         * src/LifeCycleCORBA/: LifeCycleCORBA.py, Makefile.in,
51546           SALOME_LifeCycleCORBA.cxx, SALOME_LifeCycleCORBA.hxx:
51547
51548         ContainersManager
51549
51550 2004-11-05 08:27  rahuel
51551
51552         * src/Container/: SALOME_ContainerPy.py, SALOME_Container_i.hxx:
51553
51554         ContainersManager
51555
51556 2004-11-05 08:24  rahuel
51557
51558         * src/Container/SALOME_Container.cxx:
51559
51560         MESSAGEs
51561
51562 2004-11-05 08:23  rahuel
51563
51564         * src/Container/SALOME_ComponentPy.py:
51565
51566         Portability Alpha_OSF(CCRT) + ContainersManager + Missing code <--> C++
51567
51568 2004-11-05 08:18  rahuel
51569
51570         * src/Container/: Component_i.cxx, Container_i.cxx:
51571
51572         ContainersManager
51573
51574 2004-11-05 08:15  rahuel
51575
51576         * src/Makefile.in:
51577
51578         --without-ihm (default with-ihm)
51579
51580 2004-11-05 08:13  rahuel
51581
51582         * salome_adm/unix/config_files/check_withihm.m4:
51583
51584         Portability Alpha_OSF(CCRT) + --without-ihm (default --with-ihm)
51585
51586 2004-11-05 08:06  rahuel
51587
51588         * salome_adm/unix/config_files/check_med2.m4:
51589
51590         Portability Alpha_OSF(CCRT)
51591
51592 2004-11-04 16:18  rahuel
51593
51594         * salome_adm/unix/config_files/check_Kernel.m4:
51595
51596         Portability Alpha_OSF(CCRT)
51597
51598 2004-11-04 16:15  rahuel
51599
51600         * salome_adm/unix/make_conclude.in:
51601
51602         Portability Alpha_OSF(CCRT)
51603
51604 2004-11-04 16:14  rahuel
51605
51606         * salome_adm/unix/envScript.in:
51607
51608         Portability Alpha_OSF(CCRT) : export syntax
51609         MICORC=/dev/null
51610         export MICORC
51611         instead of export MICORC=/dev/null
51612
51613 2004-11-04 16:10  rahuel
51614
51615         * resources/ResourcesCatalog.xml:
51616
51617         ResourcesManager : Catalog of Computers
51618
51619 2004-11-04 16:08  rahuel
51620
51621         * idl/: ContainersManager.idl, Makefile.in, ResourcesManager.idl,
51622           SALOME_Component.idl:
51623
51624         ContainersManager/ResourcesManager
51625
51626 2004-11-04 16:06  rahuel
51627
51628         * bin/: killSalome.py, orbmodule.py, runSalome.py,
51629           startContainer.py:
51630
51631         ContainersManager/ResourcesManager
51632         Portability on Alpha_OSF(CCRT)
51633
51634 2004-11-04 15:42  rahuel
51635
51636         * configure.in.base:
51637
51638         new option --without-ihm. Default is with-ihm
51639
51640 2004-11-04 15:41  rahuel
51641
51642         * build_configure:
51643
51644         Portability on Alpha-OSF(CCRT)
51645
51646 2004-11-04 15:39  rahuel
51647
51648         * Makefile.in:
51649
51650         ResourcesCatalog.xml and StartContainer.py added
51651
51652 2004-10-25 16:40  prascle
51653
51654         * salome_adm/unix/config_files/check_boost.m4:
51655
51656         PR: keep previous definition of BOOSTDIR for compatibility
51657
51658 2004-10-22 16:09  prascle
51659
51660         * configure.in.base, salome_adm/unix/make_commence.in,
51661           salome_adm/unix/config_files/check_boost.m4,
51662           salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.in:
51663
51664         PR: mergefrom_BR_BATCH_22Oct04
51665
51666 2004-10-22 15:11  prascle
51667
51668         * INSTALL, Makefile.in, build_configure, make_config.in,
51669           bin/VERSION, bin/launchConfigureParser.py, bin/runSalome,
51670           bin/runSalome.csh, bin/runSalome.py, bin/salome.launch,
51671           idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOME_Session.idl,
51672           salome_adm/Makefile.in, salome_adm/unix/config.h.in,
51673           salome_adm/unix/make_commence.in,
51674           salome_adm/unix/make_conclude.in,
51675           salome_adm/unix/config_files/check_cas.m4,
51676           salome_adm/unix/config_files/check_omniorb.m4,
51677           salome_adm/unix/config_files/check_pyqt.m4,
51678           salome_adm/unix/config_files/production.m4, src/Makefile.in,
51679           src/Container/Container_i.cxx, src/Container/Makefile.in,
51680           src/Container/SALOME_Component_i.hxx,
51681           src/Container/SALOME_Container.cxx,
51682           src/Container/SALOME_Container_SignalsHandler.cxx,
51683           src/Container/SALOME_Container_i.hxx,
51684           src/GenericObj/SALOME_GenericObj_i.cc,
51685           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
51686           src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
51687           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
51688           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
51689           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51690           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
51691           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
51692           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
51693           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
51694           src/NamingService/SALOME_NamingService.cxx,
51695           src/NamingService/SALOME_NamingService.hxx,
51696           src/Notification/NOTIFICATION_Consumer.cxx,
51697           src/SALOMEDS/Makefile.in,
51698           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51699           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51700           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51701           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51702           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51703           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
51704           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51705           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51706           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51707           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51708           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51709           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
51710           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
51711           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
51712           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
51713           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
51714           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
51715           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
51716           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
51717           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
51718           src/SALOMELocalTrace/SALOME_Log.cxx,
51719           src/SALOMELocalTrace/SALOME_Log.hxx,
51720           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
51721           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
51722           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
51723           src/Utils/Utils_ExceptHandlers.cxx,
51724           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
51725           src/Utils/Utils_SALOME_Exception.hxx,
51726           src/Utils/Utils_SINGLETON.hxx,
51727           src/Utils/Utils_SignalsHandler.cxx,
51728           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
51729           src/Utils/duplicate.cxx, src/Utils/utilities.h:
51730
51731         PR: merge from trunk tag mergeto_BR_BACH_21Oct04
51732
51733 2004-10-22 14:36  prascle
51734
51735         * src/: SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
51736           Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h:
51737
51738         PR: manual correction while merge PAL_OCC to HEAD
51739
51740 2004-10-22 14:21  secher
51741
51742         * idl/SALOME_Session.idl:
51743
51744         file SALOME_Session.idl was added on branch BR_V300_lcrm on 2005-07-19 09:01:58 +0000
51745
51746 2004-10-22 14:21  prascle
51747
51748         * INSTALL, Makefile.in, build_configure, make_config.in,
51749           bin/VERSION, bin/launchConfigureParser.py, bin/runSalome,
51750           bin/runSalome.csh, bin/runSalome.py, bin/salome.launch,
51751           idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOME_Session.idl,
51752           salome_adm/Makefile.in, salome_adm/unix/config.h.in,
51753           salome_adm/unix/make_commence.in,
51754           salome_adm/unix/make_conclude.in,
51755           salome_adm/unix/config_files/check_cas.m4,
51756           salome_adm/unix/config_files/check_omniorb.m4,
51757           salome_adm/unix/config_files/check_pyqt.m4,
51758           salome_adm/unix/config_files/production.m4, src/Makefile.in,
51759           src/Container/Container_i.cxx, src/Container/Makefile.in,
51760           src/Container/SALOME_Component_i.hxx,
51761           src/Container/SALOME_Container.cxx,
51762           src/Container/SALOME_Container_SignalsHandler.cxx,
51763           src/Container/SALOME_Container_i.hxx,
51764           src/GenericObj/SALOME_GenericObj_i.cc,
51765           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
51766           src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
51767           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
51768           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
51769           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51770           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
51771           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
51772           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
51773           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
51774           src/NamingService/SALOME_NamingService.cxx,
51775           src/NamingService/SALOME_NamingService.hxx,
51776           src/Notification/NOTIFICATION_Consumer.cxx,
51777           src/SALOMEDS/Makefile.in,
51778           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51779           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51780           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51781           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51782           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51783           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
51784           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51785           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51786           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51787           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51788           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51789           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
51790           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
51791           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
51792           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
51793           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
51794           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
51795           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
51796           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
51797           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
51798           src/SALOMELocalTrace/SALOME_Log.cxx,
51799           src/SALOMELocalTrace/SALOME_Log.hxx,
51800           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
51801           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
51802           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
51803           src/Utils/Utils_ExceptHandlers.cxx,
51804           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
51805           src/Utils/Utils_SALOME_Exception.hxx,
51806           src/Utils/Utils_SINGLETON.hxx,
51807           src/Utils/Utils_SignalsHandler.cxx,
51808           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
51809           src/Utils/duplicate.cxx, src/Utils/utilities.h:
51810
51811         PR: mergefrom_PAL_OCC_21Oct04
51812
51813 2004-10-20 14:16  prascle
51814
51815         * src/: Container/SALOME_Container.cxx,
51816           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
51817           Registry/SALOME_Registry_Server.cxx:
51818
51819         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)
51820
51821 2004-10-20 14:12  prascle
51822
51823         * bin/runSalome.py:
51824
51825         PR: Complete restructuration to allow to call SALOME services from other applications. Designed to stay compatible with V2_0_0.
51826
51827 2004-10-20 14:07  prascle
51828
51829         * src/NamingService/: Makefile.in,
51830           NamingService_WaitForServerReadiness.cxx,
51831           NamingService_WaitForServerReadiness.hxx:
51832
51833         PR: Move function WaitForServerReadiness from Session/SessionServerThread to NamingService/NamingService_WaitForServerReadiness: usage no more restricted to Session
51834
51835 2004-10-20 13:57  prascle
51836
51837         * src/SALOMELocalTrace/: LocalTraceBufferPool.cxx,
51838           LocalTraceCollector.cxx, LocalTraceCollector.hxx,
51839           LocalTrace_WaitForServerReadiness.cxx,
51840           LocalTrace_WaitForServerReadiness.hxx, Makefile.in,
51841           SALOME_Log.cxx, SALOME_Log.hxx:
51842
51843         PR: Multithreaded trace, part 2 - with logger
51844
51845 2004-10-19 13:29  smh
51846
51847         * Makefile.in, build_configure, make_config.in,
51848           salome_adm/Makefile.in, salome_adm/unix/config.h.in,
51849           salome_adm/unix/make_commence.in,
51850           salome_adm/unix/make_conclude.in,
51851           salome_adm/unix/make_omniorb.in,
51852           salome_adm/unix/config_files/ac_cxx_bool.m4,
51853           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
51854           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
51855           salome_adm/unix/config_files/ac_cxx_mutable.m4,
51856           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
51857           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
51858           salome_adm/unix/config_files/ac_cxx_typename.m4,
51859           salome_adm/unix/config_files/check_cas.m4,
51860           salome_adm/unix/config_files/check_omniorb.m4,
51861           salome_adm/unix/config_files/check_pthreads.m4,
51862           salome_adm/unix/config_files/check_pyqt.m4,
51863           salome_adm/unix/config_files/enable_pthreads.m4,
51864           salome_adm/unix/config_files/mkinstalldirs,
51865           salome_adm/unix/config_files/production.m4, src/Makefile.in,
51866           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
51867           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
51868           src/Container/SALOME_Component_i.hxx,
51869           src/Container/SALOME_Container.cxx,
51870           src/Container/SALOME_ContainerPy.py,
51871           src/Container/SALOME_Container_SignalsHandler.cxx,
51872           src/Container/SALOME_Container_i.hxx,
51873           src/GenericObj/SALOME_GenericObj_i.cc,
51874           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
51875           src/HDFPersist/HDFexception.hxx, src/HDFPersist/Makefile.in,
51876           src/LifeCycleCORBA/LifeCycleCORBA.py,
51877           src/LifeCycleCORBA/Makefile.in,
51878           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
51879           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
51880           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
51881           src/Logger/Makefile.in, src/Logger/SALOME_Trace.hxx,
51882           src/MPIContainer/Makefile.in, src/ModuleCatalog/Makefile.in,
51883           src/ModuleCatalog/PathPrefix.hxx,
51884           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
51885           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
51886           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
51887           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
51888           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
51889           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
51890           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
51891           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
51892           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
51893           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
51894           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
51895           src/ModuleGenerator/Makefile.in,
51896           src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.in,
51897           src/NamingService/SALOME_NamingService.cxx,
51898           src/NamingService/SALOME_NamingService.hxx,
51899           src/NamingService/SALOME_NamingService.i,
51900           src/NamingService/SALOME_NamingServicePy.py,
51901           src/NamingService/ServiceUnreachable.hxx,
51902           src/Notification/Makefile.in,
51903           src/Notification/NOTIFICATION_Consumer.cxx,
51904           src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
51905           src/Registry/RegistryConnexion.hxx,
51906           src/Registry/RegistryService.cxx,
51907           src/Registry/RegistryService.hxx,
51908           src/Registry/SALOME_Registry_Server.cxx,
51909           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
51910           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
51911           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
51912           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
51913           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
51914           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
51915           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
51916           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
51917           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
51918           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
51919           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
51920           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
51921           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
51922           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
51923           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
51924           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
51925           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
51926           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
51927           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
51928           src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
51929           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
51930           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
51931           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
51932           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
51933           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
51934           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
51935           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
51936           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
51937           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
51938           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
51939           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
51940           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
51941           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
51942           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
51943           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
51944           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
51945           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
51946           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
51947           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
51948           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
51949           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
51950           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
51951           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
51952           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
51953           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
51954           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
51955           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
51956           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
51957           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
51958           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
51959           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
51960           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
51961           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
51962           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
51963           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
51964           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
51965           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
51966           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
51967           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
51968           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
51969           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
51970           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
51971           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
51972           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
51973           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
51974           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
51975           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
51976           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
51977           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
51978           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
51979           src/SALOMEDS/SALOMEDS_Client.cxx,
51980           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
51981           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
51982           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
51983           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
51984           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
51985           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
51986           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
51987           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
51988           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
51989           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
51990           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
51991           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
51992           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
51993           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
51994           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
51995           src/SALOMEDS/SALOMEDS_FileType.cxx,
51996           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
51997           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
51998           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
51999           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
52000           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
52001           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
52002           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
52003           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
52004           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
52005           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
52006           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
52007           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
52008           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
52009           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
52010           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
52011           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
52012           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
52013           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
52014           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
52015           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
52016           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
52017           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
52018           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
52019           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
52020           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
52021           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
52022           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
52023           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
52024           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
52025           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
52026           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
52027           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
52028           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
52029           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
52030           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
52031           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
52032           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
52033           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
52034           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
52035           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
52036           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
52037           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
52038           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
52039           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
52040           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
52041           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
52042           src/SALOMEDS/SALOMEDS_Server.cxx,
52043           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
52044           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
52045           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
52046           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
52047           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
52048           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
52049           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
52050           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
52051           src/SALOMEDS/SALOMEDS_Study_i.cxx,
52052           src/SALOMEDS/SALOMEDS_Study_i.hxx,
52053           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
52054           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
52055           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
52056           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
52057           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
52058           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
52059           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
52060           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
52061           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
52062           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
52063           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
52064           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
52065           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
52066           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
52067           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
52068           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
52069           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
52070           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
52071           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
52072           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
52073           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
52074           src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
52075           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
52076           src/SALOMELocalTrace/Makefile.in,
52077           src/SALOMELocalTrace/SALOME_Log.cxx,
52078           src/SALOMELocalTrace/SALOME_Log.hxx,
52079           src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
52080           src/TestContainer/Makefile.in,
52081           src/TestContainer/SALOME_TestComponentPy.py,
52082           src/TestContainer/SALOME_TestComponent_i.cxx,
52083           src/TestContainer/SALOME_TestComponent_i.hxx,
52084           src/TestContainer/TestComponentPy.py,
52085           src/TestContainer/TestContainer.cxx,
52086           src/TestContainer/TestLogger.cxx, bin/VERSION,
52087           bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.csh,
52088           bin/runSalome.py, bin/salome.launch, doc/Makefile.in,
52089           doc/salome/Makefile.in, idl/Makefile.in, idl/SALOMEDS.idl,
52090           idl/SALOMEDS_Attributes.idl, idl/SALOME_DataTypeCatalog.idl,
52091           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
52092           idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
52093           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
52094           idl/SALOME_TestMPIComponent.idl,
52095           src/TestMPIContainer/Makefile.in,
52096           src/TestMPIContainer/TestMPIComponentEngine.cxx,
52097           src/TestMPIContainer/TestMPIComponentEngine.hxx,
52098           src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/Makefile.in,
52099           src/Utils/Utils_CatchSignals.cxx, src/Utils/Utils_CatchSignals.h,
52100           src/Utils/Utils_CommException.cxx,
52101           src/Utils/Utils_CommException.hxx,
52102           src/Utils/Utils_CorbaException.hxx,
52103           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
52104           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
52105           src/Utils/Utils_ExceptHandlers.cxx,
52106           src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
52107           src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
52108           src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
52109           src/Utils/Utils_SALOME_Exception.cxx,
52110           src/Utils/Utils_SALOME_Exception.hxx,
52111           src/Utils/Utils_SINGLETON.hxx,
52112           src/Utils/Utils_SignalsHandler.cxx,
52113           src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
52114           src/Utils/duplicate.cxx, src/Utils/utilities.h:
52115
52116         Integration of PAL/SALOME V2.1.0c from OCC
52117
52118 2004-10-19 13:26  smh
52119
52120         * INSTALL:
52121
52122         Integration of PAL/SALOME V2.1.0c from OCC
52123
52124 2004-10-07 09:40  dutka
52125
52126         * src/Makefile.in:
52127
52128         Bibliothèque de classes Batch (new)
52129
52130 2004-10-07 09:21  dutka
52131
52132         * salome_adm/unix/: config_files/check_openpbs.m4,
52133           config_files/check_boost.m4, make_commence.in:
52134
52135         Bibliothèque de classes Batch (new)
52136
52137 2004-10-07 09:17  dutka
52138
52139         * configure.in.base:
52140
52141         Modification de l'option de install (-C -> -c)
52142
52143 2004-10-05 20:36  prascle
52144
52145         * src/SALOMELocalTrace/: LocalTraceBufferPool.cxx,
52146           LocalTraceBufferPool.hxx, LocalTraceCollector.cxx,
52147           LocalTraceCollector.hxx:
52148
52149         PR: thread safe singleton
52150
52151 2004-09-29 07:55  prascle
52152
52153         * src/: Makefile.in, Container/SALOME_Container.cxx,
52154           MPIContainer/SALOME_MPIContainer.cxx,
52155           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
52156           Registry/SALOME_Registry_Server.cxx,
52157           SALOMELocalTrace/LocalTraceBufferPool.cxx,
52158           SALOMELocalTrace/LocalTraceBufferPool.hxx,
52159           SALOMELocalTrace/LocalTraceCollector.cxx,
52160           SALOMELocalTrace/LocalTraceCollector.hxx,
52161           SALOMELocalTrace/Makefile.in, SALOMELocalTrace/utilities.h,
52162           Utils/Makefile.in, Utils/duplicate.cxx, Utils/utilities.h:
52163
52164         PR: multithreaded trace, part 1 (without logger)
52165
52166 2004-09-24 13:42  ageay
52167
52168         * salome_adm/unix/config_files/check_lam.m4,
52169           salome_adm/unix/config_files/check_mpi.m4,
52170           salome_adm/unix/config_files/check_mpich.m4, configure.in.base:
52171
52172         [no log message]
52173
52174 2004-09-22 15:04  ageay
52175
52176         * src/Communication/: ReceiverFactory.cxx, Receivers.cxx,
52177           Receivers.hxx, SALOME_Comm_i.cxx:
52178
52179         ajout du codage standard xdr avec les sockets.
52180
52181 2004-09-22 14:57  ageay
52182
52183         * salome_adm/unix/config_files/check_omniorb.m4:
52184
52185         [no log message]
52186
52187 2004-09-17 15:32  ageay
52188
52189         * salome_adm/unix/make_commence.in,
52190           salome_adm/unix/config_files/check_lam.m4,
52191           salome_adm/unix/config_files/check_mpi.m4,
52192           salome_adm/unix/config_files/check_mpich.m4,
52193           src/MPIContainer/MPIContainer_i.cxx,
52194           src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in:
52195
52196         [no log message]
52197
52198 2004-09-17 15:29  ageay
52199
52200         * src/Makefile.in, src/Communication/Makefile.in,
52201           src/Communication/ReceiverFactory.cxx,
52202           src/Communication/SenderFactory.cxx, src/Container/Makefile.in,
52203           configure.in.base:
52204
52205         [no log message]
52206
52207 2004-09-03 14:13  ageay
52208
52209         * salome_adm/unix/make_commence.in:
52210
52211         [no log message]
52212
52213 2004-09-03 14:09  ageay
52214
52215         * src/Container/Makefile.in, src/Communication/Makefile.in,
52216           configure.in.base:
52217
52218         [no log message]
52219
52220 2004-08-19 13:09  ageay
52221
52222         * src/Communication/: Makefile.in, MultiCommException.cxx,
52223           MultiCommException.hxx, Receiver.cxx, Receiver.hxx,
52224           ReceiverFactory.cxx, ReceiverFactory.hxx, Receivers.cxx,
52225           Receivers.hxx, SALOMEMultiComm.cxx, SALOMEMultiComm.hxx,
52226           SALOME_Comm_i.cxx, SALOME_Comm_i.hxx, SenderFactory.cxx,
52227           SenderFactory.hxx:
52228
52229         [no log message]
52230
52231 2004-08-19 13:07  ageay
52232
52233         * src/Container/SALOME_Container.cxx:
52234
52235         If MPI2 is available container launches MPI_Init et MPI_Finalize for the future use of MPI methods.
52236
52237 2004-08-19 13:04  ageay
52238
52239         * src/Makefile.in:
52240
52241         Directory Communication added.
52242
52243 2004-08-19 11:07  ageay
52244
52245         * salome_adm/unix/config_files/check_sockets.m4:
52246
52247         Check if sockets can been used to transmit data between processes. Used by src/Communication.
52248
52249 2004-08-19 11:04  ageay
52250
52251         * salome_adm/unix/config_files/check_omniorb.m4:
52252
52253         Check the compatibility between double CORBA::Double et int CORBA::Long for transfert optimization in src/Communication.
52254
52255 2004-08-19 11:03  ageay
52256
52257         * salome_adm/unix/config_files/check_lam.m4:
52258
52259         Check the MPI2 functions in lam_mpi.
52260
52261 2004-08-19 10:55  ageay
52262
52263         * idl/Makefile.in:
52264
52265         Addition of SALOME_Comm.idl
52266
52267 2004-08-19 10:54  ageay
52268
52269         * idl/SALOME_Comm.idl:
52270
52271         New interface for senders used by src/Communication.
52272
52273 2004-08-19 10:53  ageay
52274
52275         * configure.in.base:
52276
52277         Check LAM and check SOCKET have been added for src/Communication.
52278
52279 2004-07-20 11:36  yfr
52280
52281         * bin/: runSalome.csh, salome.launch:
52282
52283         DCQ:prepare 2.0.0
52284
52285 2004-07-20 09:26  yfr
52286
52287         * bin/runSalome.py:
52288
52289         DCQ:prepare 2.0.0
52290
52291 2004-07-19 13:15  yfr
52292
52293         * src/: Makefile.in, TestContainer/Makefile.in,
52294           TestContainer/SALOME_TestComponentPy.py,
52295           TestContainer/SALOME_TestComponent_i.cxx,
52296           TestContainer/SALOME_TestComponent_i.hxx,
52297           TestContainer/TestComponentPy.py,
52298           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
52299           TestMPIContainer/Makefile.in,
52300           TestMPIContainer/TestMPIComponentEngine.cxx,
52301           TestMPIContainer/TestMPIComponentEngine.hxx,
52302           TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.in,
52303           Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
52304           Utils/Utils_CorbaException.hxx,
52305           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
52306           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils/Utils_Identity.cxx,
52307           Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
52308           Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
52309           Utils/Utils_SALOME_Exception.cxx,
52310           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
52311           Utils/duplicate.cxx, Utils/utilities.h:
52312
52313         DCQ: prepare V2.0.0
52314
52315 2004-07-19 13:12  yfr
52316
52317         * src/SALOMELocalTrace/: Makefile.in, SALOME_Log.cxx,
52318           SALOME_Log.hxx:
52319
52320         DCQ: prepare V2.0.0
52321
52322 2004-07-19 12:59  yfr
52323
52324         * src/SALOMEDS/:
52325           Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
52326           Handle_SALOMEDS_DrawableAttribute.hxx,
52327           Handle_SALOMEDS_ExpandableAttribute.hxx,
52328           Handle_SALOMEDS_IORAttribute.hxx,
52329           Handle_SALOMEDS_LocalIDAttribute.hxx,
52330           Handle_SALOMEDS_OCAFApplication.hxx,
52331           Handle_SALOMEDS_OpenedAttribute.hxx,
52332           Handle_SALOMEDS_PersRefAttribute.hxx,
52333           Handle_SALOMEDS_PixMapAttribute.hxx,
52334           Handle_SALOMEDS_PythonObjectAttribute.hxx,
52335           Handle_SALOMEDS_SelectableAttribute.hxx,
52336           Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
52337           Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
52338           Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
52339           Handle_SALOMEDS_TableOfRealAttribute.hxx,
52340           Handle_SALOMEDS_TargetAttribute.hxx,
52341           Handle_SALOMEDS_TextColorAttribute.hxx,
52342           Handle_SALOMEDS_TextHighlightColorAttribute.hxx, Makefile.in,
52343           README_attributes, SALOMEDS_AttLong_i.cxx,
52344           SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
52345           SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment_i.cxx,
52346           SALOMEDS_AttributeComment_i.hxx,
52347           SALOMEDS_AttributeDrawable_i.cxx,
52348           SALOMEDS_AttributeExpandable_i.cxx,
52349           SALOMEDS_AttributeExternalFileDef_i.cxx,
52350           SALOMEDS_AttributeExternalFileDef_i.hxx,
52351           SALOMEDS_AttributeFileType_i.cxx,
52352           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
52353           SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger_i.cxx,
52354           SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeName_i.cxx,
52355           SALOMEDS_AttributeOpened_i.cxx,
52356           SALOMEDS_AttributePersistentRef_i.cxx,
52357           SALOMEDS_AttributePersistentRef_i.hxx,
52358           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
52359           SALOMEDS_AttributePythonObject_i.cxx,
52360           SALOMEDS_AttributePythonObject_i.hxx,
52361           SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeReal_i.hxx,
52362           SALOMEDS_AttributeSelectable_i.cxx,
52363           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
52364           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
52365           SALOMEDS_AttributeSequenceOfReal_i.cxx,
52366           SALOMEDS_AttributeSequenceOfReal_i.hxx,
52367           SALOMEDS_AttributeStudyProperties_i.cxx,
52368           SALOMEDS_AttributeStudyProperties_i.hxx,
52369           SALOMEDS_AttributeTableOfInteger_i.cxx,
52370           SALOMEDS_AttributeTableOfInteger_i.hxx,
52371           SALOMEDS_AttributeTableOfReal_i.cxx,
52372           SALOMEDS_AttributeTableOfReal_i.hxx,
52373           SALOMEDS_AttributeTarget_i.cxx,
52374           SALOMEDS_AttributeTextColor_i.cxx,
52375           SALOMEDS_AttributeTextColor_i.hxx,
52376           SALOMEDS_AttributeTextHighlightColor_i.cxx,
52377           SALOMEDS_AttributeTextHighlightColor_i.hxx,
52378           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
52379           SALOMEDS_BasicAttributeFactory.cxx,
52380           SALOMEDS_BasicAttributeFactory.hxx,
52381           SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
52382           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
52383           SALOMEDS_Client.cxx,
52384           SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
52385           SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
52386           SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
52387           SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
52388           SALOMEDS_DataMapStringLabel.hxx,
52389           SALOMEDS_DataMapStringLabel_0.cxx,
52390           SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
52391           SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cxx,
52392           SALOMEDS_ExpandableAttribute.hxx,
52393           SALOMEDS_ExpandableAttribute.ixx,
52394           SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cxx,
52395           SALOMEDS_FileType.cxx, SALOMEDS_GenericAttribute_i.cxx,
52396           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IORAttribute.cxx,
52397           SALOMEDS_IORAttribute.hxx, SALOMEDS_IORAttribute.ixx,
52398           SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_LocalIDAttribute.hxx,
52399           SALOMEDS_LocalIDAttribute.ixx, SALOMEDS_LocalIDAttribute.jxx,
52400           SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
52401           SALOMEDS_OCAFApplication.ixx, SALOMEDS_OpenedAttribute.cxx,
52402           SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
52403           SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cxx,
52404           SALOMEDS_PersRefAttribute.hxx, SALOMEDS_PersRefAttribute.ixx,
52405           SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PixMapAttribute.hxx,
52406           SALOMEDS_PixMapAttribute.ixx, SALOMEDS_PixMapAttribute.jxx,
52407           SALOMEDS_PythonObjectAttribute.cxx,
52408           SALOMEDS_PythonObjectAttribute.hxx,
52409           SALOMEDS_PythonObjectAttribute.ixx,
52410           SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
52411           SALOMEDS_SComponentIterator_i.cxx,
52412           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
52413           SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
52414           SALOMEDS_SObject_i.hxx, SALOMEDS_SelectableAttribute.cxx,
52415           SALOMEDS_SelectableAttribute.hxx,
52416           SALOMEDS_SelectableAttribute.ixx,
52417           SALOMEDS_SelectableAttribute.jxx,
52418           SALOMEDS_SequenceOfIntegerAttribute.cxx,
52419           SALOMEDS_SequenceOfIntegerAttribute.hxx,
52420           SALOMEDS_SequenceOfIntegerAttribute.ixx,
52421           SALOMEDS_SequenceOfIntegerAttribute.jxx,
52422           SALOMEDS_SequenceOfRealAttribute.cxx,
52423           SALOMEDS_SequenceOfRealAttribute.hxx,
52424           SALOMEDS_SequenceOfRealAttribute.ixx,
52425           SALOMEDS_SequenceOfRealAttribute.jxx, SALOMEDS_Server.cxx,
52426           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
52427           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
52428           SALOMEDS_StudyPropertiesAttribute.cxx,
52429           SALOMEDS_StudyPropertiesAttribute.hxx,
52430           SALOMEDS_StudyPropertiesAttribute.ixx,
52431           SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
52432           SALOMEDS_Study_i.hxx, SALOMEDS_TableOfIntegerAttribute.cxx,
52433           SALOMEDS_TableOfIntegerAttribute.hxx,
52434           SALOMEDS_TableOfIntegerAttribute.ixx,
52435           SALOMEDS_TableOfIntegerAttribute.jxx,
52436           SALOMEDS_TableOfRealAttribute.cxx,
52437           SALOMEDS_TableOfRealAttribute.hxx,
52438           SALOMEDS_TableOfRealAttribute.ixx,
52439           SALOMEDS_TableOfRealAttribute.jxx, SALOMEDS_TargetAttribute.cxx,
52440           SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
52441           SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cxx,
52442           SALOMEDS_TextColorAttribute.hxx, SALOMEDS_TextColorAttribute.ixx,
52443           SALOMEDS_TextColorAttribute.jxx,
52444           SALOMEDS_TextHighlightColorAttribute.cxx,
52445           SALOMEDS_TextHighlightColorAttribute.hxx,
52446           SALOMEDS_TextHighlightColorAttribute.ixx,
52447           Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
52448           SALOMEDS_DrawableAttribute.cxx,
52449           SALOMEDS_TextHighlightColorAttribute.jxx:
52450
52451         DCQ: prepare V2.0.0
52452
52453 2004-07-19 12:55  yfr
52454
52455         * src/Registry/: Makefile.in, RegistryConnexion.cxx,
52456           RegistryConnexion.hxx, RegistryService.cxx, RegistryService.hxx,
52457           SALOME_Registry_Server.cxx:
52458
52459         DCQ: prepare V2.0.0
52460
52461 2004-07-19 11:55  yfr
52462
52463         * src/: ModuleCatalog/Makefile.in, ModuleCatalog/PathPrefix.hxx,
52464           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
52465           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
52466           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
52467           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
52468           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
52469           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
52470           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
52471           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
52472           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
52473           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
52474           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
52475           ModuleGenerator/Makefile.in, NOTIFICATION_SWIG/Makefile.in,
52476           NamingService/Makefile.in,
52477           NamingService/SALOME_NamingService.cxx,
52478           NamingService/SALOME_NamingService.hxx,
52479           NamingService/SALOME_NamingService.i,
52480           NamingService/SALOME_NamingServicePy.py,
52481           NamingService/ServiceUnreachable.hxx, Notification/Makefile.in:
52482
52483         DCQ: prepare V2.0.0
52484
52485 2004-07-19 11:52  yfr
52486
52487         * src/: HDFPersist/Makefile.in, LifeCycleCORBA/LifeCycleCORBA.py,
52488           LifeCycleCORBA/Makefile.in,
52489           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
52490           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
52491           LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
52492           MPIContainer/Makefile.in:
52493
52494         DCQ: prepare V2.0.0
52495
52496 2004-07-19 11:48  yfr
52497
52498         * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
52499           idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
52500           idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
52501           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
52502           idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
52503           salome_adm/Makefile.in, salome_adm/unix/make_conclude.in,
52504           salome_adm/unix/make_omniorb.in,
52505           salome_adm/unix/config_files/ac_cxx_bool.m4,
52506           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
52507           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
52508           salome_adm/unix/config_files/ac_cxx_mutable.m4,
52509           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
52510           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
52511           salome_adm/unix/config_files/ac_cxx_typename.m4,
52512           salome_adm/unix/config_files/check_htmlgen.m4,
52513           salome_adm/unix/config_files/check_pthreads.m4,
52514           salome_adm/unix/config_files/enable_pthreads.m4,
52515           salome_adm/unix/config_files/mkinstalldirs,
52516           salome_adm/unix/config_files/production.m4,
52517           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
52518           src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
52519           src/Container/SALOME_Component_i.hxx,
52520           src/Container/SALOME_Container.cxx,
52521           src/Container/SALOME_ContainerPy.py,
52522           src/Container/SALOME_Container_i.hxx:
52523
52524         DCQ: prepare V2.0.0
52525
52526 2004-07-19 11:32  yfr
52527
52528         * doc/salome/: Makefile.in, OrganisationProduction_PAL.pdf,
52529           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
52530
52531         DCQ: prepare V2.0.0
52532
52533 2004-07-19 11:13  yfr
52534
52535         * doc/: DevelopersGuide.pdf, DevelopersGuide.ps, Makefile.in,
52536           Utilitaires_SALOME.doc, Utilitaires_SALOME.pdf,
52537           Utilitaires_SALOME.ps, kernel_resources.pdf, kernel_resources.ps:
52538
52539         DCQ: prepare V2.0.0
52540
52541 2004-07-19 11:10  yfr
52542
52543         * INSTALL, Makefile.in, build_configure, configure.in.base,
52544           bin/launchConfigureParser.py, bin/runIDLparser.in,
52545           bin/runSalome.csh, bin/runSalome.py, bin/salome.launch:
52546
52547         DCQ: prepare V2.0.0
52548
52549 2004-07-01 14:02  yfr
52550
52551         * bin/: runSalome.csh, salome.launch:
52552
52553         DCQ : Add DATA during SALOME launch.
52554
52555 2004-06-28 12:09  yfr
52556
52557         * doc/salome/: OrganisationProduction_PAL.pdf,
52558           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
52559
52560         DCQ : Remove PAL files.
52561
52562 2004-06-28 10:50  yfr
52563
52564         * doc/: OrganisationProduction_PAL.pdf,
52565           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
52566
52567         DCQ : Remove PAL files.
52568
52569 2004-06-17 17:25  yfr
52570
52571         * doc/salome/tui/Makefile.in:
52572
52573         DCQ : Merge with Ecole_Ete_a6.
52574
52575 2004-06-17 17:12  yfr
52576
52577         * doc/salome/gui/Makefile.in:
52578
52579         DCQ : Merge with Ecole_Ete_a6.
52580
52581 2004-06-17 17:07  yfr
52582
52583         * doc/salome/: DevelopersGuide.pdf, DevelopersGuide.ps,
52584           KERNEL_index.html, Makefile.in, OrganisationProduction_PAL.pdf,
52585           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw,
52586           Utilitaires_SALOME.doc, Utilitaires_SALOME.pdf,
52587           Utilitaires_SALOME.ps, kernel_resources.pdf, kernel_resources.ps:
52588
52589         DCQ : Merge with Ecole_Ete_a6.
52590
52591 2004-06-17 15:44  yfr
52592
52593         * doc/Makefile.in:
52594
52595         DCQ : Merge with Ecole_Ete_a6.
52596
52597 2004-06-17 14:08  yfr
52598
52599         * salome_adm/unix/config_files/: ac_cxx_bool.m4,
52600           ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4, ac_cxx_mutable.m4,
52601           ac_cxx_namespaces.m4, ac_cxx_partial_specialization.m4,
52602           ac_cxx_typename.m4, check_pthreads.m4, enable_pthreads.m4,
52603           mkinstalldirs, production.m4:
52604
52605         DCQ : Merge with Ecole_Ete_a6.
52606
52607 2004-06-17 13:16  yfr
52608
52609         * src/: TestContainer/Makefile.in,
52610           TestContainer/SALOME_TestComponentPy.py,
52611           TestContainer/SALOME_TestComponent_i.cxx,
52612           TestContainer/SALOME_TestComponent_i.hxx,
52613           TestContainer/TestComponentPy.py,
52614           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
52615           TestMPIContainer/Makefile.in,
52616           TestMPIContainer/TestMPIComponentEngine.cxx,
52617           TestMPIContainer/TestMPIComponentEngine.hxx,
52618           TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.in,
52619           Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h,
52620           Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
52621           Utils/Utils_CorbaException.hxx,
52622           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
52623           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
52624           Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
52625           Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
52626           Utils/Utils_Identity.py, Utils/Utils_ORB_INIT.cxx,
52627           Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
52628           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
52629           Utils/Utils_Timer.cxx, Utils/duplicate.cxx, Utils/utilities.h:
52630
52631         DCQ : Merge with Ecole_ete_a6.
52632
52633 2004-06-17 13:13  yfr
52634
52635         * src/: SALOMELocalTrace/Makefile.in,
52636           SALOMELocalTrace/SALOME_Log.cxx, SALOMELocalTrace/SALOME_Log.hxx,
52637           TOOLSDS/SALOMEDS_Tool.cxx:
52638
52639         DCQ : Merge with Ecole_ete_a6.
52640
52641 2004-06-17 12:00  yfr
52642
52643         * src/SALOMEDS/: Handle_SALOMEDS_ExpandableAttribute.hxx,
52644           Handle_SALOMEDS_IORAttribute.hxx,
52645           Handle_SALOMEDS_LocalIDAttribute.hxx,
52646           Handle_SALOMEDS_OCAFApplication.hxx,
52647           Handle_SALOMEDS_OpenedAttribute.hxx,
52648           Handle_SALOMEDS_PixMapAttribute.hxx,
52649           Handle_SALOMEDS_PythonObjectAttribute.hxx,
52650           Handle_SALOMEDS_SelectableAttribute.hxx,
52651           Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
52652           Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
52653           Handle_SALOMEDS_TableOfRealAttribute.hxx,
52654           Handle_SALOMEDS_TargetAttribute.hxx,
52655           Handle_SALOMEDS_TextColorAttribute.hxx, Makefile.in,
52656           README_attributes, SALOMEDS_AttLong_i.cxx,
52657           SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
52658           SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment_i.cxx,
52659           SALOMEDS_AttributeComment_i.hxx,
52660           SALOMEDS_AttributeDrawable_i.cxx,
52661           SALOMEDS_AttributeDrawable_i.hxx,
52662           SALOMEDS_AttributeExpandable_i.hxx,
52663           SALOMEDS_AttributeExternalFileDef_i.cxx,
52664           SALOMEDS_AttributeExternalFileDef_i.hxx,
52665           SALOMEDS_AttributeFileType_i.cxx,
52666           SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.hxx,
52667           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeInteger_i.hxx,
52668           SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName_i.cxx,
52669           SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
52670           SALOMEDS_AttributePersistentRef_i.cxx,
52671           SALOMEDS_AttributePersistentRef_i.hxx,
52672           SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
52673           SALOMEDS_AttributePythonObject_i.cxx,
52674           SALOMEDS_AttributePythonObject_i.hxx,
52675           SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable_i.cxx,
52676           SALOMEDS_AttributeSelectable_i.hxx,
52677           SALOMEDS_AttributeSequenceOfInteger_i.hxx,
52678           SALOMEDS_AttributeSequenceOfReal_i.cxx,
52679           SALOMEDS_AttributeSequenceOfReal_i.hxx,
52680           SALOMEDS_AttributeStudyProperties_i.cxx,
52681           SALOMEDS_AttributeStudyProperties_i.hxx,
52682           SALOMEDS_AttributeTableOfInteger_i.hxx,
52683           SALOMEDS_AttributeTableOfReal_i.cxx,
52684           SALOMEDS_AttributeTableOfReal_i.hxx,
52685           SALOMEDS_AttributeTableOfString_i.cxx,
52686           SALOMEDS_AttributeTextColor_i.cxx,
52687           SALOMEDS_AttributeTextColor_i.hxx,
52688           SALOMEDS_AttributeTextHighlightColor_i.cxx,
52689           SALOMEDS_AttributeTreeNode_i.cxx,
52690           SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.cxx,
52691           SALOMEDS_AttributeUserID_i.hxx,
52692           SALOMEDS_BasicAttributeFactory.cxx,
52693           SALOMEDS_BasicAttribute_i.hxx, SALOMEDS_ChildIterator_i.cxx,
52694           SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Client.cxx,
52695           SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
52696           SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
52697           SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
52698           SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
52699           SALOMEDS_DataMapStringLabel.hxx,
52700           SALOMEDS_DataMapStringLabel_0.cxx,
52701           SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
52702           SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cxx,
52703           SALOMEDS_ExpandableAttribute.hxx,
52704           SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cxx,
52705           SALOMEDS_FileType.cxx, SALOMEDS_GenericAttribute_i.cxx,
52706           SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IORAttribute.cxx,
52707           SALOMEDS_IORAttribute.hxx, SALOMEDS_IORAttribute.ixx,
52708           SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_LocalIDAttribute.hxx,
52709           SALOMEDS_LocalIDAttribute.ixx, SALOMEDS_LocalIDAttribute.jxx,
52710           SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
52711           SALOMEDS_OCAFApplication.ixx, SALOMEDS_OpenedAttribute.cxx,
52712           SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
52713           SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.hxx,
52714           SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PixMapAttribute.hxx,
52715           SALOMEDS_PixMapAttribute.ixx, SALOMEDS_PythonObjectAttribute.cxx,
52716           SALOMEDS_PythonObjectAttribute.hxx,
52717           SALOMEDS_PythonObjectAttribute.ixx, SALOMEDS_SAttribute_i.hxx,
52718           SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
52719           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
52720           SALOMEDS_SelectableAttribute.cxx,
52721           SALOMEDS_SelectableAttribute.hxx,
52722           SALOMEDS_SelectableAttribute.ixx,
52723           SALOMEDS_SelectableAttribute.jxx,
52724           SALOMEDS_SequenceOfIntegerAttribute.cxx,
52725           SALOMEDS_SequenceOfIntegerAttribute.hxx,
52726           SALOMEDS_SequenceOfIntegerAttribute.ixx,
52727           SALOMEDS_SequenceOfIntegerAttribute.jxx,
52728           SALOMEDS_SequenceOfRealAttribute.cxx,
52729           SALOMEDS_SequenceOfRealAttribute.hxx,
52730           SALOMEDS_SequenceOfRealAttribute.ixx,
52731           SALOMEDS_SequenceOfRealAttribute.jxx, SALOMEDS_Server.cxx,
52732           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
52733           SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
52734           SALOMEDS_StudyPropertiesAttribute.hxx,
52735           SALOMEDS_StudyPropertiesAttribute.ixx,
52736           SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
52737           SALOMEDS_Study_i.hxx, SALOMEDS_TableOfIntegerAttribute.cxx,
52738           SALOMEDS_TableOfIntegerAttribute.hxx,
52739           SALOMEDS_TableOfIntegerAttribute.ixx,
52740           SALOMEDS_TableOfIntegerAttribute.jxx,
52741           SALOMEDS_TableOfRealAttribute.cxx,
52742           SALOMEDS_TableOfRealAttribute.hxx,
52743           SALOMEDS_TableOfRealAttribute.ixx,
52744           SALOMEDS_TableOfRealAttribute.jxx,
52745           SALOMEDS_TableOfStringAttribute.cxx,
52746           SALOMEDS_TargetAttribute.cxx, SALOMEDS_TargetAttribute.hxx,
52747           SALOMEDS_TargetAttribute.ixx, SALOMEDS_TargetAttribute.jxx,
52748           SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
52749           SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
52750           SALOMEDS_TextHighlightColorAttribute.cxx,
52751           SALOMEDS_TextHighlightColorAttribute.ixx,
52752           SALOMEDS_TextHighlightColorAttribute.jxx,
52753           SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseIterator_i.cxx,
52754           Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
52755           Handle_SALOMEDS_DrawableAttribute.hxx,
52756           Handle_SALOMEDS_PersRefAttribute.hxx,
52757           Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
52758           Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
52759           Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
52760           SALOMEDS_AttributeExpandable_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
52761           SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeOpened_i.hxx,
52762           SALOMEDS_AttributeReal_i.cxx,
52763           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
52764           SALOMEDS_AttributeTableOfInteger_i.cxx,
52765           SALOMEDS_AttributeTableOfString_i.hxx,
52766           SALOMEDS_AttributeTarget_i.cxx,
52767           SALOMEDS_AttributeTextHighlightColor_i.hxx,
52768           SALOMEDS_BasicAttributeFactory.hxx,
52769           SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_DrawableAttribute.cxx,
52770           SALOMEDS_ExpandableAttribute.ixx, SALOMEDS_PersRefAttribute.cxx,
52771           SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PixMapAttribute.jxx,
52772           SALOMEDS_PythonObjectAttribute.jxx,
52773           SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.hxx,
52774           SALOMEDS_StudyPropertiesAttribute.cxx,
52775           SALOMEDS_TextHighlightColorAttribute.hxx:
52776
52777         DCQ : Merge with Ecole_ete_a6.
52778
52779 2004-06-17 11:56  yfr
52780
52781         * src/Registry/: Makefile.in, RegistryConnexion.cxx,
52782           RegistryConnexion.hxx, RegistryService.cxx, RegistryService.hxx,
52783           SALOME_Registry_Server.cxx:
52784
52785         DCQ : Merge with Ecole_ete_a6.
52786
52787 2004-06-17 11:52  yfr
52788
52789         * src/: NamingService/Makefile.in,
52790           NamingService/SALOME_NamingService.cxx,
52791           NamingService/SALOME_NamingService.hxx,
52792           NamingService/SALOME_NamingService.i,
52793           NamingService/SALOME_NamingServicePy.py,
52794           NamingService/ServiceUnreachable.cxx,
52795           NamingService/ServiceUnreachable.hxx, Notification/Makefile.in,
52796           Notification/NOTIFICATION.cxx,
52797           Notification/NOTIFICATION_Consumer.cxx,
52798           Notification/NOTIFICATION_Supplier.cxx:
52799
52800         DCQ : Merge with Ecole_ete_a6.
52801
52802 2004-06-17 11:49  yfr
52803
52804         * src/: ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.in,
52805           ModuleGenerator/README, NOTIFICATION_SWIG/Makefile.in,
52806           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
52807           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx:
52808
52809         DCQ : Merge with Ecole_ete_a6.
52810
52811 2004-06-17 11:46  yfr
52812
52813         * src/: LifeCycleCORBA/LifeCycleCORBA.py,
52814           LifeCycleCORBA/Makefile.in,
52815           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
52816           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
52817           LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
52818           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
52819           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
52820           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
52821           MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
52822           MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx,
52823           ModuleCatalog/Makefile.in, ModuleCatalog/PathPrefix.hxx,
52824           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
52825           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
52826           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
52827           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
52828           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
52829           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
52830           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
52831           ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
52832           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
52833           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
52834           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
52835           ModuleCatalog/SALOME_TestModuleCatalog.py:
52836
52837         DCQ : Merge with Ecole_ete_a6.
52838
52839 2004-06-17 11:42  yfr
52840
52841         * src/: Container/SALOME_Container_i.hxx,
52842           GenericObj/SALOME_GenericObj_i.cc, HDFPersist/HDFascii.cc,
52843           HDFPersist/HDFattribute.cc, HDFPersist/HDFcontainerObject.cc,
52844           HDFPersist/HDFconvert.cc, HDFPersist/HDFconvert.hxx,
52845           HDFPersist/HDFdataset.cc, HDFPersist/HDFexception.hxx,
52846           HDFPersist/HDFexplorer.cc, HDFPersist/HDFfile.cc,
52847           HDFPersist/HDFgroup.cc, HDFPersist/HDFinternalObject.cc,
52848           HDFPersist/HDFobject.cc, HDFPersist/Makefile.in:
52849
52850         DCQ : Merge with Ecole_ete_a6.
52851
52852 2004-06-17 11:39  yfr
52853
52854         * idl/MPIContainer.idl, idl/MPIObject.idl, idl/Makefile.in,
52855           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
52856           idl/SALOME_Component.idl, idl/SALOME_DataTypeCatalog.idl,
52857           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
52858           idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
52859           idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
52860           idl/SALOME_TestMPIComponent.idl,
52861           idl/SALOME_TestModuleCatalog.idl, idl/TypeData.idl,
52862           src/Makefile.in, src/Container/Component_i.cxx,
52863           src/Container/Container_i.cxx, src/Container/Makefile.in,
52864           src/Container/SALOME_ComponentPy.py,
52865           src/Container/SALOME_Component_i.hxx,
52866           src/Container/SALOME_Container.cxx,
52867           src/Container/SALOME_ContainerPy.py:
52868
52869         DCQ : Merge with Ecole_ete_a6.
52870
52871 2004-06-17 11:32  yfr
52872
52873         * salome_adm/unix/config_files/: ac_cxx_bool.m4,
52874           ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4, ac_cxx_mutable.m4,
52875           ac_cxx_namespaces.m4, ac_cxx_partial_specialization.m4,
52876           ac_cxx_typename.m4, check_Kernel.m4, check_boost.m4,
52877           check_cas.m4, check_htmlgen.m4, check_mpich.m4,
52878           check_pthreads.m4, check_qt.m4, check_sip.m4, check_vtk.m4,
52879           enable_pthreads.m4, mkinstalldirs, production.m4, python.m4:
52880
52881         DCQ : Merge with Ecole_ete_a6.
52882
52883 2004-06-17 11:25  yfr
52884
52885         * salome_adm/: Makefile.in, unix/depend.in, unix/make_commence.in,
52886           unix/make_conclude.in, unix/make_module.in, unix/make_omniorb.in:
52887
52888         DCQ : Merge with Ecole_ete_a6.
52889
52890 2004-06-17 11:18  yfr
52891
52892         * bin/: VERSION, killSalome.py, killSalomeWithPort.py,
52893           launchConfigureParser.py, orbmodule.py, runNS.sh, runSalome,
52894           runSalome.csh, runSalome.py, salome.launch, showNS.py:
52895
52896         DCQ : Merge with Ecole_Ete_a6.
52897
52898 2004-06-17 11:14  yfr
52899
52900         * INSTALL, Makefile.in, build_configure, configure.in.base:
52901
52902         [no log message]
52903
52904 2004-06-08 12:54  smh
52905
52906         * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
52907
52908         minor changes
52909
52910 2004-06-07 10:28  smh
52911
52912         * src/SALOMEDS/SALOMEDS_TargetAttribute.cxx:
52913
52914         Fix on
52915         KERNEL6040, if there already has been appended the given reference then nothing to do
52916
52917 2004-05-28 17:24  prascle
52918
52919         * src/: LifeCycleCORBA/LifeCycleCORBA.py,
52920           Container/SALOME_ComponentPy.py:
52921
52922         PR : hostname must be without domain extensions (as in hostname -s)
52923
52924 2004-05-24 03:45  tajchman
52925
52926         * bin/runSalome.py:
52927
52928         petite correction d'orthographe
52929
52930 2004-05-24 02:41  tajchman
52931
52932         * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
52933
52934         Remove debug output
52935
52936 2004-05-21 13:10  tajchman
52937
52938         * src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx:
52939
52940         remove test printing
52941
52942 2004-05-18 13:37  smh
52943
52944         * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
52945           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx:
52946
52947         BUG 5885, Added a RemoveReference method as a pair to Addreference in SALOMEDS_StudyBuilder. Author: SRN
52948
52949 2004-05-17 11:44  smh
52950
52951         * src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx:
52952
52953         KERNEL5894
52954
52955 2004-05-14 15:54  tajchman
52956
52957         * src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx:
52958
52959         Add a default constructor in ParserService structure
52960
52961 2004-05-13 08:13  smh
52962
52963         * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.hxx:
52964
52965         Fix on Bug KERNEL5829
52966         - Error message when quitting Salome
52967
52968 2004-05-12 15:58  prascle
52969
52970         * src/Container/Component_i.cxx:
52971
52972         PR: strings given in setProperties are set in environment in beginService
52973
52974 2004-05-12 08:48  smh
52975
52976         * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
52977
52978         PAL5845
52979
52980 2004-05-07 00:00  tajchman
52981
52982         * src/ModuleGenerator/IDLparser.py:
52983
52984
52985         Add datastream ports handling
52986
52987 2004-05-06 18:32  nri
52988
52989         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
52990           SALOME_ModuleCatalog_Handler.cxx, SALOME_ModuleCatalog_impl.cxx:
52991
52992         NRI : Fixed bug SUPERV5830.
52993
52994 2004-05-06 09:29  smh
52995
52996         * src/ModuleCatalog/Makefile.in:
52997
52998         SMH: Put new depth for templates, KERNEL5825
52999
53000 2004-04-30 14:37  nri
53001
53002         * src/Makefile.in:
53003
53004         NRI : Merge from Event_Server.
53005
53006 2004-04-29 22:13  prascle
53007
53008         * src/TestContainer/SALOME_TestComponent_i.cxx:
53009
53010         PR: test setProperties
53011
53012 2004-04-28 21:32  prascle
53013
53014         * idl/SALOME_Component.idl, idl/SALOME_TestComponent.idl,
53015           src/Container/Component_i.cxx,
53016           src/Container/SALOME_ComponentPy.py,
53017           src/Container/SALOME_Component_i.hxx,
53018           src/TestContainer/SALOME_TestComponent_i.cxx,
53019           src/TestContainer/SALOME_TestComponent_i.hxx,
53020           src/TestContainer/TestContainer.cxx:
53021
53022         PR: setProperties ans getProperties methods on SALOMRE_component
53023
53024 2004-04-20 14:26  smh
53025
53026         * bin/launchConfigureParser.py:
53027
53028         Merge from Ecole_Ete_a1
53029
53030 2004-04-20 10:23  smh
53031
53032         * src/Makefile.in:
53033
53034         Merge from QT_EVENT branch
53035
53036 2004-04-19 12:06  prascle
53037
53038         * src/ModuleCatalog/Makefile.in:
53039
53040         PR: workaround to compile on gcc 2.94.4 (Debian Woody)
53041
53042 2004-04-19 08:55  prascle
53043
53044         * salome_adm/unix/config_files/check_cas.m4:
53045
53046         PR: on Debian Woody, fail on check compilation of cascade
53047
53048 2004-04-19 08:50  prascle
53049
53050         * bin/: killSalome.py, killSalomeWithPort.py, runSalome:
53051
53052         PR: bug when calling killSalome from shell
53053
53054 2004-04-19 08:48  prascle
53055
53056         * bin/: launchConfigureParser.py, runSalome.py:
53057
53058         PR: bug 5668 correction
53059
53060 2004-04-19 08:35  prascle
53061
53062         * src/Utils/Utils_CatchSignals.cxx:
53063
53064         PR: bug 5721 correction
53065
53066 2004-04-18 23:25  tajchman
53067
53068         * src/ModuleCatalog/: Makefile.in, PathPrefix.hxx,
53069           SALOME_ModuleCatalog_Acomponent_impl.cxx,
53070           SALOME_ModuleCatalog_Acomponent_impl.hxx,
53071           SALOME_ModuleCatalog_Client.cxx,
53072           SALOME_ModuleCatalog_Handler.cxx,
53073           SALOME_ModuleCatalog_Handler.hxx,
53074           SALOME_ModuleCatalog_Parser.hxx,
53075           SALOME_ModuleCatalog_Parser_IO.cxx,
53076           SALOME_ModuleCatalog_Parser_IO.hxx,
53077           SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
53078           SALOME_ModuleCatalog_impl.hxx, SALOME_TestModuleCatalog.py:
53079
53080         add DataStreams to ModuleCatalog implementation
53081
53082 2004-04-18 23:24  tajchman
53083
53084         * idl/: Makefile.in, SALOME_ModuleCatalog.idl,
53085           SALOME_TestModuleCatalog.idl:
53086
53087         add DataStreams to ModuleCatalog idl
53088
53089 2004-04-18 23:22  tajchman
53090
53091         * bin/launchConfigureParser.py:
53092
53093         initialize args["containers"] to empty list
53094
53095 2004-04-17 15:23  tajchman
53096
53097         * bin/launchConfigureParser.py, idl/Makefile.in,
53098           idl/SALOME_ModuleCatalog.idl, idl/SALOME_TestModuleCatalog.idl:
53099
53100         [no log message]
53101
53102 2004-04-16 20:03  tajchman
53103
53104         * src/ModuleCatalog/: Makefile.in, PathPrefix.hxx,
53105           SALOME_ModuleCatalog_Acomponent_impl.cxx,
53106           SALOME_ModuleCatalog_Acomponent_impl.hxx,
53107           SALOME_ModuleCatalog_Client.cxx,
53108           SALOME_ModuleCatalog_Handler.cxx,
53109           SALOME_ModuleCatalog_Handler.hxx,
53110           SALOME_ModuleCatalog_Parser.hxx,
53111           SALOME_ModuleCatalog_Parser_IO.cxx,
53112           SALOME_ModuleCatalog_Parser_IO.hxx,
53113           SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
53114           SALOME_ModuleCatalog_impl.hxx, SALOME_TestModuleCatalog.py:
53115
53116         Partial merge between the 1.4.1a Kernel version and
53117         the BRANCH_Kernel_DataStream version (into a temporary
53118         branch)
53119
53120 2004-04-16 09:49  tajchman
53121
53122         * bin/runIDLparser.in:
53123
53124         option -K added to omniidl
53125         (do not ignore comments)
53126
53127 2004-04-16 09:45  tajchman
53128
53129         * bin/runIDLparser.in:
53130
53131         option -K added to omniidl
53132         (do not ignore comments)
53133
53134 2004-04-16 09:26  tajchman
53135
53136         * src/ModuleGenerator/IDLparser.py:
53137
53138         [no log message]
53139
53140 2004-04-14 16:55  tajchman
53141
53142         * src/ModuleGenerator/IDLparser.py:
53143
53144         parse DataStreams in IDL files (correction)
53145
53146 2004-04-14 16:42  tajchman
53147
53148         * src/ModuleGenerator/IDLparser.py:
53149
53150         parse DataStreams in IDL files (correction)
53151
53152 2004-04-14 16:42  tajchman
53153
53154         * src/ModuleGenerator/IDLparser.py:
53155
53156         parse DataStreams in IDL files
53157
53158 2004-04-14 10:25  prascle
53159
53160         * configure.in.base:
53161
53162         PR: bug 5680 correction
53163
53164 2004-04-14 09:47  prascle
53165
53166         * src/Utils/: Utils_SALOME_Exception.cxx,
53167           Utils_SALOME_Exception.hxx:
53168
53169         PR: bug 5693 correction
53170
53171 2004-04-08 17:59  tajchman
53172
53173         * idl/SALOME_ModuleCatalog.idl:
53174
53175         [no log message]
53176
53177 2004-04-08 17:49  tajchman
53178
53179         * src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx:
53180
53181         Removing commented lines
53182
53183 2004-04-08 17:34  tajchman
53184
53185         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
53186           SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
53187           SALOME_ModuleCatalog_impl.hxx:
53188
53189         Correcting a bug in the path prefixes treatment
53190
53191 2004-04-08 15:34  prascle
53192
53193         * bin/: killSalome.py, killSalomeWithPort.py,
53194           launchConfigureParser.py, runSalome, runSalome.py, salome.launch:
53195
53196         PR: modif run and kill salome, for colocalisation
53197
53198 2004-04-07 16:16  prascle
53199
53200         * bin/runSalome.py:
53201
53202         PR: title for xterm
53203
53204 2004-04-07 13:01  prascle
53205
53206         * bin/runSalome.py, salome_adm/unix/config_files/check_omniorb.m4,
53207           salome_adm/unix/config_files/check_pyqt.m4,
53208           src/Container/Container_i.cxx,
53209           src/Container/SALOME_Container_i.hxx,
53210           src/NamingService/SALOME_NamingService.hxx,
53211           src/Registry/Makefile.in, src/SALOMEDS/Makefile.in,
53212           src/SALOMEDS/SALOMEDS_Client.cxx,
53213           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
53214           src/SALOMELocalTrace/SALOME_Log.cxx,
53215           src/SALOMELocalTrace/SALOME_Log.hxx,
53216           src/Utils/Utils_ORB_INIT.cxx, src/Utils/utilities.h:
53217
53218         PR: manual merge from tag V1_4_0 and QT_THREAD branch (without modifs from BSEC_br1 branch)
53219
53220 2004-04-07 12:22  tajchman
53221
53222         * idl/Makefile.in, idl/SALOME_ModuleCatalog.idl,
53223           idl/SALOME_TestModuleCatalog.idl, src/ModuleCatalog/Makefile.in,
53224           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
53225           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
53226           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
53227           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
53228           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
53229           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
53230           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
53231           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
53232           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
53233           src/ModuleCatalog/SALOME_TestModuleCatalog.py:
53234
53235         Update of the ModuleCatalog server
53236
53237 2004-04-06 16:14  prascle
53238
53239         * src/Utils/utilities.h:
53240
53241         PR: to avoid confusion with QThread.exit()
53242
53243 2004-04-06 16:12  prascle
53244
53245         * bin/runSalome.py:
53246
53247         PR: colocalisation prototype 3
53248
53249 2004-04-06 10:16  tajchman
53250
53251         * src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
53252
53253         [no log message]
53254
53255 2004-04-06 10:04  tajchman
53256
53257         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
53258           SALOME_ModuleCatalog_Handler.cxx,
53259           SALOME_ModuleCatalog_Parser_IO.cxx,
53260           SALOME_ModuleCatalog_impl.cxx, SALOME_ModuleCatalog_impl.hxx,
53261           SALOME_TestModuleCatalog.py:
53262
53263         [no log message]
53264
53265 2004-04-06 10:01  tajchman
53266
53267         * idl/: SALOME_ModuleCatalog.idl:
53268
53269         Add an IDL method to dynamically import a new
53270         catalog file
53271
53272 2004-04-02 16:43  tajchman
53273
53274         * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
53275           SALOME_ModuleCatalog_Handler.hxx:
53276
53277         [no log message]
53278
53279 2004-04-02 16:16  smh
53280
53281         * bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
53282           bin/runSalome.csh, bin/salome.launch, bin/showNS.py,
53283           doc/salome/DevelopersGuide.pdf, doc/salome/DevelopersGuide.ps,
53284           doc/salome/KERNEL_index.html, doc/salome/Makefile.in,
53285           doc/salome/OrganisationProduction_PAL.pdf,
53286           doc/salome/OrganisationProduction_PAL.ps,
53287           doc/salome/OrganisationProduction_PAL.sxw,
53288           doc/salome/Utilitaires_SALOME.doc,
53289           doc/salome/Utilitaires_SALOME.pdf,
53290           doc/salome/Utilitaires_SALOME.ps,
53291           doc/salome/kernel_resources.pdf, doc/salome/kernel_resources.ps,
53292           doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.in,
53293           salome_adm/unix/config_files/check_boost.m4:
53294
53295         SALOME PAL V1_4_1
53296
53297 2004-04-02 15:47  smh
53298
53299         * src/Utils/: Utils_CatchSignals.cxx, Utils_CatchSignals.h,
53300           Utils_ExceptHandlers.cxx, Utils_ExceptHandlers.hxx:
53301
53302         SALOME PAL V1_4_1
53303
53304 2004-04-02 15:11  smh
53305
53306         * bin/VERSION, bin/killSalome.py, bin/orbmodule.py, bin/runNS.sh,
53307           bin/runSalome, bin/runSalome.py, doc/Makefile.in,
53308           idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
53309           idl/SALOME_Component.idl, idl/SALOME_ModuleCatalog.idl,
53310           salome_adm/Makefile.in, salome_adm/unix/make_commence.in,
53311           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
53312           salome_adm/unix/config_files/check_Kernel.m4,
53313           salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
53314           src/Container/Container_i.cxx,
53315           src/Container/SALOME_Container.cxx,
53316           src/Container/SALOME_ContainerPy.py,
53317           src/Container/SALOME_Container_i.hxx,
53318           src/GenericObj/SALOME_GenericObj_i.cc,
53319           src/HDFPersist/HDFconvert.hxx, src/HDFPersist/HDFexception.hxx,
53320           src/LifeCycleCORBA/LifeCycleCORBA.py,
53321           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
53322           src/Logger/SALOME_Trace.py, src/MPIContainer/MPIContainer_i.cxx,
53323           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
53324           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
53325           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
53326           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
53327           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
53328           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
53329           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
53330           src/ModuleGenerator/IDLparser.py, src/ModuleGenerator/README,
53331           src/NamingService/SALOME_NamingService.cxx,
53332           src/Registry/RegistryService.hxx,
53333           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
53334           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
53335           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
53336           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
53337           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
53338           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
53339           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
53340           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
53341           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
53342           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
53343           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
53344           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
53345           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
53346           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
53347           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
53348           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
53349           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
53350           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
53351           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
53352           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
53353           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
53354           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
53355           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
53356           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
53357           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
53358           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
53359           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
53360           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
53361           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
53362           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
53363           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
53364           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
53365           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
53366           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
53367           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
53368           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
53369           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
53370           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
53371           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
53372           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
53373           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
53374           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
53375           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
53376           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
53377           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
53378           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
53379           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
53380           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
53381           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
53382           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
53383           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
53384           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
53385           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
53386           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
53387           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
53388           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
53389           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
53390           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
53391           src/SALOMEDS/SALOMEDS_FileType.cxx,
53392           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
53393           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
53394           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
53395           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
53396           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
53397           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
53398           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
53399           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
53400           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
53401           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
53402           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
53403           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
53404           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
53405           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
53406           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
53407           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
53408           src/SALOMEDS/SALOMEDS_Study_i.cxx,
53409           src/SALOMEDS/SALOMEDS_Study_i.hxx,
53410           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
53411           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
53412           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
53413           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
53414           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
53415           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
53416           src/TestContainer/TestContainer.cxx,
53417           src/TestContainer/TestLogger.cxx, src/Utils/Makefile.in,
53418           src/Utils/Utils_CorbaException.hxx, src/Utils/Utils_ORB_INIT.cxx,
53419           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/utilities.h:
53420
53421         SALOME PAL V1_4_1
53422
53423 2004-04-02 14:41  smh
53424
53425         * INSTALL, LICENCE, Makefile.in, build_configure,
53426           configure.in.base:
53427
53428         SALOME PAL V1_4_1
53429
53430 2004-04-02 13:43  tajchman
53431
53432         * src/ModuleGenerator/IDLparser.py:
53433
53434         [no log message]
53435
53436 2004-04-02 13:36  tajchman
53437
53438         * bin/runIDLparser.in:
53439
53440         use option -k to keep comments when parsing
53441         idl files
53442
53443 2004-04-02 10:44  tajchman
53444
53445         * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx:
53446
53447         [no log message]
53448
53449 2004-04-02 08:53  tajchman
53450
53451         * src/ModuleGenerator/IDLparser.py:
53452
53453         DataStream ports treatment
53454         (idl file -> xml catalogs)
53455
53456 2004-04-02 08:50  tajchman
53457
53458         * src/ModuleCatalog/: SALOME_ModuleCatalog_Parser_IO.cxx,
53459           SALOME_ModuleCatalog_Handler.cxx,
53460           SALOME_ModuleCatalog_Handler.hxx:
53461
53462         [no log message]
53463
53464 2004-04-02 08:30  smh
53465
53466         * src/Makefile.in:
53467
53468         make salome compilable
53469
53470 2004-03-31 13:46  tajchman
53471
53472         * idl/SALOME_ModuleCatalog.idl, src/ModuleCatalog/Makefile.in,
53473           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
53474           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
53475           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
53476           src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
53477           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
53478
53479         [no log message]
53480
53481 2004-03-30 19:33  tajchman
53482
53483         * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
53484
53485         [no log message]
53486
53487 2004-03-30 16:51  smh
53488
53489         * src/Makefile.in:
53490
53491         Library for SALOME_Event object added
53492
53493 2004-03-30 16:33  tajchman
53494
53495         * src/ModuleCatalog/: PathPrefix.hxx,
53496           SALOME_ModuleCatalog_Acomponent_impl.cxx,
53497           SALOME_ModuleCatalog_Acomponent_impl.hxx,
53498           SALOME_ModuleCatalog_Client.cxx,
53499           SALOME_ModuleCatalog_Handler.cxx,
53500           SALOME_ModuleCatalog_Handler.hxx,
53501           SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
53502
53503         Revision of the Salome ModuleCatalog
53504         Adding DataStreamPorts
53505         (this version needs debugging)
53506
53507 2004-03-29 17:15  prascle
53508
53509         * bin/runSalome.py, src/Registry/Makefile.in,
53510           src/SALOMEDS/Makefile.in:
53511
53512         PR: Server Colocalisation : prototype for test
53513
53514 2004-03-25 09:15  prascle
53515
53516         * bin/runSalome.py:
53517
53518         PR: 5525 correction proposal
53519
53520 2004-03-22 08:28  prascle
53521
53522         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
53523
53524         PR: with gcc 2.95.4 (DEBIAN Woody) use "" instead of <> for dependancies
53525
53526 2004-03-22 08:25  prascle
53527
53528         * salome_adm/unix/config_files/check_pyqt.m4:
53529
53530         PR: qt.py could be in $PYQTLIB or in $PYQTLIB/qt
53531
53532 2004-03-22 08:23  prascle
53533
53534         * bin/runSalome.py:
53535
53536         PR: On DEBIAN Woody, need to give LD_LIBRARY_PATH in args for xterm
53537
53538 2004-03-19 16:38  rahuel
53539
53540         * src/LifeCycleCORBA/LifeCycleCORBA.py:
53541
53542         [no log message]
53543
53544 2004-03-19 16:32  rahuel
53545
53546         * bin/runSalome.py, idl/ResourcesManager.idl:
53547
53548         [no log message]
53549
53550 2004-03-17 10:19  prascle
53551
53552         * idl/: MPIContainer.idl, MPIObject.idl, TypeData.idl:
53553
53554         PR: remove idl files no longer needed
53555
53556 2004-03-17 09:13  prascle
53557
53558         * Makefile.in, configure.in.base, bin/runSalome.py,
53559           idl/Makefile.in, idl/SALOME_MPIContainer.idl,
53560           idl/SALOME_MPIObject.idl, idl/SALOME_TestMPIComponent.idl,
53561           salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
53562           salome_adm/unix/make_conclude.in,
53563           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
53564           salome_adm/unix/config_files/ac_cxx_option.m4,
53565           salome_adm/unix/config_files/ac_cxx_template_options.m4,
53566           salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
53567           salome_adm/unix/config_files/ac_cxx_warnings.m4,
53568           salome_adm/unix/config_files/ac_linker_options.m4,
53569           salome_adm/unix/config_files/check_cas.m4,
53570           salome_adm/unix/config_files/check_htmlgen.m4,
53571           salome_adm/unix/config_files/check_mpi.m4,
53572           salome_adm/unix/config_files/check_mpich.m4,
53573           salome_adm/unix/config_files/check_pthreads.m4,
53574           salome_adm/unix/config_files/check_pyqt.m4,
53575           salome_adm/unix/config_files/check_qt.m4,
53576           salome_adm/unix/config_files/check_sip.m4,
53577           salome_adm/unix/config_files/check_vtk.m4,
53578           salome_adm/unix/config_files/production.m4,
53579           salome_adm/unix/config_files/python.m4, src/Makefile.in,
53580           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
53581           src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
53582           src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
53583           src/HDFPersist/HDFattribute.cc,
53584           src/HDFPersist/HDFcontainerObject.cc,
53585           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
53586           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFexception.hxx,
53587           src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
53588           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
53589           src/HDFPersist/HDFobject.cc,
53590           src/LifeCycleCORBA/LifeCycleCORBA.py,
53591           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
53592           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
53593           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
53594           src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
53595           src/Logger/SALOME_Trace.hxx, src/MPIContainer/MPIContainer_i.cxx,
53596           src/MPIContainer/MPIContainer_i.hxx,
53597           src/MPIContainer/MPIObject_i.cxx,
53598           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
53599           src/MPIContainer/SALOME_MPIContainer.cxx,
53600           src/ModuleCatalog/Makefile.in,
53601           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
53602           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
53603           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
53604           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
53605           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
53606           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
53607           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
53608           src/NamingService/SALOME_NamingService.cxx,
53609           src/NamingService/ServiceUnreachable.cxx,
53610           src/Notification/NOTIFICATION.cxx,
53611           src/Notification/NOTIFICATION_Consumer.cxx,
53612           src/Notification/NOTIFICATION_Supplier.cxx,
53613           src/Registry/RegistryConnexion.cxx,
53614           src/Registry/RegistryService.cxx,
53615           src/Registry/RegistryService.hxx,
53616           src/Registry/SALOME_Registry_Server.cxx,
53617           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
53618           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
53619           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
53620           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
53621           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
53622           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
53623           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
53624           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
53625           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
53626           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
53627           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
53628           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
53629           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
53630           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
53631           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
53632           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
53633           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
53634           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
53635           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
53636           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
53637           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
53638           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
53639           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
53640           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
53641           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
53642           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
53643           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
53644           src/SALOMEDS/SALOMEDS_Client.cxx,
53645           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
53646           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
53647           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
53648           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
53649           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
53650           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
53651           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
53652           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
53653           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
53654           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
53655           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
53656           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
53657           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
53658           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
53659           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
53660           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
53661           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
53662           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
53663           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
53664           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
53665           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
53666           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
53667           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
53668           src/SALOMEDS/SALOMEDS_Study_i.cxx,
53669           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
53670           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
53671           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
53672           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
53673           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
53674           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
53675           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
53676           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
53677           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
53678           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
53679           src/SALOMELocalTrace/SALOME_Log.cxx,
53680           src/SALOMELocalTrace/SALOME_Log.hxx,
53681           src/TOOLSDS/SALOMEDS_Tool.cxx,
53682           src/TestContainer/SALOME_TestComponent_i.cxx,
53683           src/TestContainer/TestContainer.cxx,
53684           src/TestContainer/TestLogger.cxx,
53685           src/TestMPIContainer/Makefile.in,
53686           src/TestMPIContainer/TestMPIComponentEngine.cxx,
53687           src/TestMPIContainer/TestMPIComponentEngine.hxx,
53688           src/TestMPIContainer/TestMPIContainer.cxx,
53689           src/Utils/Utils_CommException.cxx,
53690           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
53691           src/Utils/Utils_ORB_INIT.cxx,
53692           src/Utils/Utils_SALOME_Exception.cxx,
53693           src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
53694           src/Utils/utilities.h:
53695
53696         PR: mergefrom_BSEC_br1_14Mar04
53697
53698 2004-03-16 16:04  rahuel
53699
53700         * bin/killSalome.py:
53701
53702         [no log message]
53703
53704 2004-03-16 14:45  prascle
53705
53706         * idl/SALOME_Component.idl,
53707           salome_adm/unix/config_files/check_omniorb.m4,
53708           src/Container/Container_i.cxx,
53709           src/Container/SALOME_Container_i.hxx, src/Logger/SALOME_Trace.py,
53710           src/NamingService/SALOME_NamingService.hxx,
53711           src/SALOMEDS/SALOMEDS_Client.cxx,
53712           src/SALOMEDS/SALOMEDS_Server.cxx,
53713           src/SALOMELocalTrace/SALOME_Log.cxx,
53714           src/SALOMELocalTrace/SALOME_Log.hxx,
53715           src/Utils/Utils_ORB_INIT.cxx, src/Utils/utilities.h:
53716
53717         merge from trunk tag mergeto_BSEC_br1_14Mar04
53718
53719 2004-03-15 10:39  prascle
53720
53721         * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
53722           src/Container/SALOME_Container_i.hxx:
53723
53724         PR: mergefrom_KLOSS_br1_13Mar04
53725
53726 2004-03-15 10:30  prascle
53727
53728         * salome_adm/unix/config_files/check_omniorb.m4,
53729           src/NamingService/SALOME_NamingService.hxx,
53730           src/SALOMEDS/SALOMEDS_Client.cxx,
53731           src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
53732
53733         PR: merge from trunk tag mergeto_KLOSS_br1_13Mar04
53734
53735 2004-03-15 09:48  prascle
53736
53737         * salome_adm/unix/config_files/check_omniorb.m4,
53738           src/NamingService/SALOME_NamingService.hxx,
53739           src/SALOMEDS/SALOMEDS_Client.cxx,
53740           src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
53741
53742         PR: mergefrom_ADAM_br1_12Mar04
53743
53744 2004-03-12 20:55  prascle
53745
53746         * INSTALL, bin/VERSION, bin/orbmodule.py, bin/runSalome,
53747           bin/runSalome.py, idl/Makefile.in, idl/SALOMEDS.idl,
53748           idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
53749           idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
53750           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
53751           salome_adm/unix/config_files/check_pyqt.m4,
53752           salome_adm/unix/config_files/check_sip.m4, src/Makefile.in,
53753           src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
53754           src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
53755           src/GenericObj/SALOME_GenericObj_i.cc,
53756           src/GenericObj/SALOME_GenericObj_i.hh,
53757           src/LifeCycleCORBA/Makefile.in,
53758           src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
53759           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
53760           src/ModuleCatalog/Makefile.in,
53761           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
53762           src/ModuleGenerator/IDLparser.py,
53763           src/NamingService/SALOME_NamingServicePy.py,
53764           src/Notification/Makefile.in, src/Registry/Makefile.in,
53765           src/Registry/SALOME_Registry_Server.cxx,
53766           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
53767           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
53768           src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
53769           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
53770           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
53771           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
53772           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
53773           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
53774           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
53775           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
53776           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
53777           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
53778           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
53779           src/SALOMEDS/SALOMEDS_FileType.cdl,
53780           src/SALOMEDS/SALOMEDS_FileType.cxx,
53781           src/SALOMEDS/SALOMEDS_FileType.hxx,
53782           src/SALOMEDS/SALOMEDS_FileType.ixx,
53783           src/SALOMEDS/SALOMEDS_FileType.jxx,
53784           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
53785           src/SALOMEDS/SALOMEDS_Server.cxx,
53786           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
53787           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
53788           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
53789           src/SALOMEDS/SALOMEDS_Study_i.cxx,
53790           src/SALOMEDS/SALOMEDS_Study_i.hxx,
53791           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
53792           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
53793           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
53794           src/SALOMELocalTrace/Makefile.in,
53795           src/SALOMELocalTrace/SALOME_Log.cxx,
53796           src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
53797           src/TestContainer/Makefile.in,
53798           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
53799           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
53800           src/Utils/Utils_SALOME_Exception.cxx,
53801           src/Utils/Utils_SINGLETON.hxx, src/Utils/utilities.h:
53802
53803         PR: merge from head (tag mergeto_ADAM_br1_12Mar04)
53804
53805 2004-03-11 09:24  rahuel
53806
53807         * src/LifeCycleCORBA/LifeCycleCORBA.py:
53808
53809         Remove of internal/private method GetComputerPath
53810
53811 2004-03-10 13:32  rahuel
53812
53813         * idl/ContainersManager.idl, bin/killSalome.py, bin/runSalome.py,
53814           src/TestContainer/Makefile.in,
53815           src/TestContainer/SALOME_TestComponentPy.py,
53816           src/TestContainer/TestComponentPy.py,
53817           src/TestContainer/TestContainer.cxx:
53818
53819         [no log message]
53820
53821 2004-03-10 13:28  rahuel
53822
53823         * src/: Container/Component_i.cxx, Container/Container_i.cxx,
53824           Container/SALOME_ComponentPy.py, Container/SALOME_ContainerPy.py,
53825           NamingService/SALOME_NamingServicePy.py:
53826
53827         [no log message]
53828
53829 2004-03-10 12:30  secher
53830
53831         * src/: MPIContainer/MPIContainer_i.cxx,
53832           MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
53833           Container/Container_i.cxx:
53834
53835         mise a jour suite a test de composants NP
53836
53837 2004-03-08 09:44  rahuel
53838
53839         * src/Container/: Container_i.cxx, SALOME_ComponentPy.py:
53840
53841         [no log message]
53842
53843 2004-03-05 16:10  rahuel
53844
53845         * src/: ResourcesManager/ResourcesManager_Server.cxx,
53846           TestContainer/TestContainer.cxx:
53847
53848         [no log message]
53849
53850 2004-03-05 16:07  rahuel
53851
53852         * resources/ResourcesCatalog.xml, idl/ContainersManager.idl,
53853           idl/SALOME_Component.idl, src/Container/Container_i.cxx,
53854           src/Container/SALOME_Container_i.hxx:
53855
53856         [no log message]
53857
53858 2004-03-03 09:47  rahuel
53859
53860         * bin/startContainer.py:
53861
53862         [no log message]
53863
53864 2004-03-03 09:42  rahuel
53865
53866         * src/ResourcesManager/ResourcesManager_Impl.cxx,
53867           src/ResourcesManager/ResourcesManager_Impl.hxx,
53868           resources/ResourcesCatalog.xml:
53869
53870         [no log message]
53871
53872 2004-03-02 17:06  rahuel
53873
53874         * src/ResourcesManager/: ResourcesManager_Handler.cxx,
53875           ResourcesManager_Impl.cxx, ResourcesManager_Impl.hxx:
53876
53877         [no log message]
53878
53879 2004-03-02 17:02  rahuel
53880
53881         * idl/: ContainersManager.idl, ResourcesManager.idl:
53882
53883         [no log message]
53884
53885 2004-03-02 16:41  rahuel
53886
53887         * idl/: Makefile.in, SALOME_Component.idl:
53888
53889         [no log message]
53890
53891 2004-03-02 16:00  rahuel
53892
53893         * src/ResourcesManager/ResourcesManager_Impl.cxx:
53894
53895         [no log message]
53896
53897 2004-03-02 15:46  rahuel
53898
53899         * src/LifeCycleCORBA/: LifeCycleCORBA.py,
53900           SALOME_LifeCycleCORBA.cxx, SALOME_LifeCycleCORBA.hxx:
53901
53902         [no log message]
53903
53904 2004-03-02 09:51  rahuel
53905
53906         * resources/ResourcesCatalog.xml:
53907
53908         [no log message]
53909
53910 2004-03-01 10:36  rahuel
53911
53912         * src/: Container/Container_i.cxx, Container/SALOME_ContainerPy.py,
53913           Container/SALOME_Container_i.hxx, SALOMEDS/Makefile.in:
53914
53915         Use of ContainersManager and ResourcesManager
53916
53917 2004-03-01 10:33  rahuel
53918
53919         * Makefile.in, bin/runSalome, bin/runSalome.py,
53920           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
53921           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
53922
53923         Use of ContainersManager and ResourcesManager
53924
53925 2004-03-01 10:30  rahuel
53926
53927         * src/ResourcesManager/: ResourcesManager_Impl.cxx,
53928           ResourcesManager_Impl.hxx:
53929
53930         Use of ContainersManager and ResourcesManager
53931
53932 2004-02-26 17:15  rahuel
53933
53934         * src/LifeCycleCORBA/: Makefile.in, SALOME_LifeCycleCORBA.cxx,
53935           SALOME_LifeCycleCORBA.hxx, TestLifeCycleCORBA.cxx:
53936
53937         Use of ContainersManager and ResourcesManager
53938
53939 2004-02-26 17:13  rahuel
53940
53941         * src/Makefile.in:
53942
53943         New servers : ContainersManager and ResourcesManager
53944
53945 2004-02-26 17:12  rahuel
53946
53947         * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
53948           ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
53949           ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
53950           ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
53951           ResourcesManager_Server.cxx:
53952
53953         New server : ResourcesManager (Computers)
53954
53955 2004-02-11 12:12  fkl
53956
53957         * src/Container/: SALOME_Container_i.hxx, Container_i.cxx:
53958
53959         new functionnalities for colocalisation optimization in GEOMClient
53960
53961 2004-02-11 12:11  fkl
53962
53963         * idl/SALOME_Component.idl:
53964
53965         new functionnalities for colocalisation performance in GEOMClient
53966
53967 2004-02-08 23:11  prascle
53968
53969         * src/Container/SALOME_ComponentPy.py:
53970
53971         PR: error in machine name (missing split HOSTNAME)
53972
53973 2004-02-08 22:59  prascle
53974
53975         * src/Logger/SALOME_Trace.py:
53976
53977         PR: merge from trunk 07Feb04
53978
53979 2004-02-08 22:56  prascle
53980
53981         * src/: SALOMELocalTrace/SALOME_Log.cxx,
53982           SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
53983
53984         PR: merge from trunk 07Feb04
53985
53986 2004-02-08 19:47  prascle
53987
53988         * src/SALOMELocalTrace/SALOME_Log.cxx:
53989
53990         PR: error in last commit
53991
53992 2004-02-07 17:09  prascle
53993
53994         * src/: SALOMELocalTrace/SALOME_Log.cxx,
53995           SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
53996
53997         PR: Garbage text in local trace or crash, in optimized mode : KERNEL 5125
53998
53999 2004-02-06 09:37  secher
54000
54001         * salome_adm/unix/: depend.in, make_commence.in:
54002
54003         merge avec la version V1_4_0b1
54004
54005 2004-02-06 09:20  secher
54006
54007         * salome_adm/unix/config_files/check_sip.m4:
54008
54009         merge avec la version V1_4_0b1
54010
54011 2004-02-06 09:17  secher
54012
54013         * salome_adm/unix/: make_module.in, config_files/check_cas.m4:
54014
54015         merge avec la version V1_4_0b1
54016
54017 2004-02-06 09:13  secher
54018
54019         * src/: TOOLSDS/Makefile.in, TestContainer/Makefile.in,
54020           TestContainer/TestContainer.cxx, TestMPIContainer/Makefile.in,
54021           Utils/Makefile.in, Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
54022           Utils/Utils_SALOME_Exception.cxx, Utils/Utils_SINGLETON.hxx,
54023           Utils/utilities.h:
54024
54025         merge avec la version V1_4_0b1
54026
54027 2004-02-06 09:07  secher
54028
54029         * src/: Registry/Makefile.in, Registry/SALOME_Registry_Server.cxx,
54030           SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
54031           SALOMEDS/Handle_SALOMEDS_FileType.hxx, SALOMEDS/Makefile.in,
54032           SALOMEDS/README_attributes,
54033           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
54034           SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
54035           SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
54036           SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
54037           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
54038           SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
54039           SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
54040           SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
54041           SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
54042           SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
54043           SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
54044           SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
54045           SALOMEDS/SALOMEDS_FileType.jxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
54046           SALOMEDS/SALOMEDS_Server.cxx,
54047           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
54048           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
54049           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
54050           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
54051           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
54052           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
54053           SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
54054           SALOMELocalTrace/Makefile.in, SALOMELocalTrace/SALOME_Log.cxx,
54055           SALOMELocalTrace/SALOME_Log.hxx:
54056
54057         merge avec la version V1_4_0b1
54058
54059 2004-02-06 09:04  secher
54060
54061         * src/: Logger/SALOME_Logger_Server.cxx,
54062           Logger/SALOME_Logger_Server.hxx, Logger/SALOME_Trace.cxx,
54063           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
54064           MPIContainer/Makefile.in, ModuleCatalog/Makefile.in,
54065           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54066           ModuleGenerator/IDLparser.py,
54067           NamingService/SALOME_NamingServicePy.py,
54068           Notification/Makefile.in:
54069
54070         merge avec la version V1_4_0b1
54071
54072 2004-02-06 09:00  secher
54073
54074         * src/: Makefile.in, Container/Component_i.cxx,
54075           Container/Container_i.cxx, Container/Makefile.in,
54076           Container/SALOME_ComponentPy.py,
54077           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
54078           Container/SALOME_ContainerPy.py, GenericObj/Makefile.in,
54079           GenericObj/SALOME_GenericObj_i.cc,
54080           GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFattrCreate.c,
54081           HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
54082           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetType.c,
54083           HDFPersist/HDFdatasetRead.c, HDFPersist/HDFdatasetWrite.c,
54084           HDFPersist/Makefile.in, LifeCycleCORBA/Makefile.in:
54085
54086         merge avec la version V1_4_0b1
54087
54088 2004-02-06 08:57  secher
54089
54090         * idl/: Logger.idl, Makefile.in, SALOMEDS.idl,
54091           SALOMEDS_Attributes.idl, SALOME_Component.idl,
54092           SALOME_Exception.idl, SALOME_GenericObj.idl,
54093           SALOME_ModuleCatalog.idl, SALOME_Session.idl:
54094
54095         merge avec la version V1_4_0b1
54096
54097 2004-02-06 08:54  secher
54098
54099         * bin/VERSION, bin/orbmodule.py, bin/runSalome, bin/runSalome.py,
54100           INSTALL, LICENCE, Makefile.in, configure.in.base:
54101
54102         merge avec la version V1_4_0b1
54103
54104 2004-02-03 16:39  prascle
54105
54106         * src/Logger/SALOME_Trace.py:
54107
54108         PR: more robust (from Mikhail PONIKAROV)
54109
54110 2004-02-03 14:16  tajchman
54111
54112         * bin/: orbmodule.py, runNS.sh, runSalome.py:
54113
54114         Modify access permissions for log files
54115
54116 2004-02-01 21:10  prascle
54117
54118         * INSTALL, bin/VERSION, bin/runSalome.py, idl/Makefile.in,
54119           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
54120           idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
54121           idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
54122           idl/SALOME_Session.idl, src/Makefile.in,
54123           src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
54124           src/GenericObj/SALOME_GenericObj_i.cc,
54125           src/GenericObj/SALOME_GenericObj_i.hh,
54126           src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
54127           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
54128           src/NamingService/SALOME_NamingServicePy.py,
54129           src/SALOMEDS/Makefile.in,
54130           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
54131           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
54132           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
54133           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
54134           src/SALOMEDS/SALOMEDS_Study_i.cxx,
54135           src/SALOMEDS/SALOMEDS_Study_i.hxx,
54136           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
54137           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
54138           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
54139           src/Utils/Utils_SINGLETON.hxx:
54140
54141         PR: merge from trunk, tag mergefrom_trunk_01Feb04
54142
54143 2004-01-30 14:28  prascle
54144
54145         * INSTALL, bin/VERSION, bin/runSalome.py, idl/Makefile.in,
54146           idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
54147           idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
54148           idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
54149           idl/SALOME_Session.idl, src/Makefile.in,
54150           src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
54151           src/GenericObj/SALOME_GenericObj_i.cc,
54152           src/GenericObj/SALOME_GenericObj_i.hh,
54153           src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
54154           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
54155           src/NamingService/SALOME_NamingServicePy.py,
54156           src/SALOMEDS/Makefile.in,
54157           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
54158           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
54159           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
54160           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
54161           src/SALOMEDS/SALOMEDS_Study_i.cxx,
54162           src/SALOMEDS/SALOMEDS_Study_i.hxx,
54163           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
54164           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
54165           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
54166           src/Utils/Utils_SINGLETON.hxx:
54167
54168         PR: merge SalomePro 1_2d = mergefrom_BRANCH_MergeV1_2d
54169
54170 2004-01-28 15:51  secher
54171
54172         * src/: MPIContainer/MPIContainer_i.cxx,
54173           MPIContainer/MPIObject_i.cxx,
54174           MPIContainer/SALOME_MPIContainer.cxx,
54175           TestMPIContainer/TestMPIComponentEngine.cxx:
54176
54177         gestion parallelisme sur CCRT
54178
54179 2004-01-28 14:37  smh
54180
54181         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
54182
54183         MPV: Merge V1.2c - correction
54184
54185 2004-01-28 14:36  secher
54186
54187         * salome_adm/unix/make_commence.in,
54188           salome_adm/unix/config_files/check_mpi.m4, configure.in.base,
54189           src/Makefile.in, src/MPIContainer/Makefile.in:
54190
54191         gestion parallelisme sur CCRT
54192
54193 2004-01-27 10:22  smh
54194
54195         * src/Utils/utilities.h:
54196
54197         MPV: Merge V1.2c
54198
54199 2004-01-26 15:18  smh
54200
54201         * src/: Makefile.in, GenericObj/Makefile.in,
54202           GenericObj/SALOME_GenericObj_i.cc,
54203           GenericObj/SALOME_GenericObj_i.hh, SALOMEDS/Makefile.in:
54204
54205         MPV: Merge V1.2c
54206
54207 2004-01-26 15:15  smh
54208
54209         * src/Utils/utilities.h:
54210
54211         MPV: Merge V1.2c
54212
54213 2004-01-26 15:03  smh
54214
54215         * src/Utils/Utils_SINGLETON.hxx:
54216
54217         MPV: Merge V1.2c
54218
54219 2004-01-26 14:51  smh
54220
54221         * src/SALOMEDS/: SALOMEDS_AttributeIOR_i.cxx,
54222           SALOMEDS_SObject_i.cxx, SALOMEDS_StudyBuilder_i.cxx,
54223           SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.cxx,
54224           SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx,
54225           SALOMEDS_TableOfIntegerAttribute.cxx,
54226           SALOMEDS_TableOfRealAttribute.cxx,
54227           SALOMEDS_TableOfStringAttribute.cxx:
54228
54229         MPV: Merge V1.2c
54230
54231 2004-01-26 14:42  smh
54232
54233         * src/NamingService/SALOME_NamingServicePy.py:
54234
54235         MPV: Merge V1.2c
54236
54237 2004-01-26 14:36  smh
54238
54239         * src/: Container/SALOME_ContainerPy.py,
54240           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
54241           Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py:
54242
54243         MPV: Merge V1.2c
54244
54245 2004-01-26 14:30  smh
54246
54247         * idl/: Makefile.in, SALOMEDS.idl, SALOMEDS_Attributes.idl,
54248           SALOME_Component.idl, SALOME_Exception.idl,
54249           SALOME_ModuleCatalog.idl, SALOME_Session.idl:
54250
54251         MPV: Merge V1.2c
54252
54253 2004-01-26 14:21  smh
54254
54255         * idl/SALOME_GenericObj.idl:
54256
54257         MPV: merge V1.2c
54258
54259 2004-01-26 10:54  secher
54260
54261         * salome_adm/unix/config_files/: ac_cxx_option.m4,
54262           ac_cxx_template_options.m4, ac_cxx_warnings.m4,
54263           ac_linker_options.m4, check_cas.m4, check_pthreads.m4:
54264
54265         renommage ax_cxx_option en ac_cxx_option
54266
54267 2004-01-26 09:51  secher
54268
54269         * salome_adm/unix/config_files/ac_cxx_template_options.m4:
54270
54271         portage sur Alpha/osf
54272
54273 2004-01-23 09:44  tajchman
54274
54275         * bin/runSalome.py:
54276
54277         Use a SALOME_USER_COMPONENTS environment variable in runSalome.py
54278         (correction)
54279
54280 2004-01-22 14:25  tajchman
54281
54282         * bin/runSalome.py:
54283
54284         Use a SALOME_USER_COMPONENTS environment variable in runSalome.py
54285
54286 2004-01-21 15:47  tajchman
54287
54288         * bin/runIDLparser.in:
54289
54290         Correct parser arguments and help message
54291
54292 2004-01-21 10:12  secher
54293
54294         * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
54295
54296         portage CCRT : alpha/osf
54297
54298 2004-01-21 09:55  secher
54299
54300         * src/Makefile.in:
54301
54302         portage CCRT alpha/osf
54303
54304 2004-01-21 09:52  secher
54305
54306         * salome_adm/unix/config_files/ac_cxx_template_options.m4,
54307           salome_adm/unix/config_files/ac_cxx_warnings.m4,
54308           salome_adm/unix/config_files/ac_linker_options.m4,
54309           salome_adm/unix/config_files/check_cas.m4,
54310           salome_adm/unix/config_files/check_pthreads.m4,
54311           salome_adm/unix/config_files/check_pyqt.m4,
54312           salome_adm/unix/config_files/check_sip.m4,
54313           salome_adm/unix/config_files/ac_cxx_option.m4,
54314           salome_adm/unix/config_files/ac_cxx_template_depth.m4,
54315           configure.in.base:
54316
54317         portage CCRT alpha/osf
54318
54319 2004-01-21 09:48  secher
54320
54321         * salome_adm/unix/make_commence.in:
54322
54323         portage CCRT alpha/osf
54324
54325 2004-01-15 09:13  prascle
54326
54327         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
54328
54329         PR: mergefrom_DEBUG_V1_3_15Jan04
54330
54331 2004-01-15 09:09  prascle
54332
54333         * salome_adm/unix/config_files/: check_pyqt.m4, check_sip.m4:
54334
54335         PR: mergefrom_DEBUG_V1_3_15Jan04
54336
54337 2004-01-14 17:04  prascle
54338
54339         * bin/runSalome.py, idl/SALOMEDS_Attributes.idl, src/Makefile.in,
54340           src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
54341           src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
54342           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54343           src/Notification/Makefile.in, src/Registry/Makefile.in,
54344           src/Registry/SALOME_Registry_Server.cxx,
54345           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
54346           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
54347           src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
54348           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
54349           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
54350           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
54351           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
54352           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
54353           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
54354           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
54355           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
54356           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
54357           src/SALOMEDS/SALOMEDS_FileType.cdl,
54358           src/SALOMEDS/SALOMEDS_FileType.cxx,
54359           src/SALOMEDS/SALOMEDS_FileType.hxx,
54360           src/SALOMEDS/SALOMEDS_FileType.ixx,
54361           src/SALOMEDS/SALOMEDS_FileType.jxx,
54362           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
54363           src/SALOMEDS/SALOMEDS_Server.cxx,
54364           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
54365           src/SALOMELocalTrace/Makefile.in,
54366           src/SALOMELocalTrace/SALOME_Log.cxx,
54367           src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
54368           src/TestContainer/Makefile.in,
54369           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
54370           src/Utils/Utils_SALOME_Exception.cxx, src/Utils/utilities.h:
54371
54372         PR: mergefrom_PRAS_br2_14Jan04
54373
54374 2004-01-13 17:30  prascle
54375
54376         * bin/orbmodule.py, bin/runSalome,
54377           src/ModuleGenerator/IDLparser.py:
54378
54379         PR: mergefrom_trunk_13Jan04
54380
54381 2004-01-13 16:48  prascle
54382
54383         * bin/orbmodule.py, bin/runSalome,
54384           src/ModuleGenerator/IDLparser.py:
54385
54386         PR: Merge from MTAJ_br1 13 janvier 2004 (mergefrom_MTAJ_br1_13Jan04)
54387
54388 2004-01-13 08:51  prascle
54389
54390         * salome_adm/unix/config_files/check_sip.m4:
54391
54392         PR: BUG KERNEL4780
54393
54394 2004-01-13 08:50  prascle
54395
54396         * salome_adm/unix/config_files/check_pyqt.m4:
54397
54398         PR: BUG KERNEL4781
54399
54400 2004-01-09 16:32  tajchman
54401
54402         * src/ModuleGenerator/IDLparser.py:
54403
54404         Using specified component name and username
54405
54406 2004-01-09 15:27  prascle
54407
54408         * idl/SALOMEDS_Attributes.idl,
54409           src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
54410           src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
54411           src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
54412           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
54413           src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
54414           src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
54415           src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
54416           src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
54417           src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
54418           src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
54419           src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
54420           src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
54421           src/SALOMEDS/SALOMEDS_FileType.cdl,
54422           src/SALOMEDS/SALOMEDS_FileType.cxx,
54423           src/SALOMEDS/SALOMEDS_FileType.hxx,
54424           src/SALOMEDS/SALOMEDS_FileType.ixx,
54425           src/SALOMEDS/SALOMEDS_FileType.jxx,
54426           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
54427           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
54428
54429         PR: Bug Kernel4564 (add attributes)
54430
54431 2004-01-06 14:32  secher
54432
54433         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
54434
54435         debuggage of core dump on exit
54436
54437 2004-01-06 11:35  secher
54438
54439         * src/: TOOLSDS/SALOMEDS_Tool.cxx,
54440           TestContainer/SALOME_TestComponent_i.cxx,
54441           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
54442           Utils/Utils_CommException.cxx,
54443           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils/Utils_ORB_INIT.cxx,
54444           Utils/Utils_SALOME_Exception.cxx,
54445           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx:
54446
54447         portage sur processeur alpha/osf
54448
54449 2004-01-06 11:31  secher
54450
54451         * src/SALOMEDS/: SALOMEDS_AttributeComment_i.cxx,
54452           SALOMEDS_AttributeDrawable_i.cxx,
54453           SALOMEDS_AttributeExpandable_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
54454           SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
54455           SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
54456           SALOMEDS_AttributePersistentRef_i.cxx,
54457           SALOMEDS_AttributePixMap_i.cxx,
54458           SALOMEDS_AttributePythonObject_i.cxx,
54459           SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
54460           SALOMEDS_AttributeSequenceOfInteger_i.cxx,
54461           SALOMEDS_AttributeSequenceOfReal_i.cxx,
54462           SALOMEDS_AttributeStudyProperties_i.cxx,
54463           SALOMEDS_AttributeTableOfInteger_i.cxx,
54464           SALOMEDS_AttributeTableOfReal_i.cxx,
54465           SALOMEDS_AttributeTableOfString_i.cxx,
54466           SALOMEDS_AttributeTarget_i.cxx,
54467           SALOMEDS_AttributeTextColor_i.cxx,
54468           SALOMEDS_AttributeTextHighlightColor_i.cxx,
54469           SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
54470           SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Client.cxx,
54471           SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
54472           SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
54473           SALOMEDS_DataMapStringLabel_0.cxx,
54474           SALOMEDS_DrawableAttribute.cxx, SALOMEDS_ExpandableAttribute.cxx,
54475           SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_IORAttribute.cxx,
54476           SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_OCAFApplication.cxx,
54477           SALOMEDS_OpenedAttribute.cxx, SALOMEDS_PersRefAttribute.cxx,
54478           SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PythonObjectAttribute.cxx,
54479           SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
54480           SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
54481           SALOMEDS_SelectableAttribute.cxx,
54482           SALOMEDS_SequenceOfIntegerAttribute.cxx,
54483           SALOMEDS_SequenceOfRealAttribute.cxx, SALOMEDS_Server.cxx,
54484           SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyManager_i.cxx,
54485           SALOMEDS_StudyPropertiesAttribute.cxx, SALOMEDS_Study_i.cxx,
54486           SALOMEDS_TableOfIntegerAttribute.cxx,
54487           SALOMEDS_TableOfIntegerAttribute.hxx,
54488           SALOMEDS_TableOfRealAttribute.cxx,
54489           SALOMEDS_TableOfRealAttribute.hxx,
54490           SALOMEDS_TableOfStringAttribute.cxx,
54491           SALOMEDS_TargetAttribute.cxx, SALOMEDS_TextColorAttribute.cxx,
54492           SALOMEDS_TextHighlightColorAttribute.cxx,
54493           SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseIterator_i.cxx:
54494
54495         portage sur processeur alpha/osf
54496
54497 2004-01-06 11:27  secher
54498
54499         * src/: Notification/NOTIFICATION.cxx,
54500           Notification/NOTIFICATION_Consumer.cxx,
54501           Notification/NOTIFICATION_Supplier.cxx,
54502           Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
54503           Registry/RegistryService.hxx,
54504           Registry/SALOME_Registry_Server.cxx:
54505
54506         portage sur processeur alpha/osf
54507
54508 2004-01-06 10:31  secher
54509
54510         * src/: Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
54511           Logger/SALOME_Trace.hxx, ModuleCatalog/Makefile.in,
54512           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
54513           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
54514           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
54515           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54516           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
54517           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
54518           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
54519           NamingService/SALOME_NamingService.cxx,
54520           NamingService/ServiceUnreachable.cxx:
54521
54522         portage sur processeur alpha/osf
54523
54524 2004-01-06 10:28  secher
54525
54526         * salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
54527           salome_adm/unix/make_conclude.in, Makefile.in, configure.in.base,
54528           src/Makefile.in, src/Container/Component_i.cxx,
54529           src/Container/Container_i.cxx, src/Container/Makefile.in,
54530           src/Container/SALOME_Component_i.hxx,
54531           src/Container/SALOME_Container.cxx,
54532           src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
54533           src/HDFPersist/HDFattribute.cc,
54534           src/HDFPersist/HDFcontainerObject.cc,
54535           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
54536           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFexception.hxx,
54537           src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
54538           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
54539           src/HDFPersist/HDFobject.cc,
54540           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
54541           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
54542
54543         portage sur processeur alpha/osf
54544
54545 2004-01-06 10:24  secher
54546
54547         * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
54548           ac_cxx_template_depth.m4, ac_cxx_use_std_iostream.m4,
54549           ac_cxx_warnings.m4, ac_linker_options.m4, check_cas.m4,
54550           check_htmlgen.m4, check_pthreads.m4, check_pyqt.m4, check_qt.m4,
54551           check_vtk.m4, production.m4, python.m4:
54552
54553         portage sur processeur alpha/osf
54554
54555 2003-12-16 16:47  tajchman
54556
54557         * src/ModuleGenerator/IDLparser.py:
54558
54559         [no log message]
54560
54561 2003-12-15 15:34  adam
54562
54563         * salome_adm/unix/config_files/check_omniorb.m4,
54564           src/NamingService/SALOME_NamingService.hxx,
54565           src/SALOMEDS/SALOMEDS_Client.cxx,
54566           src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
54567
54568         compatibility omniorb 4.x
54569
54570 2003-12-11 17:49  prascle
54571
54572         * bin/runSalome.py, src/Makefile.in, src/Container/Makefile.in,
54573           src/Container/SALOME_Container.cxx,
54574           src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
54575           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54576           src/Notification/Makefile.in, src/Registry/Makefile.in,
54577           src/Registry/SALOME_Registry_Server.cxx,
54578           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
54579           src/SALOMELocalTrace/Makefile.in,
54580           src/SALOMELocalTrace/SALOME_Log.cxx,
54581           src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
54582           src/TestContainer/Makefile.in,
54583           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
54584           src/Utils/Utils_SALOME_Exception.cxx, src/Utils/utilities.h:
54585
54586         PR: Bug KERNEL4778 : first step
54587
54588 2003-12-08 09:57  tajchman
54589
54590         * bin/: orbmodule.py, runSalome:
54591
54592         [no log message]
54593
54594 2003-11-27 10:20  prascle
54595
54596         * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
54597
54598         PR: Bug KERNEL4561 core dump at SALOME_Session_loader ends (from J. Roy)
54599
54600 2003-11-24 18:48  prascle
54601
54602         * INSTALL, LICENCE, Makefile.in, bin/VERSION, bin/runSalome,
54603           bin/runSalome.py, idl/Logger.idl, idl/SALOMEDS.idl,
54604           idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
54605           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
54606           salome_adm/unix/make_commence.in, salome_adm/unix/make_module.in,
54607           salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
54608           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
54609           src/Container/SALOME_ComponentPy.py,
54610           src/Container/SALOME_Component_i.hxx,
54611           src/Container/SALOME_Container.cxx,
54612           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
54613           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
54614           src/HDFPersist/HDFdatasetGetType.c,
54615           src/HDFPersist/HDFdatasetRead.c,
54616           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
54617           src/Logger/SALOME_Logger_Server.cxx,
54618           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
54619           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54620           src/NamingService/SALOME_NamingServicePy.py,
54621           src/Registry/SALOME_Registry_Server.cxx,
54622           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
54623           src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
54624
54625         PR: included tag V1_3_0
54626
54627 2003-11-20 09:37  nri
54628
54629         * bin/runSalome.py:
54630
54631         NRI : Splash is launched only if --gui option is defined.
54632
54633 2003-11-06 12:31  nri
54634
54635         * LICENCE:
54636
54637         NRI : add LICENCE file
54638
54639 2003-11-04 10:49  nri
54640
54641         * salome_adm/unix/make_commence.in:
54642
54643         NRI : Remove "make doc". It's not necessary to build doc for each compilation.
54644         To generate documentation, go into doc directory and type make;make install.
54645
54646 2003-11-04 10:27  nri
54647
54648         * bin/runSalome:
54649
54650         NRI : Remove environment variables.
54651
54652 2003-11-04 10:27  nri
54653
54654         * bin/VERSION:
54655
54656         NRI : 1.3.0 version.
54657
54658 2003-11-04 10:22  nri
54659
54660         * INSTALL:
54661
54662         NRI : 1.3.0 version.
54663
54664 2003-11-03 21:05  prascle
54665
54666         * Makefile.in, idl/Logger.idl, idl/SALOMEDS.idl,
54667           idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
54668           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
54669           salome_adm/unix/make_commence.in, salome_adm/unix/make_module.in,
54670           salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
54671           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
54672           src/Container/SALOME_ComponentPy.py,
54673           src/Container/SALOME_Component_i.hxx,
54674           src/Container/SALOME_Container.cxx,
54675           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
54676           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
54677           src/HDFPersist/HDFdatasetGetType.c,
54678           src/HDFPersist/HDFdatasetRead.c,
54679           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
54680           src/Logger/SALOME_Logger_Server.cxx,
54681           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
54682           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54683           src/NamingService/SALOME_NamingServicePy.py,
54684           src/Registry/SALOME_Registry_Server.cxx,
54685           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
54686           src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
54687
54688         PR : merge branch V1_2c dans branche principale pour V1_3_0_b1
54689
54690 2003-11-03 17:11  prascle
54691
54692         * idl/Logger.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
54693           idl/SALOME_Exception.idl, src/Container/Component_i.cxx,
54694           src/Container/Container_i.cxx,
54695           src/Container/SALOME_ComponentPy.py,
54696           src/Container/SALOME_Component_i.hxx,
54697           src/Container/SALOME_Container.cxx,
54698           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
54699           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
54700           src/HDFPersist/HDFdatasetGetType.c,
54701           src/HDFPersist/HDFdatasetRead.c,
54702           src/HDFPersist/HDFdatasetWrite.c,
54703           src/Logger/SALOME_Logger_Server.cxx,
54704           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
54705           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54706           src/NamingService/SALOME_NamingServicePy.py,
54707           src/Registry/SALOME_Registry_Server.cxx,
54708           src/SALOMEDS/SALOMEDS_Server.cxx:
54709
54710         PR: retour au tag V1_2_1_debug2 (pb dans la branche de merge V1_2c)
54711
54712 2003-11-03 16:16  prascle
54713
54714         * salome_adm/unix/config_files/check_cas.m4:
54715
54716         PR: -Wno_deprecated needed in mandrake 9.0 for check ok
54717
54718 2003-10-24 16:22  secher
54719
54720         * idl/Makefile.in, idl/SALOME_MPIContainer.idl,
54721           idl/SALOME_MPIObject.idl, idl/SALOME_TestMPIComponent.idl,
54722           idl/TypeData.idl, idl/MPIContainer.idl, idl/MPIObject.idl,
54723           salome_adm/unix/config_files/check_mpich.m4,
54724           src/Container/Container_i.cxx,
54725           src/Container/SALOME_Container_i.hxx,
54726           src/LifeCycleCORBA/LifeCycleCORBA.py,
54727           src/MPIContainer/MPIContainer_i.cxx,
54728           src/MPIContainer/MPIContainer_i.hxx:
54729
54730         mise a jour containers paralleles
54731
54732 2003-10-22 09:42  nri
54733
54734         * salome_adm/unix/make_module.in:
54735
54736         NRI : Add data and doc targets.
54737
54738 2003-10-22 09:41  nri
54739
54740         * Makefile.in:
54741
54742         NRI : Add examples into SUBDIRS.
54743
54744 2003-10-21 16:39  secher
54745
54746         * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
54747
54748         mise a jour provisoire liee a la disparition de runSession et en attendant le gestionnaire de resources
54749
54750 2003-10-16 15:18  secher
54751
54752         * configure.in.base:
54753
54754         mise a jour pour container MPI
54755
54756 2003-10-15 11:53  secher
54757
54758         * src/TestMPIContainer/Makefile.in:
54759
54760         mise a jour pour gestion des container MPI
54761
54762 2003-10-15 11:49  secher
54763
54764         * src/: Container/Container_i.cxx,
54765           Container/SALOME_Container_i.hxx,
54766           LifeCycleCORBA/LifeCycleCORBA.py,
54767           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
54768           MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
54769           MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.in,
54770           MPIContainer/SALOME_MPIContainer.cxx, Makefile.in,
54771           TestContainer/TestContainer.cxx, TestMPIContainer/Makefile.in,
54772           TestMPIContainer/TestMPIComponentEngine.cxx,
54773           TestMPIContainer/TestMPIComponentEngine.hxx,
54774           TestMPIContainer/TestMPIContainer.cxx:
54775
54776         mise a jour pour gestion des container MPI
54777
54778 2003-10-14 17:36  prascle
54779
54780         * idl/Logger.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
54781           idl/SALOME_Exception.idl, idl/SALOME_ModuleCatalog.idl,
54782           idl/SALOME_Session.idl, salome_adm/unix/make_commence.in,
54783           salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
54784           src/Container/Component_i.cxx, src/Container/Container_i.cxx,
54785           src/Container/SALOME_ComponentPy.py,
54786           src/Container/SALOME_Component_i.hxx,
54787           src/Container/SALOME_Container.cxx,
54788           src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
54789           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
54790           src/HDFPersist/HDFdatasetGetType.c,
54791           src/HDFPersist/HDFdatasetRead.c,
54792           src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
54793           src/Logger/SALOME_Logger_Server.cxx,
54794           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
54795           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54796           src/NamingService/SALOME_NamingServicePy.py,
54797           src/Registry/SALOME_Registry_Server.cxx,
54798           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
54799           src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
54800
54801         PR: Merge V1_2c etape 1
54802
54803 2003-10-14 14:10  prascle
54804
54805         * resources/SALOMEDS_Resources:
54806
54807         import SalomePro v1.2c
54808
54809 2003-10-14 13:51  prascle
54810
54811         * resources/CatalogModuleGeneral.xml:
54812
54813         import SalomePro v1.2c
54814
54815 2003-10-14 13:34  prascle
54816
54817         * idl/: Logger.idl, Makefile.in, SALOMEDS.idl,
54818           SALOME_Component.idl, SALOME_Exception.idl,
54819           SALOME_ModuleCatalog.idl, SALOME_Session.idl:
54820
54821         import SalomePro v1.2c
54822
54823 2003-10-13 18:48  prascle
54824
54825         * src/: TOOLSDS/Makefile.in, TestContainer/TestContainer.cxx,
54826           Utils/Utils_Timer.hxx:
54827
54828         import SalomePro v1.2c
54829
54830 2003-10-13 18:44  prascle
54831
54832         * src/: Makefile.in, Container/Component_i.cxx,
54833           Container/Container_i.cxx, Container/SALOME_ComponentPy.py,
54834           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
54835           HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrRead.c,
54836           HDFPersist/HDFattrWrite.c, HDFPersist/HDFdatasetCreate.c,
54837           HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetRead.c,
54838           HDFPersist/HDFdatasetWrite.c, HDFPersist/Makefile.in,
54839           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
54840           Logger/SALOME_Trace.cxx,
54841           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
54842           NamingService/SALOME_NamingServicePy.py,
54843           Registry/SALOME_Registry_Server.cxx, SALOMEDS/Makefile.in,
54844           SALOMEDS/SALOMEDS_Server.cxx:
54845
54846         import SalomePro v1.2c
54847
54848 2003-09-29 11:05  prascle
54849
54850         * INSTALL, bin/VERSION:
54851
54852         included V1_2_1_debug2
54853
54854 2003-09-26 16:12  nri
54855
54856         * INSTALL:
54857
54858         NRI : INSTALL file defined SALOME2_PRODUCTION_CYCLE document.
54859
54860 2003-09-26 16:08  nri
54861
54862         * bin/VERSION:
54863
54864         NRI : Set right version.
54865
54866 2003-09-15 11:12  prascle
54867
54868         * bin/: runSalome, runSalome.py:
54869
54870         PR : Embedded C++ Container in Session Server (Engines and Clients in a single process) --- first stage of development
54871
54872 2003-07-16 17:52  nri
54873
54874         * src/TestContainer/TestContainer.cxx:
54875
54876         NRI : path correction for library.
54877
54878 2003-07-11 09:28  nri
54879
54880         * src/Utils/Utils_Timer.hxx:
54881
54882         NRI : Merge from V1_2.
54883
54884 2003-07-11 09:22  nri
54885
54886         * salome_adm/unix/make_commence.in, bin/VERSION:
54887
54888         NRI : Merge from V1_2.
54889
54890 2003-07-10 20:53  nri
54891
54892         * src/Utils/utilities.py:
54893
54894         NRI : Merge from V1_2.
54895
54896 2003-07-10 15:02  nri
54897
54898         * salome_adm/unix/make_commence.in:
54899
54900         NRI : Merge from V1_2.
54901
54902 2003-07-10 14:54  nri
54903
54904         * salome_adm/unix/config_files/check_sip.m4:
54905
54906         NRI : Merge from V1_2.
54907
54908 2003-07-10 14:37  nri
54909
54910         * salome_adm/unix/config_files/check_pyqt.m4:
54911
54912         NRI : Merge from V1_2.
54913
54914 2003-07-10 10:27  nri
54915
54916         * salome_adm/unix/: make_omniorb.in, make_conclude.in:
54917
54918         NRI : Merge from V1_2.
54919
54920 2003-07-10 10:24  nri
54921
54922         * src/MPIContainer/Makefile.in:
54923
54924         NRI : Merge from V1_2.
54925
54926 2003-07-10 10:21  nri
54927
54928         * src/: ModuleGenerator/Makefile.in, Logger/Makefile.in,
54929           Container/Makefile.in, LifeCycleCORBA/Makefile.in,
54930           HDFPersist/Makefile.in, ModuleCatalog/Makefile.in:
54931
54932         NRI : Merge from V1_2.
54933
54934 2003-07-10 10:18  nri
54935
54936         * src/: Registry/Makefile.in, Notification/Makefile.in,
54937           NamingService/Makefile.in, NOTIFICATION_SWIG/Makefile.in:
54938
54939         NRI : Merge from V1_2.
54940
54941 2003-07-10 10:14  nri
54942
54943         * src/: TOOLSDS/Makefile.in, SALOMEDS/Makefile.in:
54944
54945         NRI : Merge from V1_2.
54946
54947 2003-07-10 10:09  nri
54948
54949         * src/: Utils/Makefile.in, TestContainer/Makefile.in:
54950
54951         NRI : Merge from V1_2.
54952
54953 2003-07-09 19:36  nri
54954
54955         * src/Makefile.in:
54956
54957         NRI : Merge from V1_2.
54958
54959 2003-07-09 19:28  nri
54960
54961         * salome_adm/unix/config_files/check_vtk.m4:
54962
54963         NRI : Merge from V1_2.
54964
54965 2003-07-09 19:15  nri
54966
54967         * salome_adm/unix/toto:
54968
54969         NRI : bad merge.
54970
54971 2003-07-09 19:11  nri
54972
54973         * configure.in.base:
54974
54975         NRI : Merge from V1_2.
54976
54977 2003-07-09 19:08  nri
54978
54979         * build_configure:
54980
54981         NRI : Merge from V1_2.
54982
54983 2003-07-09 19:01  nri
54984
54985         * salome_adm/unix/: make_commence.in, make_conclude.in:
54986
54987         NRI : Merge from V1_2.
54988
54989 2003-07-09 18:47  nri
54990
54991         * build_configure:
54992
54993         NRI : Merge from V1_2.
54994
54995 2003-07-09 18:39  nri
54996
54997         * build_configure, configure.in.base:
54998
54999         sources v1.2
55000
55001 2003-07-09 18:16  nri
55002
55003         * salome_adm/unix/: make_commence.in, make_conclude.in,
55004           config_files/check_cas.m4, config_files/check_pyqt.m4,
55005           config_files/check_sip.m4, config_files/check_vtk.m4:
55006
55007         NRI : Merge from V1_2.
55008
55009 2003-07-09 18:13  nri
55010
55011         * salome_adm/unix/toto:
55012
55013         Initial revision
55014
55015 2003-07-09 18:13  nri
55016
55017         * salome_adm/unix/: Doxyfile, F77config.h.in, SALOMEconfig.h.in,
55018           depend.in, envScript.in, make_commence.in, make_conclude.in,
55019           make_omniorb.in, toto, config_files/ac_cc_warnings.m4,
55020           config_files/ac_cxx_bool.m4, config_files/ac_cxx_depend_flag.m4,
55021           config_files/ac_cxx_have_sstream.m4,
55022           config_files/ac_cxx_mutable.m4,
55023           config_files/ac_cxx_namespaces.m4,
55024           config_files/ac_cxx_partial_specialization.m4,
55025           config_files/ac_cxx_typename.m4, config_files/check_Salome.m4,
55026           config_files/check_cas.m4, config_files/check_corba.m4,
55027           config_files/check_f77.m4, config_files/check_hdf5.m4,
55028           config_files/check_htmlgen.m4, config_files/check_java.m4,
55029           config_files/check_med2.m4, config_files/check_mico.m4,
55030           config_files/check_mpich.m4, config_files/check_omniorb.m4,
55031           config_files/check_opengl.m4, config_files/check_pthreads.m4,
55032           config_files/check_pyqt.m4, config_files/check_qt.m4,
55033           config_files/check_qwt.m4, config_files/check_sip.m4,
55034           config_files/check_swig.m4, config_files/check_vtk.m4,
55035           config_files/enable_pthreads.m4, config_files/production.m4,
55036           config_files/pyembed.m4, config_files/python.m4:
55037
55038         sources v1.2
55039
55040 2003-07-09 18:09  nri
55041
55042         * idl/: SALOMEDS_Attributes.idl, SALOME_Component.idl,
55043           SALOME_DataTypeCatalog.idl, TestNotif.idl, Logger.idl,
55044           MPIContainer.idl, MPIObject.idl, SALOMEDS.idl,
55045           SALOME_Exception.idl, SALOME_ModuleCatalog.idl,
55046           SALOME_Registry.idl, SALOME_RessourcesCatalog.idl,
55047           SALOME_Session.idl, SALOME_TestComponent.idl, TypeData.idl:
55048
55049         sources v1.2
55050
55051 2003-07-09 18:07  nri
55052
55053         * src/TOOLSDS/Makefile.in, idl/SALOME_ModuleCatalog.idl,
55054           idl/SALOME_Session.idl:
55055
55056         NRI : Merge from V1_2.
55057
55058 2003-07-09 18:02  nri
55059
55060         * src/: Utils/SALOME_utilities.py, Utils/utilities.py, Makefile.in:
55061
55062         NRI : Merge from V1_2.
55063
55064 2003-07-09 17:39  nri
55065
55066         * src/SALOMEDS/Makefile.in:
55067
55068         NRI : Merge from V1_2.
55069
55070 2003-07-09 17:35  nri
55071
55072         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
55073           SALOME_ModuleCatalog_Acomponent_impl.hxx,
55074           SALOME_ModuleCatalog_Handler.cxx,
55075           SALOME_ModuleCatalog_Handler.hxx,
55076           SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
55077
55078         NRI : Merge from V1_2.
55079
55080 2003-07-09 17:22  nri
55081
55082         * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
55083           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
55084           TOOLSDS/Makefile.in, TOOLSDS/SALOMEDS_Tool.cxx,
55085           TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/TestLogger.cxx,
55086           Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx:
55087
55088         Initial revision
55089
55090 2003-07-09 17:22  nri
55091
55092         * src/: Makefile.in, Container/Component_i.cxx,
55093           Container/Container_i.cxx, Container/Makefile.in,
55094           Container/SALOME_ComponentPy.py,
55095           Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
55096           Container/SALOME_ContainerPy.py,
55097           Container/SALOME_Container_i.hxx, HDFPersist/HDFOI.hxx,
55098           HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
55099           HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
55100           HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
55101           HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
55102           HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
55103           HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
55104           HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
55105           HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
55106           HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
55107           HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
55108           HDFPersist/HDFdatasetGetSize.c, HDFPersist/HDFdatasetGetType.c,
55109           HDFPersist/HDFdatasetGetnDim.c, HDFPersist/HDFdatasetOpen.c,
55110           HDFPersist/HDFdatasetRead.c, HDFPersist/HDFdatasetWrite.c,
55111           HDFPersist/HDFerrorModeLock.c, HDFPersist/HDFexception.hxx,
55112           HDFPersist/HDFexplorer.cc, HDFPersist/HDFexplorer.hxx,
55113           HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
55114           HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
55115           HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
55116           HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
55117           HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
55118           HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
55119           HDFPersist/HDFinternalObject.cc,
55120           HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
55121           HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
55122           HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
55123           HDFPersist/HDFtypes.h, HDFPersist/Makefile.in, HDFPersist/hdfi.h,
55124           HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
55125           HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
55126           HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
55127           LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.in,
55128           LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
55129           LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
55130           LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
55131           Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
55132           Logger/SALOME_Trace.cxx, Logger/SALOME_Trace.hxx,
55133           Logger/SALOME_Trace.py, MPIContainer/MPIContainer_i.cxx,
55134           MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
55135           MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.in,
55136           MPIContainer/SALOME_MPIContainer.cxx, ModuleCatalog/Makefile.in,
55137           ModuleCatalog/PathPrefix.hxx,
55138           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
55139           ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
55140           ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
55141           ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
55142           ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
55143           ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
55144           ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
55145           ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
55146           ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
55147           ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.in,
55148           ModuleGenerator/tests/Truc2Component.idl,
55149           ModuleGenerator/tests/TrucComponent.idl,
55150           ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
55151           ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
55152           ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
55153           NOTIFICATION_SWIG/Makefile.in, NOTIFICATION_SWIG/NOTIFICATION.i,
55154           NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
55155           NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
55156           NamingService/Makefile.in,
55157           NamingService/SALOME_NamingService.cxx,
55158           NamingService/SALOME_NamingService.hxx,
55159           NamingService/SALOME_NamingService.i,
55160           NamingService/SALOME_NamingServicePy.py,
55161           NamingService/ServiceUnreachable.cxx,
55162           NamingService/ServiceUnreachable.hxx,
55163           Notification/CosNotifyShorthands.h, Notification/Makefile.in,
55164           Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
55165           Notification/NOTIFICATION_Consumer.cxx,
55166           Notification/NOTIFICATION_Consumer.hxx,
55167           Notification/NOTIFICATION_Supplier.cxx,
55168           Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.in,
55169           Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
55170           Registry/RegistryService.cxx, Registry/RegistryService.hxx,
55171           Registry/SALOME_Registry_Server.cxx,
55172           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
55173           SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
55174           SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
55175           SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
55176           SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
55177           SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
55178           SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
55179           SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
55180           SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
55181           SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
55182           SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
55183           SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
55184           SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
55185           SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
55186           SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
55187           SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
55188           SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
55189           SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
55190           SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
55191           SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
55192           SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
55193           SALOMEDS/Makefile.in, SALOMEDS/SALOMEDS.cdl,
55194           SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
55195           SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
55196           SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
55197           SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
55198           SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
55199           SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
55200           SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
55201           SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
55202           SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
55203           SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
55204           SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
55205           SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
55206           SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
55207           SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
55208           SALOMEDS/SALOMEDS_AttributeName_i.cxx,
55209           SALOMEDS/SALOMEDS_AttributeName_i.hxx,
55210           SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
55211           SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
55212           SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
55213           SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
55214           SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
55215           SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
55216           SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
55217           SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
55218           SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
55219           SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
55220           SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
55221           SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
55222           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
55223           SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
55224           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
55225           SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
55226           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
55227           SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
55228           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
55229           SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
55230           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
55231           SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
55232           SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
55233           SALOMEDS/SALOMEDS_Client.cxx,
55234           SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
55235           SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
55236           SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
55237           SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
55238           SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
55239           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
55240           SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
55241           SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
55242           SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
55243           SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
55244           SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
55245           SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
55246           SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
55247           SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
55248           SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
55249           SALOMEDS/SALOMEDS_Callback_i.hxx,
55250           SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
55251           SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
55252           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
55253           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
55254           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
55255           SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
55256           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
55257           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
55258           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
55259           SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
55260           SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
55261           SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
55262           SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
55263           SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
55264           SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
55265           SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
55266           SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
55267           SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
55268           SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
55269           SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
55270           SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
55271           SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
55272           SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
55273           SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
55274           SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
55275           SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
55276           SALOMEDS/SALOMEDS_IORAttribute.cdl,
55277           SALOMEDS/SALOMEDS_IORAttribute.cxx,
55278           SALOMEDS/SALOMEDS_IORAttribute.hxx,
55279           SALOMEDS/SALOMEDS_IORAttribute.ixx,
55280           SALOMEDS/SALOMEDS_IORAttribute.jxx,
55281           SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
55282           SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
55283           SALOMEDS/SALOMEDS_Server.cxx,
55284           SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
55285           SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
55286           SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
55287           SALOMEDS/SALOMEDS_OCAFApplication.cdl,
55288           SALOMEDS/SALOMEDS_OCAFApplication.cxx,
55289           SALOMEDS/SALOMEDS_OCAFApplication.hxx,
55290           SALOMEDS/SALOMEDS_OCAFApplication.ixx,
55291           SALOMEDS/SALOMEDS_OCAFApplication.jxx,
55292           SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
55293           SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
55294           SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
55295           SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
55296           SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
55297           SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
55298           SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
55299           SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
55300           SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
55301           SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
55302           SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
55303           SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
55304           SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
55305           SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
55306           SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
55307           SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
55308           SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
55309           SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
55310           SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
55311           SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
55312           SALOMEDS/SALOMEDS_SAttribute_i.hxx,
55313           SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
55314           SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
55315           SALOMEDS/SALOMEDS_SComponent_i.cxx,
55316           SALOMEDS/SALOMEDS_SComponent_i.hxx,
55317           SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
55318           SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
55319           SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
55320           SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
55321           SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
55322           SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
55323           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
55324           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
55325           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
55326           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
55327           SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
55328           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
55329           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
55330           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
55331           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
55332           SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
55333           SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
55334           SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
55335           SALOMEDS/SALOMEDS_StudyManager_i.cxx,
55336           SALOMEDS/SALOMEDS_StudyManager_i.hxx,
55337           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
55338           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
55339           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
55340           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
55341           SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
55342           SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
55343           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
55344           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
55345           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
55346           SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
55347           SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
55348           SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
55349           SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
55350           SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
55351           SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
55352           SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
55353           SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
55354           SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
55355           SALOMEDS/SALOMEDS_TargetAttribute.cdl,
55356           SALOMEDS/SALOMEDS_TargetAttribute.cxx,
55357           SALOMEDS/SALOMEDS_TargetAttribute.hxx,
55358           SALOMEDS/SALOMEDS_TargetAttribute.ixx,
55359           SALOMEDS/SALOMEDS_TargetAttribute.jxx,
55360           SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
55361           SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
55362           SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
55363           SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
55364           SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
55365           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
55366           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
55367           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
55368           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
55369           SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
55370           SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
55371           SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
55372           SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
55373           SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
55374           SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx, TOOLSDS/Makefile.in,
55375           TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
55376           TestContainer/Makefile.in,
55377           TestContainer/SALOME_TestComponentPy.py,
55378           TestContainer/SALOME_TestComponent_i.cxx,
55379           TestContainer/SALOME_TestComponent_i.hxx,
55380           TestContainer/TestComponentPy.py,
55381           TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
55382           Utils/Makefile.in, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
55383           Utils/SALOME_utilities.py, Utils/SalomeString.hxx,
55384           Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
55385           Utils/Utils_CorbaException.hxx,
55386           Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
55387           Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils/Utils_Identity.cxx,
55388           Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
55389           Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
55390           Utils/Utils_SALOME_Exception.cxx,
55391           Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
55392           Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
55393           Utils/duplicate.cxx, Utils/utilities.h, Utils/utilities.py:
55394
55395         sources v1.2
55396
55397 2003-07-09 17:18  nri
55398
55399         * resources/CatalogModuleGeneral.xml:
55400
55401         sources v1.2
55402
55403 2003-07-09 14:38  yfr
55404
55405         * resources/: Application-About.png, Application-Logo.png,
55406           Application-Splash.png:
55407
55408         yfr : Suppression su "PRO" dans les icones et splash
55409
55410 2003-06-16 17:59  prascle
55411
55412         * idl/Makefile.in:
55413
55414         PR: preserves files dates when copying from sources and avoids unnecessary compilation of dependent modules after install. (idem for other includes)
55415
55416 2003-06-16 17:54  prascle
55417
55418         * Makefile.in, salome_adm/unix/make_commence.in,
55419           salome_adm/unix/make_conclude.in:
55420
55421         PR: make_commence is available for other modules (no need of recheck what is done in kernel). Previous mode (recheck) still works.
55422
55423 2003-06-16 16:09  prascle
55424
55425         * bin/runSalome.py:
55426
55427         PR: merge from branch CCAR_br1
55428
55429 2003-06-16 15:58  prascle
55430
55431         * salome_adm/unix/config_files/check_pyqt.m4:
55432
55433         PR: merge branch CCAR_br1 + specific RedHat 8.0
55434
55435 2003-06-16 15:57  prascle
55436
55437         * salome_adm/unix/config_files/check_sip.m4:
55438
55439         PR: merge branch CCAR_br1
55440
55441 2003-06-06 09:14  prascle
55442
55443         * salome_adm/unix/config_files/check_cas.m4:
55444
55445         PR: suppress warnings with gcc 3.2 to check OK
55446
55447 2003-06-06 09:09  prascle
55448
55449         * salome_adm/unix/config_files/check_vtk.m4:
55450
55451         PR: suppress warnings with gcc 3.2 to check OK
55452
55453 2003-06-05 19:54  caremoli
55454
55455         * bin/runSalome.py, salome_adm/unix/config_files/check_pyqt.m4,
55456           salome_adm/unix/config_files/check_sip.m4:
55457
55458         CCAR (EDF-RD):
55459         - First modification : runSalome.py can be imported or exec'ed. I'm not sure
55460               it's really possible to use startSalome or startGUI from another Python module
55461               but it's a first step.
55462         - Second modification : new import mechanism for shared python modules (CORBA, qt,..)
55463               This mechanism implemented in the new module import_hook replaces the
55464            standard import mechanism. New module kernel_shared_modules helps to define those modules
55465            that must be imported only once. Other modules can have their own <module>_shared_modules
55466         - 3rd : some minor improvments in Python interpretor (more error trace) and link to new import
55467               mechanism.
55468         - 4th : modification of check_sip and check_pyqt to recognize different versions 3.3, ..., 3.5
55469
55470 2003-06-05 14:12  jroy
55471
55472         * doc/: OrganisationProduction_PAL.pdf,
55473           OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
55474
55475         Ajout du document OrganisationProduction_PAL (formats pdf, ps, sxw) dans la base KERNEL.
55476
55477 2003-06-05 09:14  prascle
55478
55479         * src/Utils/: SALOME_utilities.py, utilities.py:
55480
55481         PR: force the transformation of message argument into string
55482
55483 2003-06-03 15:53  nri
55484
55485         * bin/: runSalome, runSalome.py:
55486
55487         NRI : Update launch.
55488
55489 2003-06-03 13:29  nri
55490
55491         * bin/: runSalome, runSalome.py:
55492
55493         NRI : Update launch.
55494
55495 2003-06-03 11:07  nri
55496
55497         * src/Makefile.in:
55498
55499         NRI : Add Loader.
55500
55501 2003-05-28 09:51  nri
55502
55503         * bin/VERSION:
55504
55505         NRI : Add MODULE version info.
55506
55507 2003-05-27 09:59  prascle
55508
55509         * bin/killSalome.py:
55510
55511         PR : destruction of file listing SALOME process id after process kill :
55512         no longer relevant, and dangerous
55513
55514 2003-05-27 09:56  prascle
55515
55516         * Makefile.in:
55517
55518         PR : to avoid recompilation with gcc 3.2 when SALOMEconfig.h timestamp
55519          is changed
55520
55521 2003-05-26 17:42  nri
55522
55523         * bin/killSalome.py, bin/orbmodule.py, bin/runSalome,
55524           bin/runSalome.py, Makefile.in:
55525
55526         NRI : Add new SALOME launch procedure.
55527
55528 2003-05-26 17:39  nri
55529
55530         * bin/: README, allkill, allkillWithPort, config.in,
55531           insertComputerRessourcesCatalog.sh.in, omniORB.cfg.in,
55532           runClientDataTypeCatalog.in, runClientModuleCatalog.in,
55533           runClientRessourcesCatalog.in, runDataTypeCatalog.in,
55534           runLoader.in, runModuleCatalog.in, runMono.in, runNSWithPort.sh,
55535           runNotify.sh, runRessourcesCatalog.in, runSALOMEDS_Client.in,
55536           runSalome.in, runSalomeDesktop.in, runSalomeServers.in,
55537           runSalomeWithPort.in, runSession.in, runTestContainer.in,
55538           runTestContainerPy.in, runTestContainerPy2.in,
55539           runTestLifeCycle.in, runTestMED.in, runTestNotification.in,
55540           showNS.in:
55541
55542         NRI : Remove old files. We will add again if requested.
55543
55544 2003-05-23 17:00  nri
55545
55546         * src/SALOMEDS/Makefile.in:
55547
55548         NRI : Explode OCC_LIBS.
55549
55550 2003-05-23 14:44  nri
55551
55552         * salome_adm/unix/: make_commence.in, config_files/check_cas.m4:
55553
55554         NRI : Explode OCC_LIBS into different variables.
55555
55556 2003-05-22 15:39  nri
55557
55558         * bin/runSalome.in:
55559
55560         NRI : Add KERNEL_ROOT_DIR in addition to SALOME_[ROOT, SITE]_DIR.
55561
55562 2003-05-22 11:21  nri
55563
55564         * resources/CatalogModuleGeneral.xml, resources/KERNELCatalog.xml,
55565           Makefile.in, bin/runSalome.in:
55566
55567         NRI : Rename Catalog according to rule (KERNELCatalog).
55568
55569 2003-05-22 09:33  nri
55570
55571         * doc/Makefile.in:
55572
55573         NRI : Add documentation.
55574
55575 2003-05-20 15:04  nri
55576
55577         * idl/SALOME_Session.idl:
55578
55579         NRI : VISU dependence.
55580
55581 2003-05-20 12:23  nri
55582
55583         * resources/Resources, resources/SALOMEDS_Resources, Makefile.in,
55584           bin/runSalome.in:
55585
55586         NRI : Update OCAF resources.
55587
55588 2003-05-19 16:39  nri
55589
55590         * bin/runSalome.in:
55591
55592         NRI : Update.
55593
55594 2003-05-19 14:48  nri
55595
55596         * bin/runSalome.in:
55597
55598         NRI : Correction Catalog.
55599
55600 2003-05-19 13:58  nri
55601
55602         * bin/runSalome.in:
55603
55604         NRI : Temporary modification for reading catalog of modules.
55605
55606 2003-05-19 13:57  nri
55607
55608         * resources/CatalogModuleGeneral.xml:
55609
55610         NRI : Remove modules declaration.
55611
55612 2003-05-19 12:02  jroy
55613
55614         * salome_adm/unix/make_commence.in:
55615
55616         Correction sur l'emplacement des idl dans le repertoire d'install de KERNEL.
55617
55618 2003-05-16 17:59  nri
55619
55620         * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
55621           SALOME_ModuleCatalog_Acomponent_impl.hxx,
55622           SALOME_ModuleCatalog_Handler.cxx,
55623           SALOME_ModuleCatalog_Handler.hxx,
55624           SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
55625
55626         NRI : Add componentusername.
55627
55628 2003-05-16 17:55  nri
55629
55630         * idl/SALOME_ModuleCatalog.idl:
55631
55632         NRI : Add componentusername.
55633
55634 2003-05-16 14:53  jroy
55635
55636         * build_configure, salome_adm/unix/make_commence.in:
55637
55638         Modification des options de l'appel Ã  la commande aclocal.
55639
55640 2003-05-16 12:27  secher
55641
55642         * resources/Plugin:
55643
55644         file Plugin was added on branch BR_V300_lcrm on 2005-07-19 09:01:58 +0000
55645
55646 2003-05-16 12:27  cvsadmin
55647
55648         * Makefile.in, build_configure, configure.in.base, bin/README,
55649           bin/VERSION, bin/allkill, bin/allkillWithPort, bin/config.in,
55650           bin/insertComputerRessourcesCatalog.sh.in, bin/omniORB.cfg.in,
55651           bin/runClientDataTypeCatalog.in, bin/runClientModuleCatalog.in,
55652           bin/runClientRessourcesCatalog.in, bin/runDataTypeCatalog.in,
55653           bin/runIDLparser.in, bin/runLoader.in, bin/runModuleCatalog.in,
55654           bin/runMono.in, bin/runNS.sh, bin/runNSWithPort.sh,
55655           bin/runNotify.sh, bin/runRessourcesCatalog.in,
55656           bin/runSALOMEDS_Client.in, bin/runSalome.in,
55657           bin/runSalomeDesktop.in, bin/runSalomeServers.in,
55658           bin/runSalomeWithPort.in, bin/runSession.in,
55659           bin/runTestContainer.in, bin/runTestContainerPy.in,
55660           bin/runTestContainerPy2.in, bin/runTestLifeCycle.in,
55661           bin/runTestMED.in, bin/runTestNotification.in, bin/showNS.in,
55662           doc/DevelopersGuide.pdf, doc/DevelopersGuide.ps,
55663           doc/Utilitaires_SALOME.doc, doc/Utilitaires_SALOME.pdf,
55664           doc/Utilitaires_SALOME.ps, doc/kernel_resources.pdf,
55665           doc/kernel_resources.ps, idl/Logger.idl, idl/MPIContainer.idl,
55666           idl/MPIObject.idl, idl/Makefile.in, idl/SALOMEDS.idl,
55667           idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
55668           idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
55669           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
55670           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
55671           idl/SALOME_TestComponent.idl, idl/TestNotif.idl,
55672           idl/TypeData.idl, resources/Application-About.png,
55673           resources/Application-Logo.png, resources/Application-Splash.png,
55674           resources/CatalogDataType.xml,
55675           resources/CatalogModuleGeneral.xml,
55676           resources/CatalogModulePersonnel.xml_skel,
55677           resources/CatalogRessources.xml, resources/Plugin,
55678           resources/Resources, resources/SALOMEDS_Resources,
55679           resources/Tools_en.xml, resources/Tools_fr.xml,
55680           resources/back.xpm, resources/cascade.png, resources/channel.cfg,
55681           resources/close.png, resources/config, resources/copy.png,
55682           resources/default.png, resources/dl_delete.png,
55683           resources/dl_insert.png, resources/dl_movedown.png,
55684           resources/dl_moveup.png, resources/forward.xpm,
55685           resources/help.png, resources/home.xpm, resources/new.png,
55686           resources/open.png, resources/paste.png,
55687           resources/plot2d_dump.png, resources/plot2d_fitall.png,
55688           resources/plot2d_fitarea.png, resources/plot2d_legend.png,
55689           resources/plot2d_linear.png, resources/plot2d_linear_y.png,
55690           resources/plot2d_lines.png, resources/plot2d_log.png,
55691           resources/plot2d_log_y.png, resources/plot2d_pan.png,
55692           resources/plot2d_points.png, resources/plot2d_settings.png,
55693           resources/plot2d_splines.png, resources/plot2d_zoom.png,
55694           resources/print.png, resources/redo.png, resources/reset.png,
55695           resources/salomeCommonModel.spml, resources/save.png,
55696           resources/select1.png, resources/tile.png, resources/uc_add.png,
55697           resources/uc_clear.png, resources/uc_current.png,
55698           resources/uc_del.png, resources/uc_new.png, resources/undo.png,
55699           resources/view_back.png, resources/view_bottom.png,
55700           resources/view_camera_dump.png, resources/view_fitall.png,
55701           resources/view_fitarea.png, resources/view_front.png,
55702           resources/view_glpan.png, resources/view_left.png,
55703           resources/view_pan.png, resources/view_reset.png,
55704           resources/view_right.png, resources/view_rotate.png,
55705           resources/view_top.png, resources/view_triedre.png,
55706           resources/view_zoom.png, salome_adm/Makefile.in,
55707           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
55708           salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
55709           salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
55710           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
55711           salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
55712           salome_adm/unix/config_files/ac_cc_warnings.m4,
55713           salome_adm/unix/config_files/ac_cxx_bool.m4,
55714           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
55715           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
55716           salome_adm/unix/config_files/ac_cxx_mutable.m4,
55717           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
55718           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
55719           salome_adm/unix/config_files/ac_cxx_typename.m4,
55720           salome_adm/unix/config_files/check_Kernel.m4,
55721           salome_adm/unix/config_files/check_Salome.m4,
55722           salome_adm/unix/config_files/check_cas.m4,
55723           salome_adm/unix/config_files/check_corba.m4,
55724           salome_adm/unix/config_files/check_f77.m4,
55725           salome_adm/unix/config_files/check_hdf5.m4,
55726           salome_adm/unix/config_files/check_htmlgen.m4,
55727           salome_adm/unix/config_files/check_java.m4,
55728           salome_adm/unix/config_files/check_med2.m4,
55729           salome_adm/unix/config_files/check_mico.m4,
55730           salome_adm/unix/config_files/check_mpich.m4,
55731           salome_adm/unix/config_files/check_omniorb.m4,
55732           salome_adm/unix/config_files/check_opengl.m4,
55733           salome_adm/unix/config_files/check_pthreads.m4,
55734           salome_adm/unix/config_files/check_pyqt.m4,
55735           salome_adm/unix/config_files/check_qt.m4,
55736           salome_adm/unix/config_files/check_qwt.m4,
55737           salome_adm/unix/config_files/check_sip.m4,
55738           salome_adm/unix/config_files/check_swig.m4,
55739           salome_adm/unix/config_files/check_vtk.m4,
55740           salome_adm/unix/config_files/config.guess,
55741           salome_adm/unix/config_files/config.sub,
55742           salome_adm/unix/config_files/enable_pthreads.m4,
55743           salome_adm/unix/config_files/install-sh,
55744           salome_adm/unix/config_files/libtool.m4,
55745           salome_adm/unix/config_files/ltconfig,
55746           salome_adm/unix/config_files/ltmain.sh,
55747           salome_adm/unix/config_files/missing,
55748           salome_adm/unix/config_files/mkinstalldirs,
55749           salome_adm/unix/config_files/production.m4,
55750           salome_adm/unix/config_files/pyembed.m4,
55751           salome_adm/unix/config_files/python.m4, src/A_LIRE_SALOME,
55752           src/Makefile.in, src/Container/Component_i.cxx,
55753           src/Container/Container_i.cxx, src/Container/Makefile.in,
55754           src/Container/SALOME_ComponentPy.py,
55755           src/Container/SALOME_Component_i.hxx,
55756           src/Container/SALOME_Container.cxx,
55757           src/Container/SALOME_ContainerPy.py,
55758           src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFOI.hxx,
55759           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
55760           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
55761           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
55762           src/HDFPersist/HDFattribute.hxx,
55763           src/HDFPersist/HDFcontainerObject.cc,
55764           src/HDFPersist/HDFcontainerObject.hxx,
55765           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
55766           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
55767           src/HDFPersist/HDFdatasetClose.c,
55768           src/HDFPersist/HDFdatasetCreate.c,
55769           src/HDFPersist/HDFdatasetGetDim.c,
55770           src/HDFPersist/HDFdatasetGetSize.c,
55771           src/HDFPersist/HDFdatasetGetType.c,
55772           src/HDFPersist/HDFdatasetGetnDim.c,
55773           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
55774           src/HDFPersist/HDFdatasetWrite.c,
55775           src/HDFPersist/HDFerrorModeLock.c,
55776           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
55777           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
55778           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
55779           src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
55780           src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
55781           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
55782           src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
55783           src/HDFPersist/HDFgroupOpen.c,
55784           src/HDFPersist/HDFinternalObject.cc,
55785           src/HDFPersist/HDFinternalObject.hxx,
55786           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
55787           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
55788           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
55789           src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
55790           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
55791           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
55792           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
55793           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
55794           src/HDFPersist/test9.cxx, src/LifeCycleCORBA/LifeCycleCORBA.py,
55795           src/LifeCycleCORBA/Makefile.in,
55796           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
55797           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
55798           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
55799           src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
55800           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
55801           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
55802           src/MPIContainer/MPIContainer_i.cxx,
55803           src/MPIContainer/MPIContainer_i.hxx,
55804           src/MPIContainer/MPIObject_i.cxx,
55805           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
55806           src/MPIContainer/SALOME_MPIContainer.cxx,
55807           src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
55808           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
55809           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
55810           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
55811           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
55812           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
55813           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
55814           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
55815           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
55816           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
55817           src/ModuleGenerator/IDLparser.py,
55818           src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
55819           src/ModuleGenerator/testIDLparser.in,
55820           src/ModuleGenerator/tests/Truc2Component.idl,
55821           src/ModuleGenerator/tests/TrucComponent.idl,
55822           src/ModuleGenerator/tests/test1.sh,
55823           src/ModuleGenerator/tests/test1b.sh,
55824           src/ModuleGenerator/tests/test2.sh,
55825           src/ModuleGenerator/tests/test3.sh,
55826           src/ModuleGenerator/tests/test4.sh,
55827           src/ModuleGenerator/tests/test5.sh,
55828           src/NOTIFICATION_SWIG/Makefile.in,
55829           src/NOTIFICATION_SWIG/NOTIFICATION.i,
55830           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
55831           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
55832           src/NamingService/Makefile.in,
55833           src/NamingService/SALOME_NamingService.cxx,
55834           src/NamingService/SALOME_NamingService.hxx,
55835           src/NamingService/SALOME_NamingService.i,
55836           src/NamingService/SALOME_NamingServicePy.py,
55837           src/NamingService/ServiceUnreachable.cxx,
55838           src/NamingService/ServiceUnreachable.hxx,
55839           src/Notification/CosNotifyShorthands.h,
55840           src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
55841           src/Notification/NOTIFICATION.hxx,
55842           src/Notification/NOTIFICATION_Consumer.cxx,
55843           src/Notification/NOTIFICATION_Consumer.hxx,
55844           src/Notification/NOTIFICATION_Supplier.cxx,
55845           src/Notification/NOTIFICATION_Supplier.hxx,
55846           src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
55847           src/Registry/RegistryConnexion.hxx,
55848           src/Registry/RegistryService.cxx,
55849           src/Registry/RegistryService.hxx,
55850           src/Registry/SALOME_Registry_Server.cxx,
55851           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
55852           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
55853           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
55854           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
55855           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
55856           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
55857           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
55858           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
55859           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
55860           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
55861           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
55862           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
55863           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
55864           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
55865           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
55866           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
55867           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
55868           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
55869           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
55870           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
55871           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
55872           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
55873           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
55874           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
55875           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
55876           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
55877           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
55878           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
55879           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
55880           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
55881           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
55882           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
55883           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
55884           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
55885           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
55886           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
55887           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
55888           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
55889           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
55890           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
55891           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
55892           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
55893           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
55894           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
55895           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
55896           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
55897           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
55898           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
55899           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
55900           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
55901           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
55902           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
55903           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
55904           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
55905           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
55906           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
55907           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
55908           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
55909           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
55910           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
55911           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
55912           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
55913           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
55914           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
55915           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
55916           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
55917           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
55918           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
55919           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
55920           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
55921           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
55922           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
55923           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
55924           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
55925           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
55926           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
55927           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
55928           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
55929           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
55930           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
55931           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
55932           src/SALOMEDS/SALOMEDS_Client.cxx,
55933           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
55934           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
55935           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
55936           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
55937           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
55938           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
55939           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
55940           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
55941           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
55942           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
55943           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
55944           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
55945           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
55946           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
55947           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
55948           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
55949           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
55950           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
55951           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
55952           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
55953           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
55954           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
55955           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
55956           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
55957           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
55958           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
55959           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
55960           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
55961           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
55962           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
55963           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
55964           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
55965           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
55966           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
55967           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
55968           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
55969           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
55970           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
55971           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
55972           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
55973           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
55974           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
55975           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
55976           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
55977           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
55978           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
55979           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
55980           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
55981           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
55982           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
55983           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
55984           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
55985           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
55986           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
55987           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
55988           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
55989           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
55990           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
55991           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
55992           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
55993           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
55994           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
55995           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
55996           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
55997           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
55998           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
55999           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
56000           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
56001           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
56002           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
56003           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
56004           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
56005           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
56006           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
56007           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
56008           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
56009           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
56010           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
56011           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
56012           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
56013           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
56014           src/SALOMEDS/SALOMEDS_Server.cxx,
56015           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
56016           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
56017           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
56018           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
56019           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
56020           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
56021           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
56022           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
56023           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
56024           src/SALOMEDS/SALOMEDS_Study_i.cxx,
56025           src/SALOMEDS/SALOMEDS_Study_i.hxx,
56026           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
56027           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
56028           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
56029           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
56030           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
56031           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
56032           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
56033           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
56034           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
56035           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
56036           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
56037           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
56038           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
56039           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
56040           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
56041           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
56042           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
56043           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
56044           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
56045           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
56046           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
56047           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
56048           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
56049           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
56050           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
56051           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
56052           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
56053           src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
56054           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
56055           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
56056           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
56057           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
56058           src/TestContainer/Makefile.in,
56059           src/TestContainer/SALOME_TestComponentPy.py,
56060           src/TestContainer/SALOME_TestComponent_i.cxx,
56061           src/TestContainer/SALOME_TestComponent_i.hxx,
56062           src/TestContainer/TestComponentPy.py,
56063           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
56064           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
56065           src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
56066           src/Utils/Utils_CommException.cxx,
56067           src/Utils/Utils_CommException.hxx,
56068           src/Utils/Utils_CorbaException.hxx,
56069           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
56070           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
56071           src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
56072           src/Utils/Utils_Identity.py, src/Utils/Utils_ORB_INIT.cxx,
56073           src/Utils/Utils_ORB_INIT.hxx,
56074           src/Utils/Utils_SALOME_Exception.cxx,
56075           src/Utils/Utils_SALOME_Exception.hxx,
56076           src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
56077           src/Utils/utilities.h, src/Utils/utilities.py:
56078
56079         Initial revision
56080
56081 2003-05-16 12:27  cvsadmin
56082
56083         * Makefile.in, build_configure, configure.in.base, bin/README,
56084           bin/VERSION, bin/allkill, bin/allkillWithPort, bin/config.in,
56085           bin/insertComputerRessourcesCatalog.sh.in, bin/omniORB.cfg.in,
56086           bin/runClientDataTypeCatalog.in, bin/runClientModuleCatalog.in,
56087           bin/runClientRessourcesCatalog.in, bin/runDataTypeCatalog.in,
56088           bin/runIDLparser.in, bin/runLoader.in, bin/runModuleCatalog.in,
56089           bin/runMono.in, bin/runNS.sh, bin/runNSWithPort.sh,
56090           bin/runNotify.sh, bin/runRessourcesCatalog.in,
56091           bin/runSALOMEDS_Client.in, bin/runSalome.in,
56092           bin/runSalomeDesktop.in, bin/runSalomeServers.in,
56093           bin/runSalomeWithPort.in, bin/runSession.in,
56094           bin/runTestContainer.in, bin/runTestContainerPy.in,
56095           bin/runTestContainerPy2.in, bin/runTestLifeCycle.in,
56096           bin/runTestMED.in, bin/runTestNotification.in, bin/showNS.in,
56097           doc/DevelopersGuide.pdf, doc/DevelopersGuide.ps,
56098           doc/Utilitaires_SALOME.doc, doc/Utilitaires_SALOME.pdf,
56099           doc/Utilitaires_SALOME.ps, doc/kernel_resources.pdf,
56100           doc/kernel_resources.ps, idl/Logger.idl, idl/MPIContainer.idl,
56101           idl/MPIObject.idl, idl/Makefile.in, idl/SALOMEDS.idl,
56102           idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
56103           idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
56104           idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
56105           idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
56106           idl/SALOME_TestComponent.idl, idl/TestNotif.idl,
56107           idl/TypeData.idl, resources/Application-About.png,
56108           resources/Application-Logo.png, resources/Application-Splash.png,
56109           resources/CatalogDataType.xml,
56110           resources/CatalogModuleGeneral.xml,
56111           resources/CatalogModulePersonnel.xml_skel,
56112           resources/CatalogRessources.xml, resources/Plugin,
56113           resources/Resources, resources/SALOMEDS_Resources,
56114           resources/Tools_en.xml, resources/Tools_fr.xml,
56115           resources/back.xpm, resources/cascade.png, resources/channel.cfg,
56116           resources/close.png, resources/config, resources/copy.png,
56117           resources/default.png, resources/dl_delete.png,
56118           resources/dl_insert.png, resources/dl_movedown.png,
56119           resources/dl_moveup.png, resources/forward.xpm,
56120           resources/help.png, resources/home.xpm, resources/new.png,
56121           resources/open.png, resources/paste.png,
56122           resources/plot2d_dump.png, resources/plot2d_fitall.png,
56123           resources/plot2d_fitarea.png, resources/plot2d_legend.png,
56124           resources/plot2d_linear.png, resources/plot2d_linear_y.png,
56125           resources/plot2d_lines.png, resources/plot2d_log.png,
56126           resources/plot2d_log_y.png, resources/plot2d_pan.png,
56127           resources/plot2d_points.png, resources/plot2d_settings.png,
56128           resources/plot2d_splines.png, resources/plot2d_zoom.png,
56129           resources/print.png, resources/redo.png, resources/reset.png,
56130           resources/salomeCommonModel.spml, resources/save.png,
56131           resources/select1.png, resources/tile.png, resources/uc_add.png,
56132           resources/uc_clear.png, resources/uc_current.png,
56133           resources/uc_del.png, resources/uc_new.png, resources/undo.png,
56134           resources/view_back.png, resources/view_bottom.png,
56135           resources/view_camera_dump.png, resources/view_fitall.png,
56136           resources/view_fitarea.png, resources/view_front.png,
56137           resources/view_glpan.png, resources/view_left.png,
56138           resources/view_pan.png, resources/view_reset.png,
56139           resources/view_right.png, resources/view_rotate.png,
56140           resources/view_top.png, resources/view_triedre.png,
56141           resources/view_zoom.png, salome_adm/Makefile.in,
56142           salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
56143           salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
56144           salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
56145           salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
56146           salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
56147           salome_adm/unix/config_files/ac_cc_warnings.m4,
56148           salome_adm/unix/config_files/ac_cxx_bool.m4,
56149           salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
56150           salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
56151           salome_adm/unix/config_files/ac_cxx_mutable.m4,
56152           salome_adm/unix/config_files/ac_cxx_namespaces.m4,
56153           salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
56154           salome_adm/unix/config_files/ac_cxx_typename.m4,
56155           salome_adm/unix/config_files/check_Kernel.m4,
56156           salome_adm/unix/config_files/check_Salome.m4,
56157           salome_adm/unix/config_files/check_cas.m4,
56158           salome_adm/unix/config_files/check_corba.m4,
56159           salome_adm/unix/config_files/check_f77.m4,
56160           salome_adm/unix/config_files/check_hdf5.m4,
56161           salome_adm/unix/config_files/check_htmlgen.m4,
56162           salome_adm/unix/config_files/check_java.m4,
56163           salome_adm/unix/config_files/check_med2.m4,
56164           salome_adm/unix/config_files/check_mico.m4,
56165           salome_adm/unix/config_files/check_mpich.m4,
56166           salome_adm/unix/config_files/check_omniorb.m4,
56167           salome_adm/unix/config_files/check_opengl.m4,
56168           salome_adm/unix/config_files/check_pthreads.m4,
56169           salome_adm/unix/config_files/check_pyqt.m4,
56170           salome_adm/unix/config_files/check_qt.m4,
56171           salome_adm/unix/config_files/check_qwt.m4,
56172           salome_adm/unix/config_files/check_sip.m4,
56173           salome_adm/unix/config_files/check_swig.m4,
56174           salome_adm/unix/config_files/check_vtk.m4,
56175           salome_adm/unix/config_files/config.guess,
56176           salome_adm/unix/config_files/config.sub,
56177           salome_adm/unix/config_files/enable_pthreads.m4,
56178           salome_adm/unix/config_files/install-sh,
56179           salome_adm/unix/config_files/libtool.m4,
56180           salome_adm/unix/config_files/ltconfig,
56181           salome_adm/unix/config_files/ltmain.sh,
56182           salome_adm/unix/config_files/missing,
56183           salome_adm/unix/config_files/mkinstalldirs,
56184           salome_adm/unix/config_files/production.m4,
56185           salome_adm/unix/config_files/pyembed.m4,
56186           salome_adm/unix/config_files/python.m4, src/A_LIRE_SALOME,
56187           src/Makefile.in, src/Container/Component_i.cxx,
56188           src/Container/Container_i.cxx, src/Container/Makefile.in,
56189           src/Container/SALOME_ComponentPy.py,
56190           src/Container/SALOME_Component_i.hxx,
56191           src/Container/SALOME_Container.cxx,
56192           src/Container/SALOME_ContainerPy.py,
56193           src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFOI.hxx,
56194           src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
56195           src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
56196           src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
56197           src/HDFPersist/HDFattribute.hxx,
56198           src/HDFPersist/HDFcontainerObject.cc,
56199           src/HDFPersist/HDFcontainerObject.hxx,
56200           src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
56201           src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
56202           src/HDFPersist/HDFdatasetClose.c,
56203           src/HDFPersist/HDFdatasetCreate.c,
56204           src/HDFPersist/HDFdatasetGetDim.c,
56205           src/HDFPersist/HDFdatasetGetSize.c,
56206           src/HDFPersist/HDFdatasetGetType.c,
56207           src/HDFPersist/HDFdatasetGetnDim.c,
56208           src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
56209           src/HDFPersist/HDFdatasetWrite.c,
56210           src/HDFPersist/HDFerrorModeLock.c,
56211           src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
56212           src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
56213           src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
56214           src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
56215           src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
56216           src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
56217           src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
56218           src/HDFPersist/HDFgroupOpen.c,
56219           src/HDFPersist/HDFinternalObject.cc,
56220           src/HDFPersist/HDFinternalObject.hxx,
56221           src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
56222           src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
56223           src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
56224           src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
56225           src/HDFPersist/test1.c, src/HDFPersist/test2.c,
56226           src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
56227           src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
56228           src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
56229           src/HDFPersist/test9.cxx, src/LifeCycleCORBA/LifeCycleCORBA.py,
56230           src/LifeCycleCORBA/Makefile.in,
56231           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
56232           src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
56233           src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
56234           src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
56235           src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
56236           src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
56237           src/MPIContainer/MPIContainer_i.cxx,
56238           src/MPIContainer/MPIContainer_i.hxx,
56239           src/MPIContainer/MPIObject_i.cxx,
56240           src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
56241           src/MPIContainer/SALOME_MPIContainer.cxx,
56242           src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
56243           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
56244           src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
56245           src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
56246           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
56247           src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
56248           src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
56249           src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
56250           src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
56251           src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
56252           src/ModuleGenerator/IDLparser.py,
56253           src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
56254           src/ModuleGenerator/testIDLparser.in,
56255           src/ModuleGenerator/tests/Truc2Component.idl,
56256           src/ModuleGenerator/tests/TrucComponent.idl,
56257           src/ModuleGenerator/tests/test1.sh,
56258           src/ModuleGenerator/tests/test1b.sh,
56259           src/ModuleGenerator/tests/test2.sh,
56260           src/ModuleGenerator/tests/test3.sh,
56261           src/ModuleGenerator/tests/test4.sh,
56262           src/ModuleGenerator/tests/test5.sh,
56263           src/NOTIFICATION_SWIG/Makefile.in,
56264           src/NOTIFICATION_SWIG/NOTIFICATION.i,
56265           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
56266           src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
56267           src/NamingService/Makefile.in,
56268           src/NamingService/SALOME_NamingService.cxx,
56269           src/NamingService/SALOME_NamingService.hxx,
56270           src/NamingService/SALOME_NamingService.i,
56271           src/NamingService/SALOME_NamingServicePy.py,
56272           src/NamingService/ServiceUnreachable.cxx,
56273           src/NamingService/ServiceUnreachable.hxx,
56274           src/Notification/CosNotifyShorthands.h,
56275           src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
56276           src/Notification/NOTIFICATION.hxx,
56277           src/Notification/NOTIFICATION_Consumer.cxx,
56278           src/Notification/NOTIFICATION_Consumer.hxx,
56279           src/Notification/NOTIFICATION_Supplier.cxx,
56280           src/Notification/NOTIFICATION_Supplier.hxx,
56281           src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
56282           src/Registry/RegistryConnexion.hxx,
56283           src/Registry/RegistryService.cxx,
56284           src/Registry/RegistryService.hxx,
56285           src/Registry/SALOME_Registry_Server.cxx,
56286           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
56287           src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
56288           src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
56289           src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
56290           src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
56291           src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
56292           src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
56293           src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
56294           src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
56295           src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
56296           src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
56297           src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
56298           src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
56299           src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
56300           src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
56301           src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
56302           src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
56303           src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
56304           src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
56305           src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
56306           src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
56307           src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
56308           src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
56309           src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
56310           src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
56311           src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
56312           src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
56313           src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
56314           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
56315           src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
56316           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
56317           src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
56318           src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
56319           src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
56320           src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
56321           src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
56322           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
56323           src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
56324           src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
56325           src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
56326           src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
56327           src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
56328           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
56329           src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
56330           src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
56331           src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
56332           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
56333           src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
56334           src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
56335           src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
56336           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
56337           src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
56338           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
56339           src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
56340           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
56341           src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
56342           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
56343           src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
56344           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
56345           src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
56346           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
56347           src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
56348           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
56349           src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
56350           src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
56351           src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
56352           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
56353           src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
56354           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
56355           src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
56356           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
56357           src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
56358           src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
56359           src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
56360           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
56361           src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
56362           src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
56363           src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
56364           src/SALOMEDS/SALOMEDS_Callback_i.hxx,
56365           src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
56366           src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
56367           src/SALOMEDS/SALOMEDS_Client.cxx,
56368           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
56369           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
56370           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
56371           src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
56372           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
56373           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
56374           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
56375           src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
56376           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
56377           src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
56378           src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
56379           src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
56380           src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
56381           src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
56382           src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
56383           src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
56384           src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
56385           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
56386           src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
56387           src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
56388           src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
56389           src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
56390           src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
56391           src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
56392           src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
56393           src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
56394           src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
56395           src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
56396           src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
56397           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
56398           src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
56399           src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
56400           src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
56401           src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
56402           src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
56403           src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
56404           src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
56405           src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
56406           src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
56407           src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
56408           src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
56409           src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
56410           src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
56411           src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
56412           src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
56413           src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
56414           src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
56415           src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
56416           src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
56417           src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
56418           src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
56419           src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
56420           src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
56421           src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
56422           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
56423           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
56424           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
56425           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
56426           src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
56427           src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
56428           src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
56429           src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
56430           src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
56431           src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
56432           src/SALOMEDS/SALOMEDS_SObject_i.cxx,
56433           src/SALOMEDS/SALOMEDS_SObject_i.hxx,
56434           src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
56435           src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
56436           src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
56437           src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
56438           src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
56439           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
56440           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
56441           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
56442           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
56443           src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
56444           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
56445           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
56446           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
56447           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
56448           src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
56449           src/SALOMEDS/SALOMEDS_Server.cxx,
56450           src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
56451           src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
56452           src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
56453           src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
56454           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
56455           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
56456           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
56457           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
56458           src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
56459           src/SALOMEDS/SALOMEDS_Study_i.cxx,
56460           src/SALOMEDS/SALOMEDS_Study_i.hxx,
56461           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
56462           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
56463           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
56464           src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
56465           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
56466           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
56467           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
56468           src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
56469           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
56470           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
56471           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
56472           src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
56473           src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
56474           src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
56475           src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
56476           src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
56477           src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
56478           src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
56479           src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
56480           src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
56481           src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
56482           src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
56483           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
56484           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
56485           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
56486           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
56487           src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
56488           src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
56489           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
56490           src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
56491           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
56492           src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
56493           src/TestContainer/Makefile.in,
56494           src/TestContainer/SALOME_TestComponentPy.py,
56495           src/TestContainer/SALOME_TestComponent_i.cxx,
56496           src/TestContainer/SALOME_TestComponent_i.hxx,
56497           src/TestContainer/TestComponentPy.py,
56498           src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
56499           src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
56500           src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
56501           src/Utils/Utils_CommException.cxx,
56502           src/Utils/Utils_CommException.hxx,
56503           src/Utils/Utils_CorbaException.hxx,
56504           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
56505           src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
56506           src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
56507           src/Utils/Utils_Identity.py, src/Utils/Utils_ORB_INIT.cxx,
56508           src/Utils/Utils_ORB_INIT.hxx,
56509           src/Utils/Utils_SALOME_Exception.cxx,
56510           src/Utils/Utils_SALOME_Exception.hxx,
56511           src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
56512           src/Utils/utilities.h, src/Utils/utilities.py:
56513
56514         Initialisation de la base KERNEL avec la version operationnelle de KERNEL_SRC issue de SalomePro1.1a.
56515