File: RELEASE-NOTES

package info (click to toggle)
srm-ifce 1.24.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 968 kB
  • sloc: ansic: 8,219; makefile: 94; sh: 32
file content (1194 lines) | stat: -rw-r--r-- 28,873 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
* Mon Feb 15 2021 Mihai Patrascoiu <mipatras at cern.ch> - 1.24.5
- [DMC-1108] - Segmentation Fault in srmv2_mkdir
- [DMC-1239] - SRM Bringonline not returning token for ONLINE file

* Thu Jul 20 2018 Andrea Manzi <amanzi at cern.ch> - 1.24.4
- [DMC-1004] - SRM Plugin: Map "None" locality
- [DMC-1062] - gfal2 unduly returns "no such file or directory"

* Thu Nov 09 2017 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.24.3
** Bug
- [DMC-995] - MacOSX 10.2 introduces clock_gettime
- [DMC-996] - Both cgsi-gsoap and srm-ifce build hang on MacOSX

** Improvement
- [DMC-972] - Workaround for Castor response for release with an invalid token

* Fri Feb 17 2017 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.24.2
- [DMC-917] - Uninitialized struct srm_getbestspacetokens_input for get

* Mon Aug 01 2016 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.24.1
- [DMC-844] - Remove reverse DNS lookup from srm-ifce/cgsi-gsoap

* Fri Nov 06 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.23.3
- [DMC-743] Some entries may not have owner and group in the response

* Mon Oct 12 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.23.2
- [DMC-698] Port DMC clients to MacOSX
- [DMC-743] Generate uid and gid from string representations

* Fri Apr 09 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.23.1
** Improvement
- [DMC-652] - Add an API to allow adding custom headers to the srm requests

* Fri Mar 27 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.22.3
- [DMC-655] - Need to initialize desiredRequestTime when called via gfal1
- [DMC-656] - Default desired request lifetime reduced to 300

* Mon Mar 02 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.22.2
- [DMC-637] - srm-ifce fails to map properly the error code when the server replies synchronously
- [DMC-616] - Facilitate build integration with PH-SFT tools

* Mon Jan 12 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.22.1
- [DMC-593] - ETIME and EBADR portability issue
- [DMC-606] - srm-ifce: On status of bring online, arrayOfSourceSURLs was not being set
- [DMC-561] - Map SRM_TOO_MANY_RESULTS to EFBIG when listing directories

* Thu Nov 06 2014 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.21.4
- [DMC-484] - srm_xping and xrm_ping bad return codes on error
- [DMC-489] - srm_xping: otherInfo may be null
- [DMC-510] - srm-ifce is not mapping correctly status codes (Was Revert DMC-433)
- [DMC-512] - BestMan SRM ENOENT when unlinking not properly handled
- [DMC-515] - bring online timeout is not set correctly in gfal_srmv2_bring_online_internal
- [DMC-521] - SRM_RELEASED as a response to Bring Online should be interpreted as success
- [DMC-449] - Add srm_xping, returning more information that srm_ping
- [DMC-528] - Yet another ENOENT possible string: [SRM_FAILURE] File does not exist
- [DMC-425] - srm-ifce KeepAlive is not honored

* Tue Jul 15 2014 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.20.1-1
- [LCGUTIL-382] - excessive cpu usage from srm-ifce function
- [LCGUTIL-421] - Initialize time fields when stating/listing
- [LCGUTIL-389] - Add support to query all space tokens
- [LCGUTIL-55] - GFAL 2.0 : set a clean API to set/get at runtime the different possible credential

* Mon Apr 07 2014 Alejandro Alvarez <aalvarez at cern.ch> - 1.19.0-1:
- [LCGUTIL-320] - SRM is overloaded with polling requests on prepare to get
- [LCGUTIL-367] - srm-ifce does not respect desired pin lifetime

* Fri Sep 20 2013 Adrien Devresse <adevress at cern.ch> - 1.18.0-1 :
- support for mtime and atime st field

* Mon Aug 19 2013 Alejandro Alvarez <aalvarez at cern.ch> - 1.17.0 :
 - [LCGUTIL-198] - SRM-ifce : IPv6 flag enabled
 - [LCGUTIL-203] - GFAL 2.0 : dCache production servers does not return the correct SRM error in case of file already exist.
 - [LCGUTIL-204] - SRM-ifce : potential security issue allowing arbitrary RAM read
 - [LCGUTIL-205] - SRM-ifce : globus openssl used indirectly by CGSI_GSOAP override errno values in some case by gsoap_free
 - [LCGUTIL-206] - GFAL2, SRM-ifce, LCGUTIL, FTS 3.0 : Checksum request are invalid with Storm which answer with MD5 checksum instead of ADLER32


* Tue Jul 02 2013 Adrien Devresse <adevress at cern.ch>  - 1.16.0-0
 - [LCGUTIL-90] - SRM-ifce : correct portability issue reported by Mattias 
 - [LCGUTIL-178] - source-contains-unsafe-symlink
 - [LCGUTIL-183] - SRM-ifce : big cleaning operation done by Michail from coverity scan 
 - [LCGUTIL-184] - SRM-ifce : add srm-mv support for "rename" operation
 - [LCGUTIL-185] - SRM-ifce : memory leaks correction
 - [LCGUTIL-186] - Srm-ifce : new session re-use logic in srm-ifce


* Tue Jan 08 2013 Adrien Devresse <adevress at cern.ch> - 1.14.0-1
- correct two timeout bug LCGUTIL-78 and LCGUTIL-82

* Thu Nov 29 2012 Adrien Devresse <adevress at cern.ch> - 1.14.0-0
- correct misleading namespace in PrepareToGetRequestStatus
- correct a timeout issue related to exponential backoff system in put/get
- improve reliability of the exponential backoff wait system
- big big code cleaning
- re-factory of the context system with backward compatibility
- fix the srm timeout issue
- fix the srm put done issue for long transfer

Fri Jul 20 2012 Adrien Devresse <adevress at cern.ch> - 1.13.0-0
 - Synchronise with EMI 2 Update 13
 - introduction of operation timeout
 - buffer overflow  and memory corruption corrections
 - minor warning corrections
 - ABI break, extend the context structure for timeout-per-context, impact limitated to gfal and gfal 2.0


2012-04-17 17:39  molnarzs

	* RELEASE-NOTES, VERSION, packaging/rpm/specs/srm-ifce.spec:
	  [ticket:]: Release notes updated for srm-ifce_R_1_1_1_1

2012-03-02 14:22  adevress

	* src/srmv2_data_transfer_functions.c: -correct asychronous put
	  invalid token, GGUS ticket related to EOS

2012-02-14 12:59  adevress

	* packaging/rpm/specs/srm-ifce.spec: - increase spec file packaging
	  release number [ticket:251]

2012-02-13 08:30  adevress

	* src/srmv2_space_management_functions.c: - correct again ^ 34
	  memory corruption from gsoap [ticket:274]

2012-02-12 21:42  adevress

	* CMakeLists.txt, src/CMakeLists.txt,
	  src/srmv2_discovery_functions.c,
	  src/srmv2_permission_functions.c: -correct memory corrpution from
	  gsoapfor discovery and directories function [ticket:274]

2012-02-12 21:28  adevress

	* src/srmv2_directory_functions.c: -correct memory corrpution from
	  gsoap [ticket:274]

2012-02-12 09:14  adevress

	* src/srmv2_data_transfer_functions.c: -add more fix for soap
	  memory corruption in the srm-ifce [ticket:271]

2012-02-09 14:54  adevress

	* packaging/rpm/specs/srm-ifce.spec: -correct issue for fc18
	  [ticket:251]

2012-02-09 09:03  adevress

	* packaging/rpm/specs/srm-ifce.spec: - correct pakcaging problem
	  after gsoap repackaging [ticket:251]

2012-02-02 13:01  adevress

	* packaging/rpm/specs/srm-ifce.spec: - remove macro on specfiles,
	  bug on i686 [ticket:251]

2012-01-30 16:12  adevress

	* packaging/rpm/specs/srm-ifce.spec: - change versiong system

2012-01-30 16:08  adevress

	* packaging/rpm/specs/srm-ifce.spec, src/CMakeLists.txt,
	  src/srm_util.c, src/srm_util.h,
	  src/srmv2_data_transfer_functions.c,
	  src/srmv2_directory_functions.c,
	  src/srmv2_permission_functions.c: -fix the gsoap stack smash
	  problem
	  increase the version of srm-ifce for epel
	  - change the versioning system

2012-01-16 14:39  adevress

	* packaging/bin/packager_rpm.sh, packaging/rpm/specs/srm-ifce.spec:
	  -add source url tar
	  - remvoe useless comments

2012-01-16 14:38  adevress

	* packaging/rpm/specs/srm-ifce.spec: -add the spec file
	  modification for EPEL

2012-01-15 20:59  adevress

	* packaging/rpm/specs/srm-ifce.spec: -correct maro problem in
	  rpmlint

2012-01-15 20:36  adevress

	* packaging/rpm/specs/srm-ifce.spec: -add new EPEL version

2012-01-13 12:33  adevress

	* cmake/modules/CMakeGeneratePkgConfig.cmake,
	  cmake/modules/FindDCAP.cmake: -add cmake files

2012-01-13 10:55  adevress

	* cmake/modules/FindCGSI_GSOAP.cmake: -add emit version of cgsi
	  gsoap for head compilation

2012-01-13 10:23  adevress

	* CMakeLists.txt, cmake/modules/CMakeGeneratePkgConfig.cmake,
	  cmake/modules/FindCGSI_GSOAP.cmake,
	  cmake/modules/FindgSOAP.cmake: -add missing cgsi FIND package

2012-01-13 09:43  adevress

	* cmake/modules/CMakeGeneratePkgConfig.cmake,
	  cmake/modules/CMakeMacroParseArguments.cmake,
	  cmake/modules/CMakeStringHelpers.cmake,
	  cmake/modules/FindDPM.cmake, cmake/modules/FindLFC.cmake: -add
	  missing cmake files

2012-01-13 09:12  adevress

	* CMakeLists.txt, cmake/modules/DefineInstallationPaths.cmake,
	  packaging/rpm/specs/srm-ifce.spec, src/CMakeLists.txt: -add
	  pkg-config auto-generation tools

2012-01-11 09:54  adevress

	* packaging/rpm/specs/srm-ifce.spec: -fix the include problem with
	  gcc
	  - create a branch for packaging

2012-01-11 09:12  adevress

	* src/srm_util.c: -patch srm_util include to avoid problem of
	  deferenced pointer with gcc 4.6 ( rawhide, fedora 15/16 )

2012-01-09 16:44  adevress

	* RELEASE-NOTES, VERSION, src/srm_util.c, test/execute_tests.sh,
	  test/unit/execute_tests.sh: -merge the TLocality change

2012-01-05 10:10  adevress

	* packaging/rpm/specs/srm-ifce.spec: -remove the useless %doc macro
	  ( docdir usage )

2012-01-05 09:35  adevress

	* CMakeLists.txt, cmake/modules/DefineInstallationPaths.cmake,
	  packaging/rpm/specs/srm-ifce.spec: -modify spec files and doc
	  install dir for EPEL compliance

2011-12-16 16:02  adevress

	* packaging/rpm/specs/srm-ifce.spec: -replace place of
	  documentation

2011-12-16 13:24  adevress

	* CMakeLists.txt, packaging/rpm/specs/srm-ifce.spec: - Improve spec
	  file quality with the comments of my sponsor
	  - change doc install dir
	  - use cmake macro
	  - remove isa macro for build req
	  - correct recursive dependencies

2011-12-15 10:02  adevress

	* CMakeLists.txt, README, packaging/rpm/specs/srm-ifce.spec: -add
	  README file for documentation purpose in the EPEL devel package

2011-12-15 10:00  adevress

	* src/gfal_srm_ifce.h, src/gfal_srm_ifce_internal.h,
	  src/gfal_srm_ifce_systemtest.c, src/gfal_srm_ifce_types.h,
	  src/gfal_srm_ifce_unittest.c, src/gfal_srm_ifce_unittest.h,
	  src/gfal_srm_ifce_unittest_common.c,
	  src/gfal_srm_ifce_unittest_srmls.c, src/srm_dependencies.c,
	  src/srm_soap.h, src/srm_util.c, src/srm_util.h,
	  src/srmv2_data_transfer_functions.c,
	  src/srmv2_directory_functions.c: - remove execution right to
	  source file, brings error to debuginfo generation

2011-12-15 09:55  adevress

	* CMakeLists.txt: -patch srm-ifce for debuginfo generation

2011-12-12 15:14  adevress

	* packaging/rpm/specs/srm-ifce.spec: -add srm ifce fix for the
	  -libs dependencies
	  -change bad summary

2011-12-02 12:21  adevress

	* cmake/modules/FindgSOAP.cmake: -correct gsoap macros

2011-12-02 12:19  adevress

	* packaging/rpm/specs/srm-ifce.spec: -hotfix the version number

2011-12-02 12:16  adevress

	* CMakeLists.txt: - correct specfiles in order to match the new
	  files name

2011-12-02 10:53  adevress

	* CMakeLists.txt, cmake/modules/FindgSOAP.cmake,
	  src/CMakeLists.txt: - add macro for gsoap backward compatibility

2011-12-01 16:51  adevress

	* CMakeLists.txt, cmake/modules/ReleaseDebugAutoFlags.cmake: -add
	  release mode to the build

2011-12-01 15:25  adevress

	* packaging/rpm/specs/srm-ifce.spec: -correct spec file version
	  number

2011-12-01 15:14  adevress

	* CMakeLists.txt, cmake, cmake/modules,
	  cmake/modules/DefineInstallationPaths.cmake,
	  cmake/modules/MacroCopyFile.cmake, m4-EPEL/ares.m4,
	  m4-EPEL/boost.m4, m4-EPEL/ccheck.m4, m4-EPEL/cgsi-gsoap.m4,
	  m4-EPEL/classads.m4, m4-EPEL/condorg.m4, m4-EPEL/cppunit.m4,
	  m4-EPEL/db.m4, m4-EPEL/docbook_html.m4, m4-EPEL/docbook_man.m4,
	  m4-EPEL/expat.m4, m4-EPEL/fcgi.m4, m4-EPEL/find_activemq.m4,
	  m4-EPEL/find_apr.m4, m4-EPEL/glib2.m4, m4-EPEL/glite-version.m4,
	  m4-EPEL/glite.m4, m4-EPEL/glite_ce.m4, m4-EPEL/glite_data.m4,
	  m4-EPEL/glite_dgas.m4, m4-EPEL/glite_dgas_common.m4,
	  m4-EPEL/glite_gpbox.m4, m4-EPEL/glite_gsoap_headernames.m4,
	  m4-EPEL/glite_jdl.m4, m4-EPEL/glite_jobid.m4,
	  m4-EPEL/glite_lb_nf.m4, m4-EPEL/glite_rgma.m4,
	  m4-EPEL/glite_security.m4, m4-EPEL/glite_service_discovery.m4,
	  m4-EPEL/glite_wms.m4, m4-EPEL/glite_wms_broker.m4,
	  m4-EPEL/glite_wms_brokerinfo.m4,
	  m4-EPEL/glite_wms_classad_plugin.m4, m4-EPEL/glite_wms_common.m4,
	  m4-EPEL/glite_wms_helper.m4, m4-EPEL/glite_wms_ism.m4,
	  m4-EPEL/glite_wms_jss.m4, m4-EPEL/glite_wms_matchmaking.m4,
	  m4-EPEL/glite_wms_ns.m4, m4-EPEL/glite_wms_optional.m4,
	  m4-EPEL/glite_wms_purger.m4, m4-EPEL/glite_wms_tp_bypass.m4,
	  m4-EPEL/glite_wms_ui_optional.m4, m4-EPEL/glite_wms_wmproxy.m4,
	  m4-EPEL/glite_wmsutils.m4, m4-EPEL/glite_wsdl_file.m4,
	  m4-EPEL/globus-fix.m4, m4-EPEL/globus.m4, m4-EPEL/gridlist.m4,
	  m4-EPEL/gridsite.m4, m4-EPEL/gsoap-fix.m4, m4-EPEL/gsoap.m4,
	  m4-EPEL/gsoap_base.m4, m4-EPEL/httpd.m4, m4-EPEL/java.m4,
	  m4-EPEL/jclassad.m4, m4-EPEL/jglobus.m4, m4-EPEL/lcmaps.m4,
	  m4-EPEL/ldap.m4, m4-EPEL/libtar.m4, m4-EPEL/log4cpp.m4,
	  m4-EPEL/log4cxx.m4, m4-EPEL/log4j.m4, m4-EPEL/ltdl-fix.m4,
	  m4-EPEL/myproxy.m4, m4-EPEL/mysql-devel.m4, m4-EPEL/mysql.m4,
	  m4-EPEL/optimize.m4, m4-EPEL/oracle-instantclient.m4,
	  m4-EPEL/python-c.m4, m4-EPEL/python.m4, m4-EPEL/replica.m4,
	  m4-EPEL/swig.m4, m4-EPEL/symbol-version.m4, m4-EPEL/unixodbc.m4,
	  m4-EPEL/xalan.m4, m4-EPEL/xerces.m4, m4-EPEL/xml2.m4,
	  m4-EPEL/zlib.m4, packaging/rpm/specs/srm-ifce.spec,
	  src/CMakeLists.txt: -modify spec files for CMake
	  - add the cmake macros
	  - add headers to install
	  - validate this

2011-12-01 13:57  adevress

	* CMakeLists.txt, src/CMakeLists.txt, src/srm_util.c: -add build
	  support for CMake

2011-12-01 13:57  adevress

	* packaging/rpm/specs/srm-ifce.spec: add the no static lib flag
	  -try to re-enable parallels builds
	  - modify to put them in alphabetical order

2011-12-01 13:57  adevress

	* packaging/rpm/specs/srm-ifce.spec, src/Makefile.am: -revert
	  changes to original ricardo spec file

2011-12-01 13:57  adevress

	* configure.ac, packaging/rpm/specs/srm-ifce.spec, src/Makefile.am:
	  -add a way to disable static build
	  - improve spec fiels with ricardo comments

2011-11-28 22:32  adevress

	* packaging/bin/packager_rpm.sh, packaging/rpm/specs/srm-ifce.spec:
	  Merge branch 'rpm_trunk_local2' into tmp

2011-11-28 17:48  adevress

	* packaging/rpm/specs/srm-ifce.spec: -valdiate rebase

2011-11-28 15:34  rocha

	* packaging/rpm/specs/srm-ifce.spec: Proper macro usage, better
	  description, no need for main rpm.

2011-11-28 10:31  adevress

	* packaging/rpm/specs/srm-ifce.spec: -improve spec files for epel

2011-11-24 17:22  adevress

	* packaging/rpm/specs/srm-ifce.spec, src/Makefile.am: -full EPEL
	  compatible build

2011-11-24 12:53  adevress

	* packaging/rpm/specs/srm-ifce.spec: -modify specs files in order
	  to disable tests generation

2011-11-24 12:53  adevress

	* configure.ac, src/Makefile.am: -add autotools macro in order to
	  disable tests generation

2011-11-24 12:53  adevress

	* src/autogen/config.h, src/autogen/config.h.in,
	  src/autogen/stamp-h1: remove generated files

2011-11-24 12:53  adevress

	* Makefile.in, src/Makefile.in: remove generated by configure files

2011-11-24 10:43  adevress

	* Makefile.in, m4-EPEL, m4-EPEL/ares.m4, m4-EPEL/boost.m4,
	  m4-EPEL/ccheck.m4, m4-EPEL/cgsi-gsoap.m4, m4-EPEL/classads.m4,
	  m4-EPEL/condorg.m4, m4-EPEL/cppunit.m4, m4-EPEL/db.m4,
	  m4-EPEL/docbook_html.m4, m4-EPEL/docbook_man.m4,
	  m4-EPEL/expat.m4, m4-EPEL/fcgi.m4, m4-EPEL/find_activemq.m4,
	  m4-EPEL/find_apr.m4, m4-EPEL/glib2.m4, m4-EPEL/glite-version.m4,
	  m4-EPEL/glite.m4, m4-EPEL/glite_ce.m4, m4-EPEL/glite_data.m4,
	  m4-EPEL/glite_dgas.m4, m4-EPEL/glite_dgas_common.m4,
	  m4-EPEL/glite_gpbox.m4, m4-EPEL/glite_gsoap_headernames.m4,
	  m4-EPEL/glite_jdl.m4, m4-EPEL/glite_jobid.m4,
	  m4-EPEL/glite_lb_nf.m4, m4-EPEL/glite_rgma.m4,
	  m4-EPEL/glite_security.m4, m4-EPEL/glite_service_discovery.m4,
	  m4-EPEL/glite_wms.m4, m4-EPEL/glite_wms_broker.m4,
	  m4-EPEL/glite_wms_brokerinfo.m4,
	  m4-EPEL/glite_wms_classad_plugin.m4, m4-EPEL/glite_wms_common.m4,
	  m4-EPEL/glite_wms_helper.m4, m4-EPEL/glite_wms_ism.m4,
	  m4-EPEL/glite_wms_jss.m4, m4-EPEL/glite_wms_matchmaking.m4,
	  m4-EPEL/glite_wms_ns.m4, m4-EPEL/glite_wms_optional.m4,
	  m4-EPEL/glite_wms_purger.m4, m4-EPEL/glite_wms_tp_bypass.m4,
	  m4-EPEL/glite_wms_ui_optional.m4, m4-EPEL/glite_wms_wmproxy.m4,
	  m4-EPEL/glite_wmsutils.m4, m4-EPEL/glite_wsdl_file.m4,
	  m4-EPEL/globus-fix.m4, m4-EPEL/globus.m4, m4-EPEL/gridlist.m4,
	  m4-EPEL/gridsite.m4, m4-EPEL/gsoap-fix.m4, m4-EPEL/gsoap.m4,
	  m4-EPEL/gsoap_base.m4, m4-EPEL/httpd.m4, m4-EPEL/java.m4,
	  m4-EPEL/jclassad.m4, m4-EPEL/jglobus.m4, m4-EPEL/lcmaps.m4,
	  m4-EPEL/ldap.m4, m4-EPEL/libtar.m4, m4-EPEL/log4cpp.m4,
	  m4-EPEL/log4cxx.m4, m4-EPEL/log4j.m4, m4-EPEL/ltdl-fix.m4,
	  m4-EPEL/myproxy.m4, m4-EPEL/mysql-devel.m4, m4-EPEL/mysql.m4,
	  m4-EPEL/optimize.m4, m4-EPEL/oracle-instantclient.m4,
	  m4-EPEL/python-c.m4, m4-EPEL/python.m4, m4-EPEL/replica.m4,
	  m4-EPEL/swig.m4, m4-EPEL/symbol-version.m4, m4-EPEL/unixodbc.m4,
	  m4-EPEL/xalan.m4, m4-EPEL/xerces.m4, m4-EPEL/xml2.m4,
	  m4-EPEL/zlib.m4, packaging, packaging/bin,
	  packaging/bin/packager_rpm.sh, packaging/rpm,
	  packaging/rpm/specs, packaging/rpm/specs/srm-ifce.spec,
	  src/Makefile.in, src/autogen, src/autogen/config.h,
	  src/autogen/config.h.in, src/autogen/stamp-h1: Merge branch
	  'rpms_epel' into rpm_epel_trunk_local

2011-11-24 10:19  adevress

	* .: Branch for EPEL packaging

2011-11-15 05:53  msalicho

	* one more attempt to fix 32bits

2011-11-14 19:45  msalicho

	* first attempt to fix 32bit build

2011-11-14 19:45  msalicho

	* first attempt to fix 32bit build

2011-09-14 16:06  molnarzs

	* Release candidate glite-data-srm-ifce_R_1_1_0_1

2011-09-12 18:04  molnarzs

	* Ticket [ticket:134] integrated.

2011-07-28 12:00  molnarzs

	* The memory leak hunt will be continued in a branch. Checking in
	  everything before branching.

2011-07-20 16:23  adevress

	* -reverse change for the last chance expo backoff

2011-07-19 11:00  molnarzs

	* SrmLs tests extended to cover FTS use cases

2011-07-08 09:50  adevress

	* bug correction on set_permission() returned errcode

2011-06-14 12:05  adevress

	* -modification of the free functions for the recursive use case

2011-06-09 13:16  adevress

	* -modification of docs/comments

2011-06-09 13:14  adevress

	* -add proper file for the memory management
	  - correct a license problem

2011-06-09 13:05  adevress

	* -modification of the exponential backoff for the timeout

2011-06-09 11:52  adevress

	* -add memory management function and associated doc

2011-06-08 14:40  adevress

	* - fix a bad SRM_ERROR -> errno error translation

2011-06-02 05:48  msalicho

	* remove DDEBUG to prevent gsoap logfiles creation

2011-03-26 06:50  msalicho

	* change ccheck macro name

2011-03-26 06:35  msalicho

	* change ccheck macro name

2011-02-23 13:57  msalicho

	* change gsoap version for EMI

2011-02-04 18:03  molnarzs

	* Integration candidate glite-data-srm-ifce_R_1_0_0

2011-02-04 11:24  molnarzs

	* - srm2_mkdir does not attempt to create the root directory
	  - Bugfix in handling permission denied error when creating
	  directories

2011-01-31 10:18  msalicho

	* EMI gsoap changes

2011-01-20 15:06  molnarzs

	* Savannah bug fix https://savannah.cern.ch/bugs/?52502 ported to
	  srm-ifce

2011-01-20 12:16  molnarzs

	* Segmentation fault in unit tests for uninitialized pointer fixed

2011-01-20 10:33  molnarzs

	* Hard-coded resources from srm-ifce system tests removed.

2011-01-17 15:49  molnarzs

	* Segfault of srm_ls appeared in the nightly tests fixed.

2011-01-14 15:51  molnarzs

	* Negative values of count and offset values in srm-ls request
	  cause EINVAL error on client side.

2010-12-03 16:32  tmanev

	* Fixing gfal-release test fail.

2010-12-03 16:28  tmanev

	* Fixing failing gfal-release test due to not proper bring online
	  execution(it was not waiting for the end of bring_online queued).

2010-12-03 14:57  tmanev

	* Reverted back to old behaviour to have positive result even if
	  only one(not all) filestatus returned.

2010-12-02 16:13  tmanev

	* Fixed gfal-prestagestatus test fail.

2010-12-02 15:42  tmanev

	* Fixing some of the failing python gfal tests.

2010-12-02 13:08  tmanev

	* Fixing gfal-get and gfal-getstatus tests.

2010-12-01 14:40  tmanev

	* Fixing some of the failing gfal api python tests.

2010-11-30 16:04  tmanev

	* Fixing systemtests.

2010-11-30 15:04  tmanev

	* Fixing tests for ls,put,bring online according to bug 52893.

2010-11-30 13:30  tmanev

	* Fixing tests gfal-pin and gfal-unlink.

2010-11-30 12:44  tmanev

	* Fixing gfal-open test and unittests.

2010-11-30 10:34  tmanev

	* Added test for unexistent file permission check. Fixed failing
	  gfal_access test.

2010-11-29 15:41  tmanev

	* Added srmPurgeFromSpace to space management functions. According
	  to savannah bug #49578.

2010-11-26 16:25  tmanev

	* Improved error message handling. First string [SE] is now stored
	  in one const variable - err_msg_begin.

2010-11-26 13:19  tmanev

	* Change srm_context_init function added input parameters for
	  errbuf errbufsz and verbose.

2010-11-26 11:13  tmanev

	* Fixing savannah bug #75530. Added setup of errno on multiple
	  places.

2010-11-25 16:28  tmanev

	* Script cleanup.

2010-11-25 15:58  tmanev

	* Removed lib from the script.

2010-11-25 15:50  tmanev

	* Added first parameter to be added in LD path.

2010-11-25 15:30  tmanev

	* Show libdir variable.

2010-11-25 13:32  tmanev

	* Removed change of LD_LIBRARY_PATH.

2010-11-25 11:06  tmanev

	* Added setup of LD folder before execution of the tests.

2010-11-24 13:27  tmanev

	* Clean up of commented srm_types.

2010-11-24 13:18  tmanev

	* Test execution script, fixed to work no matter from where it is
	  executed.

2010-11-24 13:06  tmanev

	* Add unittest script folder.

2010-11-24 13:04  tmanev

	* Added EGEE copyright headers.

2010-11-24 10:29  tmanev

	* Revert back to verbose test results.

2010-11-24 10:28  tmanev

	* Fixed seg fault in unittests, code cleaned up, added NOFORK
	  capabilities for easier debug.

2010-11-23 14:25  tmanev

	* Removed unused files from srm-ifce library.

2010-11-23 14:22  tmanev

	* Removed unused file generation.

2010-11-23 10:19  tmanev

	* Reverted to the previous gfal enum definitions.(in order not to
	  change dm-util).

2010-11-22 14:33  tmanev

	* Added globus to configuration.

2010-11-19 16:21  tmanev

	* Added test folder.

2010-11-19 15:40  tmanev

	* Added globus dependency due to cgsi dependency.

2010-11-19 14:09  tmanev

	* Missing CCHECK_CFLAGS.

2010-11-19 12:59  tmanev

	* Clear warning white space following backslash in makefile.am

2010-11-19 12:38  tmanev

	* Added m4 macro to build-common-cpp. Adjust configuration and
	  makefile.

2010-11-19 10:52  tmanev

	* Added ccheck to configuration and include.

2010-11-19 10:21  tmanev

	* Added gfal_srm_ifce_systemtest binary to the build.

2010-11-19 09:54  tmanev

	* Fixed build of binaries.

2010-11-19 09:45  tmanev

	* Fixed linking. Making baniries left.

2010-11-19 09:28  tmanev

	* Fix compilation. Linking left.

2010-11-19 08:53  molnarzs

	* Autotools introduced

2010-11-17 13:32  tmanev

	* Added last chance attempt to the backoff logic, will attempt 2
	  sec before the timeout.

2010-11-17 10:22  tmanev

	* Added estimated wait time for request and for file in data
	  transfer functions.

2010-11-17 09:20  tmanev

	* Async calls wrong function calls.

2010-11-17 09:16  tmanev

	* Fix one typo.

2010-11-16 15:26  tmanev

	* Remove various printf in srm_test added verbose output of the
	  test, for better parsing and integration of test results.

2010-11-12 13:42  tmanev

	* Imporved srm permissions test.

2010-11-12 09:05  tmanev

	* Fix rmdir unittest.

2010-11-11 12:44  tmanev

	* Added set/check/get permssions check in srm_test .

2010-11-10 16:47  tmanev

	* Removed some lcg utils calls fixed mkdir test. Now srm_test only
	  depends on lcg-cp.

2010-11-10 13:43  tmanev

	* rm_dir returns 1 upon successful directory removal in order to be
	  compatible with the old srm code.

2010-11-08 16:29  tmanev

	* Empty srm_compy function removed.

2010-11-08 15:52  tmanev

	* Fixing various bugs in srm_test.

2010-11-08 13:56  tmanev

	* Fix uninitialized output variables,by memset 0 for srm output
	  structures.

2010-11-05 12:26  tmanev

	* Fixed Segmentation fault, on double call of bring online. Because
	  of uninitialized request variables of srm abort request.

2010-11-03 11:53  tmanev

	* Add regression unittest for the mkdir last level directory
	  creation problem.

2010-11-03 09:54  tmanev

	* Fixing bug of mkdir - last level folder was not created. (fix
	  provided by Ronny Tschueter)

2010-07-28 08:45  tmanev

	* Fixed wrong commit, from is-interface files.

2010-07-28 08:40  tmanev

	* cornel configuration script for is-interface wrongly submitted.

2010-07-28 08:40  tmanev

	* cornel configuration script for is-interface wrongly submitted.

2010-07-27 09:55  cmicu

	* glib dependencies configuration.

2010-07-27 09:55  cmicu

	* changed permissions.

2010-07-20 12:25  tmanev

	* Set output token for synchroneous calls to NULL, in the begining
	  of the calls.

2010-07-13 15:58  tmanev

	* Added version wrapper for check permission.

2010-07-13 11:58  tmanev

	* srm extend file lifetime fixed input/output parameters, according
	  to the template.

2010-07-13 07:38  tmanev

	* Clear a warning, for incompatible pointer types.

2010-07-12 09:45  tmanev

	* Making the make file build with 32 bit.

2010-07-09 07:59  tmanev

	* 

2010-07-08 15:09  tmanev

	* prepare was written prepeare in some of the functions.

2010-07-08 14:53  tmanev

	* Added version wrapper for prepare to put and prepare to get and
	  status of put/get request synchronious calls.

2010-07-07 14:07  tmanev

	* Fixed verious segmentation faults in unittests due to
	  uninitialized variables in the test and some.

2010-07-06 09:19  tmanev

	* Removed voms from makefile and configuration file. Changed to
	  stage folder.

2010-07-05 11:25  tmanev

	* 

2010-07-05 11:20  tmanev

	* missing coma in config file.

2010-07-05 10:03  tmanev

	* cchek location added.

2010-07-05 09:28  tmanev

	* Added ccheck folders in configuration script and makefile.

2010-07-02 15:13  tmanev

	* 

2010-07-02 15:03  tmanev

	* Delete automake file.

2010-07-02 15:02  tmanev

	* Delete automake scripts.

2010-07-02 15:02  tmanev

	* Delete auto make files.

2010-07-02 14:27  tmanev

	* 

2010-07-02 13:18  tmanev

	* 

2010-07-02 12:27  tmanev

	* 

2010-07-02 12:23  tmanev

	* Makefile changes, remove automake.

2010-07-02 07:50  tmanev

	* Wrong function prototype.

2010-06-29 15:13  tmanev

	* 

2010-06-29 13:41  tmanev

	* 

2010-06-25 15:09  tmanev

	* 

2010-06-25 13:35  tmanev

	* 

2010-06-24 15:05  tmanev

	* 

2010-06-24 13:18  tmanev

	* Removed various warnings.

2010-06-24 11:36  tmanev

	* Clearing various warnings and errors.

2010-06-24 08:11  tmanev

	* Added srm_context_init function. Removed some dependencies.

2010-06-22 13:46  tmanev

	* 

2010-06-17 13:38  tmanev

	* 

2010-06-17 12:19  tmanev

	* 

2010-06-10 14:29  tmanev

	* 

2010-06-09 15:08  tmanev

	* 

2010-06-07 15:55  tmanev

	* 

2010-06-07 13:06  tmanev

	* 

2010-06-04 15:33  tmanev

	* 

2010-06-03 14:57  tmanev

	* 

2010-06-02 15:32  tmanev

	* 

2010-06-02 13:48  tmanev

	* 

2010-06-01 15:45  tmanev

	* 

2010-06-01 15:33  tmanev

	* 

2010-06-01 15:17  tmanev

	* 

2010-06-01 14:54  tmanev

	* 

2010-06-01 13:14  tmanev

	* 

2010-06-01 12:32  tmanev

	* 

2010-06-01 12:11  tmanev

	* 

2010-05-31 16:14  tmanev

	* 

2010-05-31 13:46  tmanev

	* 

2010-05-28 15:58  tmanev

	* 

2010-05-28 08:51  tmanev

	* 

2010-05-27 13:15  tmanev

	* 

2010-05-27 10:02  tmanev

	* 

2010-05-27 08:16  tmanev

	* 

2010-05-26 16:06  tmanev

	* 

2010-05-26 14:14  tmanev

	* 

2010-05-26 11:57  tmanev

	* 

2010-05-25 15:58  tmanev

	* 

2010-05-25 13:23  tmanev

	* 

2010-05-25 12:49  tmanev

	* 

2010-05-25 12:48  tmanev

	* 

2010-05-25 12:47  tmanev

	* 

2010-05-25 11:39  tmanev

	* 

2010-05-25 09:13  tmanev

	* 

2010-05-21 17:10  tmanev

	* 

2010-05-21 14:08  tmanev

	* 

2010-05-20 15:42  tmanev

	* 

2010-05-20 09:41  tmanev

	* 

2010-05-19 14:02  tmanev

	* 

2010-05-18 15:40  tmanev

	* 

2010-05-18 12:31  tmanev

	* 

2010-05-17 16:16  tmanev

	* 

2010-05-07 12:03  tmanev

	* 

2010-05-07 06:58  tmanev

	* 

2010-05-06 14:21  tmanev

	* 

2010-05-04 09:44  tmanev

	* 

2010-05-04 08:55  tmanev

	* 

2010-05-04 07:26  tmanev

	* 

2010-05-03 13:53  tmanev

	* 

2010-04-23 09:22  molnarzs

	* First import