-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2169 lines (1647 loc) · 76.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-07-07 22:58 vpashka
* configure.ac, Utilities/Admin/admin.cc,
Utilities/DBServer-MySQL/main.cc, Utilities/InfoServer/main.cc,
Utilities/NullController/main.cc, Utilities/SMonit/smonitor.cc,
Utilities/SViewer-text/main.cc, conf/test.xml, conf/uniset.spec,
include/Configuration.h, include/ObjectRepository.h,
include/ObjectRepositoryFactory.h, include/UniversalInterface.h,
lib/Makefile.am, src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/ObjectRepository.cc,
src/ObjectRepository/ObjectRepositoryFactory.cc,
src/Various/Configuration.cc, src/Various/NCRestorer_XML1.cc,
src/Various/SViewer.cc: version 0.9
2007-06-27 23:19 vpashka
* conf/uniset.spec: Auto updated by ./release_helper.sh for
uniset-0.8-alt2
2007-06-27 23:12 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.8-alt2
2007-06-25 00:26 vpashka
* Utilities/Admin/admin.cc, Utilities/DBServer-MySQL/main.cc,
Utilities/InfoServer/main.cc, Utilities/NullController/main.cc,
Utilities/SMonit/smonitor.cc, Utilities/SViewer-text/main.cc,
Utilities/scripts/uniset-functions.sh, include/Configuration.h,
src/Various/Configuration.cc: add "uniset_init" function
2007-06-21 01:15 vpashka
* include/PassiveObject.h, lib/Makefile.am: - update version - add
include
2007-06-19 21:45 vpashka
* src/Various/Configuration.cc: minor fixes
2007-06-19 01:28 vpashka
* Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/start_fg.sh, conf/test.xml,
include/NCRestorer.h, include/Restorer.h,
src/Various/Configuration.cc, src/Various/NCRestorer_XML.cc,
src/Various/NCRestorer_XML1.cc, src/Various/Restorer_XML.cc:
minor fixes
2007-06-18 02:08 vpashka
* conf/uniset.spec: Auto updated by ./release_helper.sh for
uniset-0.8-alt1
2007-06-18 02:04 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.8-alt1
2007-06-18 02:02 vpashka
* src/Communications/: ComPort.cc, Makefile.am: return to old
version ComaPort.cc
2007-06-18 01:54 vpashka
* src/IOs/Makefile.am: ComPort --> Communications
2007-06-18 01:48 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.8-alt1
2007-06-18 01:47 vpashka
* configure.ac: remove old Makefiles
2007-06-18 01:36 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.8-alt1
2007-06-18 01:34 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.7-alt5
2007-06-18 01:30 vpashka
* ChangeLog, TODO, configure.ac, libUniSet.pc.in,
IDL/Processes/IOController_i.idl,
IDL/UniSetTypes/UniSetObject_i.idl,
IDL/UniSetTypes/UniSetTypes_i.idl, Utilities/Admin/admin.cc,
Utilities/Admin/create_links.sh,
Utilities/DBServer-MySQL/DBInterface.cc,
Utilities/DBServer-MySQL/DBServer_MySQL.cc,
Utilities/InfoServer/Makefile.am, Utilities/InfoServer/main.cc,
Utilities/NullController/Makefile.am,
Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc,
Utilities/NullController/start_fg.sh,
Utilities/SMonit/smonitor.cc, Utilities/SMonit/start_fg.sh,
Utilities/SViewer-text/main.cc, conf/common.mk,
conf/release_helper.sh, conf/test.xml, conf/uniset.spec,
docs/DocPages/todo.dox, include/ComPort.h,
include/Configuration.h, include/DBServer.h,
include/IOController.h, include/IONotifyController.h,
include/ISRestorer.h, include/MessageInterface_XML.h,
include/MessageInterface_idXML.h, include/MessageType.h,
include/NCRestorer.h, include/ObjectIndex_idXML.h,
include/ObjectsActivator.h, include/ObjectsManager.h,
include/PosixThread.h, include/Restorer.h, include/SViewer.h,
include/SystemGuard.h, include/TimerService.h,
include/TriggerAND_template.h, include/TriggerOR_template.h,
include/UniSetObject.h, include/UniversalInterface.h,
include/modbus/ModbusSlave.h, include/modbus/ModbusSlaveSlot.h,
src/Communications/Makefile.am,
src/Communications/Modbus/ModbusRTUExchange.cc,
src/Communications/Modbus/ModbusSlave.cc,
src/Communications/Modbus/ModbusSlaveSlot.cc,
src/IOs/Makefile.am, src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/ObjectIndex_idXML.cc,
src/ObjectRepository/ProxyManager.cc,
src/ObjectRepository/UniSetObject.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Services/Makefile.am,
src/Services/TimerService.cc, src/Timers/PassiveTimer.cc,
src/Various/Configuration.cc, src/Various/ISRestorer_XML.cc,
src/Various/ISRestorer_XML1.cc, src/Various/Makefile.am,
src/Various/MessageInterface_XML.cc,
src/Various/MessageInterface_idXML.cc,
src/Various/MessageType.cc, src/Various/NCRestorer.cc,
src/Various/NCRestorer_XML.cc, src/Various/NCRestorer_XML1.cc,
src/Various/Restorer_XML.cc, src/Various/SMonitor.cc,
src/Various/SViewer.cc, src/Various/SystemGuard.cc: 1) merge
uniset-0.7.stable AND uniset 2) add new tag 'uniset-revolution'
for unstable version
2007-06-09 01:23 vpashka
* src/Communications/ComPort.cc: [no log message]
2007-05-28 01:09 vpashka
* conf/uniset.spec: Auto updated by ./release_helper.sh for
uniset-0.7-alt5
2007-05-28 01:04 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.7-alt5
2007-05-23 22:44 vpashka
* src/Timers/: PassiveTimer.cc: CLK_TCK --> clock_ticks (sysconf)
2007-05-03 22:54 vpashka
* include/: ObjectIndex_idXML.h: fixed minor bug
2007-03-21 19:12 vpashka
* include/modbus/ModbusSlave.h,
src/Communications/Modbus/ModbusSlave.cc: отключил по умолчанию
работу с broadcast
2007-02-24 17:03 vpashka
* include/: PosixThread.h: подправил ошибку (проявившуюся при
компиляции в cygwin)
2007-02-20 00:54 vpashka
* src/Services/InfoServer.cc: немного оптимизировал вывод лога
2007-02-18 14:01 vpashka
* Utilities/DBServer-MySQL/DBServer_MySQL.cc,
include/UniversalInterface.h, src/Various/SMonitor.cc,
src/Various/SystemGuard.cc: minor fixes
2007-02-18 13:51 vpashka
* conf/uniset.spec, include/UniversalInterface.h: add function for
old API
2007-02-17 16:21 vpashka
* libUniSet.pc.in: add require: omniORB4
2007-02-17 15:54 vpashka
* conf/uniset.spec: Auto updated by ./release_helper.sh for
uniset-0.7-alt2
2007-02-17 15:46 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.7-alt2
2007-02-17 15:44 vpashka
* src/Communications/Modbus/ModbusSlave.cc: catch exception for
send
2007-02-08 22:30 vpashka
* TODO: new task
2007-02-08 18:04 vpashka
* src/Communications/Modbus/ModbusSlave.cc: logs optimization
2007-02-06 23:15 vpashka
* TODO: remove task
2007-02-06 00:41 vpashka
* IDL/Processes/IOController_i.idl, include/IOController.h,
include/IONotifyController.h, include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc: optimization: add fastXXX
function (oneway, no return value, no throw exceptions)
2007-02-05 22:28 vpashka
* src/: ObjectRepository/ProxyManager.cc,
Processes/IOController.cc, Processes/IONotifyController.cc,
Various/AskDumper_XML.cc, Various/AskDumper_XML1.cc:
optimization: check debug level
2007-02-05 22:01 vpashka
* conf/release_helper.sh: off set tag
2007-02-05 22:00 vpashka
* conf/uniset.spec: Auto updated by ./release_helper.sh for
uniset-0.7-alt1
2007-02-05 21:51 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.7-alt1
2007-02-05 18:54 vpashka
* src/Processes/: IOController.cc, IONotifyController.cc:
optimization: lock mutex only before change value
2007-01-25 11:44 vpashka
* TODO, IDL/UniSetTypes/UniSetTypes_i.idl,
Utilities/Admin/admin.cc, include/Configuration.h,
src/ObjectRepository/ObjectIndex_idXML.cc,
src/Various/AskDumper_XML.cc, src/Various/AskDumper_XML1.cc,
src/Various/Configuration.cc,
src/Various/MessageInterface_idXML.cc, src/Various/SMonitor.cc:
1) change ObjectId from short to long 2) add uni_atoi function (
convert 'dec' and 'hex' value from string )
2007-01-20 00:58 vpashka
* src/Various/NCRestorer_XML1.cc: fixed minor bug
2007-01-19 14:41 vpashka
* src/Various/AskDumper_XML1.cc: fixed minor bug...
2007-01-18 02:33 vpashka
* Utilities/InfoServer/main.cc,
Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc,
Utilities/NullController/start_fg.sh, conf/test.xml,
include/ISRestorer.h, include/NCRestorer.h, include/Restorer.h,
src/Services/InfoServer.cc, src/Various/ISRestorer_XML.cc,
src/Various/ISRestorer_XML1.cc, src/Various/Makefile.am,
src/Various/NCRestorer_XML.cc, src/Various/NCRestorer_XML1.cc,
src/Various/Restorer_XML.cc, src/Various/SViewer.cc: 1) new
interface for xxxRestorer_XMLx 2) minor bug fixes 3) optimization
2007-01-17 22:46 vpashka
* include/ISRestorer.h, include/NCRestorer.h,
src/Various/ISRestorer_XML.cc, src/Various/ISRestorer_XML1.cc,
src/Various/Makefile.am: previous version XXXRestorer interace
2007-01-16 23:09 vpashka
* TODO: new task
2007-01-16 22:55 vpashka
* TODO, Utilities/InfoServer/Makefile.am,
Utilities/NullController/Makefile.am, include/ISRestorer.h,
src/Services/Makefile.am, src/Various/ISRestorer_XML.cc: add read
items slot and read consumers slot
2007-01-16 22:29 vpashka
* src/Various/: MessageInterface_XML.cc, MessageInterface_idXML.cc:
init xmlnode
2007-01-16 22:05 vpashka
* conf/test.xml, include/MessageInterface_XML.h,
include/MessageInterface_idXML.h, src/Various/Configuration.cc,
src/Various/MessageInterface_XML.cc,
src/Various/MessageInterface_idXML.cc: add new constructors
(optimization)
2007-01-14 02:19 vpashka
* libUniSet.pc.in: remove old define
2007-01-14 02:02 vpashka
* TODO, include/ComPort.h, include/modbus/ModbusSlave.h,
include/modbus/ModbusSlaveSlot.h,
src/Communications/Modbus/ModbusRTUExchange.cc,
src/Communications/Modbus/ModbusSlave.cc,
src/Communications/Modbus/ModbusSlaveSlot.cc: modify for new
ComPort interface
2007-01-13 23:00 vpashka
* Utilities/Admin/admin.cc, Utilities/DBServer-MySQL/main.cc,
Utilities/InfoServer/main.cc, Utilities/SMonit/smonitor.cc,
Utilities/SViewer-text/main.cc, src/IOs/ComPort.cc,
src/IOs/Makefile.am: 1) add new command line arguments... 2)
ComPort --> /src/Communication
2007-01-13 22:58 vpashka
* src/Communications/: ComPort.cc, Makefile.am,
Modbus/ModbusRTUExchange.cc, Modbus/ModbusSlave.cc: new version
ComPort
2007-01-13 22:53 vpashka
* include/ComPort.h: new interface
2007-01-13 17:46 vpashka
* src/IOs/ComPort.cc: fixed bug in cleaupChannel
2007-01-12 18:01 vpashka
* include/ComPort.h, src/IOs/ComPort.cc: Встроил предварительную
версию функции очистки буфера
2007-01-12 01:22 vpashka
* Utilities/: Admin/admin.cc, DBServer-MySQL/main.cc,
InfoServer/main.cc, SMonit/smonitor.cc: add --id-from-config
2007-01-11 18:53 vpashka
* Utilities/: NullController/main.cc, SViewer-text/main.cc: add new
arg param --id-from-configure
2007-01-11 18:43 vpashka
* Utilities/: Admin/admin.cc, DBServer-MySQL/main.cc,
InfoServer/main.cc, SViewer-text/main.cc: correct for new
Configuration
2007-01-11 02:27 vpashka
* Utilities/DBServer-MySQL/DBInterface.cc,
Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc, conf/uniset.spec,
docs/DocPages/todo.dox, include/NCRestorer.h,
src/Various/NCRestorer_XML.cc, src/Various/NCRestorer_XML1.cc:
add filter for consumer list
2007-01-11 02:16 vpashka
* Utilities/DBServer-MySQL/DBInterface.cc,
Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc, include/AskDumper.h,
src/Various/AskDumper_XML.cc, src/Various/AskDumper_XML1.cc: add
filter for consumer list
2007-01-10 01:31 vpashka
* conf/uniset.spec: update build requires
2007-01-10 00:54 vpashka
* include/: TriggerAND_template.h, TriggerOR_template.h: minor
fixes
2007-01-10 00:52 vpashka
* conf/: uniset.spec: add if_enabled doc
2007-01-09 21:44 vpashka
* include/NCRestorer.h, src/Various/NCRestorer_XML.cc,
src/Various/NCRestorer_XML1.cc: optimization: if askfile ==
ConfFileName
2007-01-09 17:28 vpashka
* src/Various/AskDumper_XML.cc: correct
2007-01-09 16:30 vpashka
* Utilities/NullController/NullController.cc, include/AskDumper.h,
src/Various/AskDumper_XML.cc, src/Various/AskDumper_XML1.cc:
optimization: if askfile == ConfFileName()
2007-01-09 14:14 vpashka
* Utilities/NullController/NullController.cc,
include/TriggerAND_template.h, include/TriggerOR_template.h: 1)
add using namespace 2) use AskDumper_XML
2007-01-06 03:19 vpashka
* configure.ac, src/Various/Makefile.am: fixed buf in
--with-doxygen option
2007-01-06 03:03 vpashka
* configure.ac, IDL/UniSetTypes/UniSetObject_i.idl,
IDL/UniSetTypes/UniSetTypes_i.idl, docs/DocPages/todo.dox,
include/DBServer.h, include/IOController.h,
include/IONotifyController.h, include/InfoServer.h,
include/ObjectsActivator.h, include/ObjectsManager.h,
include/TimerService.h, include/UniSetObject.h,
include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc: 1) add with-doxygen option
for configure 2) remove BaseObjectName from IDL (not used) 3)
"ObjectTypes"(long) --> "ObjectType"(string<30>)
2007-01-06 02:58 vpashka
* configure.ac: add --witch-doxygen
2007-01-05 17:38 vpashka
* Utilities/NullController/: NullController.cc, NullController.h:
remove test code
2007-01-05 17:38 vpashka
* Utilities/SViewer-text/: create_links.sh, start_fg.sh: test
scritps
2007-01-05 17:37 vpashka
* Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc,
Utilities/NullController/start_fg.sh, conf/test.xml,
include/NCRestorer.h, src/Various/NCRestorer_XML.cc,
src/Various/NCRestorer_XML1.cc: 1) add read filter fir
NCRestorer_XML
2007-01-05 17:17 vpashka
* Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h,
Utilities/NullController/main.cc,
Utilities/NullController/start_fg.sh,
Utilities/SViewer-text/create_links.sh,
Utilities/SViewer-text/start_fg.sh, conf/test.xml,
include/AskDumper.h, src/Various/AskDumper_XML.cc,
src/Various/AskDumper_XML1.cc: 1) add filter field and value for
AskDumper_XML 2) modify configure.xml 3) add new scripts
2007-01-05 03:10 vpashka
* TODO: new task
2007-01-05 03:08 vpashka
* conf/test.xml, include/NCRestorer.h,
src/Various/Configuration.cc, src/Various/NCRestorer.cc, TODO,
include/AskDumper.h: add comments
2007-01-05 01:33 vpashka
* include/AskDumper.h, src/Various/AskDumper_XML.cc,
src/Various/AskDumper_XML1.cc: add ReadSensors and ReadThreshods
slots
2007-01-05 01:31 vpashka
* Utilities/NullController/NullController.cc,
Utilities/NullController/NullController.h, include/NCRestorer.h,
src/Various/NCRestorer_XML.cc, src/Various/NCRestorer_XML1.cc:
add ReadThreshods slot
2007-01-04 23:00 vpashka
* configure.ac: remove old utilities
2007-01-04 22:56 vpashka
* conf/test.xml, src/Various/NCRestorer_XML.cc,
src/Various/NCRestorer_XML1.cc, src/Various/AskDumper_XML.cc,
src/Various/AskDumper_XML1.cc: init default value
2007-01-04 22:49 vpashka
* conf/test.xml, include/NCRestorer.h, src/Various/NCRestorer.cc,
src/Various/NCRestorer_XML.cc, src/Various/NCRestorer_XML1.cc:
init thresholds...
2007-01-04 22:36 vpashka
* include/NCRestorer.h, src/Processes/IONotifyController.cc,
src/Various/NCRestorer.cc: minor fixes in checkThresholds and
optimization other functions
2007-01-04 22:17 vpashka
* include/AskDumper.h, include/IONotifyController.h,
src/Processes/IONotifyController.cc, src/Various/AskDumper.cc,
src/Various/AskDumper_XML.cc: checkThresholds optimization
2007-01-04 21:38 vpashka
* conf/test.xml, include/AskDumper.h, src/Various/AskDumper_XML.cc,
src/Various/AskDumper_XML1.cc: add Thresholds examples
2007-01-04 21:17 vpashka
* Utilities/NullController/main.cc,
Utilities/NullController/start_fg.sh, include/IOController.h,
include/ISRestorer.h, include/NCRestorer.h,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Various/AskDumper.cc,
src/Various/ISRestorer.cc, src/Various/ISRestorer_XML.cc,
src/Various/NCRestorer.cc, src/Various/NCRestorer_XML.cc,
src/Various/NCRestorer_XML1.cc, src/Various/SMonitor.cc: minor
bug fixes and optimization in askSensor,askOutput,saveXXX
functions
2007-01-04 19:58 vpashka
* IDL/Processes/IOController_i.idl, Utilities/Admin/admin.cc,
Utilities/Admin/create_links.sh,
Utilities/NullController/start_fg.sh, include/IOController.h,
include/IONotifyController.h, include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc: return saveValue function
for remote processes
2007-01-04 19:05 vpashka
* Utilities/SMonit/start_fg.sh, include/IOController.h,
include/IONotifyController.h: set static functions
2007-01-04 19:04 vpashka
* src/: Processes/IONotifyController.cc, Various/NCRestorer_XML.cc,
Various/NCRestorer_XML1.cc, Various/SMonitor.cc: add default
initialization for value
2007-01-04 15:19 vpashka
* configure.ac, IDL/Processes/IOController_i.idl,
IDL/UniSetTypes/UniSetTypes_i.idl, Utilities/Admin/admin.cc,
Utilities/DBServer-MySQL/DBServer_MySQL.cc,
Utilities/InfoServer/main.cc,
Utilities/NullController/NullController.cc, include/AskDumper.h,
include/AskInfoDumper.h, include/IOController.h,
include/IONotifyController.h, include/InfoServer.h,
include/MessageType.h, include/SViewer.h,
include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/UniSetObject.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Services/InfoServer.cc,
src/Services/TimerService.cc, src/Various/AskDumper.cc,
src/Various/AskDumper_XML.cc, src/Various/AskDumper_XML1.cc,
src/Various/AskInfoDumper.cc, src/Various/AskInfoDumper_XML.cc,
src/Various/Makefile.am, src/Various/MessageType.cc,
src/Various/NCRestorer.cc, src/Various/NCRestorer_XML.cc,
src/Various/SMonitor.cc, src/Various/SViewer.cc: evolution
version
2007-01-03 22:22 vpashka
* include/IONotifyController.h,
src/Processes/IONotifyController.cc: удалил неиспользуемый
параметр функции
2007-01-03 20:02 vpashka
* conf/: release_helper.sh, uniset.spec: first commit
2007-01-03 19:52 vpashka
* ChangeLog: Auto updated by ./release_helper.sh for
uniset-0.7-alt0.1
2007-01-03 19:52 vpashka
* cvs2cl.pl: first commit
2007-01-03 19:43 vpashka
* include/ORepHelpers.h, include/ObjectRepository.h,
include/ObjectRepositoryFactory.h, include/ObjectsActivator.h,
include/ObjectsManager.h, include/SystemGuard.h,
include/UniSetTypes.h, include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/ORepHelpers.cc,
src/ObjectRepository/ObjectRepository.cc,
src/ObjectRepository/ObjectRepositoryFactory.cc: remove old code
for omniORB3
2007-01-03 19:25 vpashka
* configure.ac, Utilities/Makefile.am: 1) rmove old CFLAGS 2)
remove old utilities
2007-01-03 01:30 vpashka
* include/IOController.h, include/IONotifyController.h,
include/TextDBIndex.h, include/TextFileIndex.h,
include/TextIndex.h, src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Various/AskDumper.cc:
change localXXX function interface
2006-12-29 20:44 vpashka
* Utilities/SMonit/start_fg.sh: correct
2006-12-28 21:54 vpashka
* Utilities/NullController/main.cc: return orig version
2006-12-28 21:53 vpashka
* include/UniversalInterface.h: remove old comment
2006-12-28 21:52 vpashka
* conf/test.xml: add <messages>
2006-12-28 21:52 vpashka
* Utilities/Admin/test.xml: add --msgmap
2006-12-28 21:51 vpashka
* src/Various/MessageInterface_XML.cc: minor fixes
2006-12-28 21:47 vpashka
* Utilities/Admin/: admin.cc, test.xml: add --msgmap
2006-12-28 21:47 vpashka
* src/Various/: Configuration.cc, MessageInterface_XML.cc: 1)
create MessageInterface in Configure from conffile 2) fixed bug
in MessageInterface_XML.cc
2006-12-27 01:11 vpashka
* include/ISRestorer.h: no comment
2006-12-26 01:24 vpashka
* conf/uniset.spec, src/ObjectRepository/ObjectsManager.cc: fixed
errors in last commit
2006-12-25 23:48 vpashka
* src/ObjectRepository/ObjectsManager.cc: ui --> oind
2006-12-22 21:57 vpashka
* TODO, conf/uniset.spec: new version
2006-12-22 21:49 vpashka
* include/modbus/Makefile.am: correct includedir
2006-12-22 21:47 vpashka
* configure.ac, include/Makefile.am, include/modbus/Makefile.am,
include/modbus/ModbusRTUErrors.h,
include/modbus/ModbusRTUExchange.h, include/modbus/ModbusSlave.h,
include/modbus/ModbusSlaveSlot.h,
include/modbus/ModbusSlaveTypes.h, include/modbus/ModbusTypes.h,
src/Communications/Modbus/ModbusRTUExchange.cc,
src/Communications/Modbus/ModbusSlave.cc,
src/Communications/Modbus/ModbusSlaveSlot.cc,
src/Communications/Modbus/ModbusSlaveTypes.cc: move
/include/Communications/modbus to /include/modbus
2006-12-22 21:27 vpashka
* include/ComPort.h,
src/Communications/Modbus/ModbusRTUExchange.cc,
src/Communications/Modbus/ModbusSlave.cc,
src/Communications/Modbus/ModbusSlaveSlot.cc, src/IOs/ComPort.cc:
using namespace std
2006-12-22 21:15 vpashka
* src/Various/Mutex.cc: fixed bug in last commit
2006-12-22 21:14 vpashka
* include/Mutex.h, Utilities/NullController/main.cc: fixed error in
last commit
2006-12-22 21:11 vpashka
* INSTALL, configure.ac, Utilities/NullController/main.cc,
include/Mutex.h, src/Communications/Modbus/Makefile.am,
src/Communications/Modbus/ModbusRTUExchange.cc,
src/Communications/Modbus/ModbusSlave.cc,
src/Communications/Modbus/ModbusSlaveSlot.cc,
src/Communications/Modbus/ModbusSlaveTypes.cc,
src/Various/Mutex.cc: add ModbusSlave realisation
2006-12-22 17:00 vpashka
* src/Various/: MessageInterface_XML.cc, MessageInterface_idXML.cc:
correct printMessagesMap
2006-12-22 16:37 vpashka
* Utilities/Admin/admin.cc, include/DefaultMessageInterface.h,
include/MessageInterface.h, include/MessageInterface_XML.h,
include/MessageInterface_idXML.h, src/Various/Makefile.am,
src/Various/MessageInterface_XML.cc,
src/Various/MessageInterface_idXML.cc: 1) add new
MessagesInterface variant 2) fixed minor buf in ObjectIndex_XML
2006-12-22 15:33 vpashka
* include/Configuration.h, include/ObjectIndex_XML.h,
include/ObjectIndex_idXML.h, src/ObjectRepository/Makefile.am,
src/ObjectRepository/ObjectIndex_idXML.cc,
src/Various/Configuration.cc: add new ObjectIndex variant
2006-12-22 15:02 vpashka
* include/Configuration.h: add new functions
2006-12-21 21:46 vpashka
* include/IOController.h, include/IONotifyController.h,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Various/AskDumper.cc,
src/Various/AskDumper_XML.cc: fixed code for gcc4.1
2006-12-21 17:47 vpashka
* include/IOs/IOAccess.h: add using namespace std
2006-12-21 16:59 vpashka
* autogen.sh, configure.ac, Utilities/Makefile.am,
Utilities/Admin/admin.sh, Utilities/Admin/create_links.sh,
Utilities/Admin/test.xml,
Utilities/NullController/create_links.sh,
Utilities/NullController/start_fg.sh,
Utilities/SMonit/Makefile.am, Utilities/SMonit/create_links.sh,
Utilities/SMonit/event.sh, Utilities/SMonit/smonitor.cc,
Utilities/SMonit/start_fg.sh, conf/test.xml,
include/Configuration.h, include/IOController.h,
include/IONotifyController.h, include/SMonitor.h,
include/UniSetTypes.h, lib/Makefile.am,
src/ObjectRepository/Makefile.am,
src/ObjectRepository/UniSetTypes.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc,
src/Various/Configuration.cc, src/Various/Makefile.am,
src/Various/SMonitor.cc: new version: IOController and
IONotifyController optimization
2006-12-20 21:56 vpashka
* src/Various/Mutex.cc: new log format
2006-12-20 21:24 vpashka
* include/ISRestorer.h: correct comment
2006-12-20 16:43 vpashka
* Utilities/Admin/admin.cc,
Utilities/DBServer-MySQL/DBServer_MySQL.cc,
Utilities/DBServer-MySQL/main.cc, Utilities/InfoServer/main.cc,
Utilities/NullController/main.cc, Utilities/SViewer-text/main.cc,
include/Configuration.h, include/IOController.h,
include/IONotifyController.h, include/TimerService.h,
src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/IORFile.cc,
src/ObjectRepository/ORepHelpers.cc,
src/ObjectRepository/ObjectIndex_Array.cc,
src/ObjectRepository/ObjectIndex_XML.cc,
src/ObjectRepository/ObjectRepositoryFactory.cc,
src/ObjectRepository/ProxyManager.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Services/DBServer.cc,
src/Services/InfoServer.cc, src/Services/TimerService.cc,
src/Various/MessageInterface_XML.cc, src/Various/RunLock.cc,
src/Various/SViewer.cc, src/Various/SystemGuard.cc,
src/Various/UniXML.cc: add use "std"
2006-12-20 13:39 vpashka
* include/Configuration.h, include/DefaultMessageInterface.h,
include/Exceptions.h, include/IOController.h,
include/IONotifyController.h, include/IORFile.h,
include/ISRestorer.h, include/InfoServer.h, include/LT_Object.h,
include/MessageType.h, include/NCRestorer.h,
include/ORepHelpers.h, include/ObjectIndex.h,
include/ObjectIndex_Array.h, include/ObjectIndex_XML.h,
include/ObjectRepositoryFactory.h, include/ObjectsActivator.h,
include/ObjectsManager.h, include/PassiveObject.h,
include/ProxyManager.h, include/RunLock.h,
include/StorageInterface.h, include/SystemGuard.h,
include/TextFileIndex.h, include/TimerService.h,
include/TriggerAND.h, include/TriggerOR.h,
include/TriggerOutput.h, include/UniSetObject.h,
include/UniSetObserver.h, include/UniXML.h,
include/UniversalInterface.h, src/Various/Configuration.cc:
remove 'using namespace std' add 'std::' in all headers
2006-12-20 00:23 vpashka
* src/Various/Configuration.cc: add init variables in default
constructor
2006-12-19 21:51 vpashka
* TODO: new task
2006-12-19 21:48 vpashka
* docs/Makefile.am: add 'clean-local' rules
2006-12-19 18:46 vpashka
* Utilities/DBServer-MySQL/DBInterface.cc, include/Configuration.h,
include/Exceptions.h, include/MessageInterface.h,
include/MessageInterface_XML.h, include/MessageType.h,
include/NCRestorer.h, include/ObjectIndex.h,
include/ObjectIndex_XML.h, include/SViewer.h,
include/TimerService.h, include/UniSetObject.h,
include/IOs/IOAccessOld.h, src/IOs/DigitalCard_O5600.cc,
src/Interfaces/UniversalInterface.cc,
src/ObjectRepository/ORepHelpers.cc,
src/ObjectRepository/ObjectIndex_XML.cc,
src/ObjectRepository/ObjectRepository.cc,
src/ObjectRepository/ObjectRepositoryFactory.cc,
src/ObjectRepository/UniSetObject.cc,
src/Various/Configuration.cc,
src/Various/MessageInterface_XML.cc, src/Various/MessageType.cc,
src/Various/UniXML.cc: 1) fixed warning: signed <--> unsigned 2)
add new constructor for Configure
2006-11-30 17:29 vpashka
* docs/UniSetDox.cfg.in, include/UniversalInterface.h,
src/Interfaces/UniversalInterface.cc: char --> std::string
2006-11-30 12:19 vpashka
* include/IOs/IOAccess.h: add use namespace (minor bug)
2006-11-29 23:17 vpashka
* src/Timers/PassiveTimer.cc: fixed bug: init startTime for
WaitUpTime
2006-11-29 23:05 vitlav
* src/Timers/PassiveTimer.cc: use clock_ticks instead CLK_TCK
2006-11-29 23:04 vitlav
* include/PassiveTimer.h: add clock_ticks variable
2006-11-22 22:24 vpashka
* conf/uniset.spec: last version
2006-11-22 22:23 vpashka
* Utilities/scripts/uniset-functions.sh: change range for UID
2006-11-18 17:53 vpashka
* include/: PassiveTimer.h, Trigger.h: update comment
2006-11-17 21:05 vpashka
* include/LT_Object.h: don`t use gettimeofday
2006-11-17 21:04 vpashka
* src/Various/LT_Object.cc: remove gettimeofday and use
PassiveTimer for get elasped time...
2006-10-27 16:57 vitlav
* src/Timers/PassiveTimer.cc: замечание по CLK_TCK (не
использовать)
2006-10-14 20:53 vpashka
* conf/idl.mk: add IDLFLAGS
2006-10-14 20:43 vpashka
* src/Various/Configuration.cc: fixed minor bug: close fstream
2006-10-09 00:48 vpashka
* src/: Various/UniXML.cc, ObjectRepository/ObjectIndex_XML.cc:
fixed: memory leak
2006-10-01 14:55 vpashka
* src/ObjectRepository/UniSetObject.cc, include/UniSetObject.h:
Переделана функция очистки очереди (введён прямой доступ)
2006-07-30 17:10 vitlav
* TODO: add notes
2006-06-13 22:12 vpashka
* libUniSet.pc.in, include/Configuration.h, include/SystemGuard.h,
include/UniSetTypes.h, src/Processes/IONotifyController.cc,
src/Various/Configuration.cc, src/Various/SystemGuard.cc: fixed
errors for gcc 4.1.0
2006-06-07 01:33 vpashka
* src/Processes/: IOController.cc, IONotifyController.cc:
const_iterator --> interator
2006-05-26 21:44 vitlav
* src/IOs/ComPort.cc: добавлены комментарии по коду
2006-05-19 01:10 vpashka
* docs/html/description.txt: add html-directory
2006-05-19 01:10 vpashka
* Utilities/DBServer-MySQL/Makefile.am: minor fixes for compilation
2006-05-04 00:22 vpashka
* Utilities/DBServer-MySQL/DBServer_MySQL.cc: minor fixed: if
string message no empty then save string to DB
2006-05-03 22:51 vpashka
* Utilities/DBServer-MySQL/Makefile.am: fixed libname for make
2006-02-28 23:43 vpashka
* include/Configuration.h, src/Various/Configuration.cc: 1) Add
comments 2) Add function for usability
2006-02-28 23:40 vpashka
* IDL/Processes/IOController_i.idl, include/Configuration.h,
src/Various/Configuration.cc: 1) Add comments 2) Add function for
usability
2005-12-03 14:13 vpashka
* ChangeLog, docs/DocPages/UniSetLibStyle.dox, include/ComPort.h,
src/IOs/ComPort.cc: 1) nminor fixes for new doxygen 2) Add new
function for ComPort: setSpeed( string speed );
2005-12-02 21:16 vpashka
* configure.ac, src/ObjectRepository/ObjectIndex_XML.cc,
src/Processes/IOController.cc,
src/Processes/IONotifyController.cc, src/Various/MessageType.cc: