-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1509 lines (1209 loc) · 51.8 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
ChangeLog for davfs2
--------------------
2022-10-02 Ali Abdallah ([email protected])
* Release version 1.7.0
Port to FreeBSD.
Fix cached file not up to date attributes.
2021-10-31 Werner Baumann ([email protected])
* Release version 1.6.1
2021-10-24 Werner Baumann ([email protected])
* configure.ac:
Add Neon version 0.32.
2021-04-08 Werner Baumann ([email protected])
* mount.davfs.c, get_options:
Ignore all unknown options.
2021-01-27 Werner Baumann ([email protected])
* mount_davfs.c, write_mtab_entry:
Add option _netdev to utab-entry.
2020-08-07 Werner Baumann ([email protected])
* Release version 1.6.0
2020-08-06 Werner Baumann ([email protected])
* Update documentation.
2020-08-03 Werner Baumann ([email protected])
* cache.h, cache.c, mount_davfs.h, mount_davfs.c,
kernel_interface.h, kernel_interface.c,
dav_fuse.c, src/Makefile.am:
Remove Coda-support.
2020-06-07 Werner Baumann ([email protected])
* webdav.c, get_cookies:
New parser for cookies (bug #58459).
2020-06-06 Werner Baumann ([email protected])
* webdav.c, add_header:
Use ";" instead of "," as seperator (bug #58459).
2020-06-06 Werner Baumann ([email protected])
* mount_davfs.c, log_dbg_config:
Add log message.
2020-04-13 Werner Baumann ([email protected])
* defaults.h, etc/davfs2.conf, mount_davfs.h,
mount_davfs.c, new_args, read_config,
webdav.c, dav_init_wbdav:
Add option sharepoint_href_bug.
2020-03-04 Werner Baumann ([email protected])
* configure.ac, INSTALL.davfs2:
Update build tools.
2020-02-07 Werner Baumann ([email protected])
* mount_davfs.c, parse_commandline:
Ignore option -n (sr #110191).
2020-02-01 Werner Baumann ([email protected])
* dav_coda.c, dav_fuse.c:
Make variable debug static (sr #110186).
2019-12-25 Werner Baumann ([email protected])
* Release version 1.5.6
2019-11-27 Werner Baumann ([email protected])
* umount_davfs.c:
Adjust message.
2019-11-25 Werner Baumann ([email protected])
* umount_davfs.c:
Remove call to setuid and setgid.
2019-11-19 Werner Baumann ([email protected])
* mount_davs.c, check_dirs:
Ignore EEXIST when creating DAV_SYS_RUN (bug #57233).
2019-11-12 Werner Baumann ([email protected])
* umount_davfs.c
Replace GNU extension 'a' with option 'm' in fscanf
(bug #56286).
* configure.ac, webdav.c:
Check for inconv.h and iconv (bug #56178).
2019-01-24 Werner Baumann ([email protected])
Release version 1.5.5
2019-01-24 Werner Baumann ([email protected])
* davfs2.conf.5:
Warning about intermediary CAs (bug #54699).
2019-01-17 Werner Baumann ([email protected])
* cache.c, xml_end_reg:
Don't remove cache-files because of inconsistent
metadata (sr #109587).
2019-01-12 Werner Baumann ([email protected])
* Fixed typo (sr #109588).
2018-11-05 Werner Baumann ([email protected])
* webdav.c, dav_get_file:
Add query-string to path on redirect (bug #54943).
2017-07-22 Werner Baumann ([email protected])
* mount_davfs.c, get_options:
Ignore option "nofail" (fixes bug #51521).
2017-01-21 Werner Baumann ([email protected])
* cache.c, is_busy:
Fix infinite loop (bug #50083).
2016-08-18 Werner Baumann ([email protected])
* webdav.c, get_cookies:
Fix cookie parsing error (Debian Bug#834615, Thanks
to Harald Braumann).
2016-05-16 Werner Baumann ([email protected])
* Fix some spelling errors.
2016-04-16 Werner Baumann ([email protected])
Release version 1.5.4
2016-04-16 Werner Baumann ([email protected])
* src/Makefile.am:
Use --fstack-protector-strong.
2016-04-15 Werner Baumann ([email protected])
* README, mount.davfs.8:
Add information about required local cache space.
2016-04-08 Werner Baumann ([email protected])
* dav_fuse.c, dac_coda.c, kernel_interface.h, mount_davfs.c:
For kernel_fs fuse: when getting SIGTERM unmount
while dav_fuse_loop still is running.
2016-04-08 Werner Baumann ([email protected])
* dav_fuse.c, dav_fuse_loop:
Remove useless call of is_mounted (sr #109009).
2016-04-05 Werner Baumann ([email protected])
* Release version 1.5.3
2016-04-04 Werner Baumann ([email protected])
* mount_davfs.c, parse_line:
Fix stack smashing error (Debian bug #812456).
* mount_davfs.c, kernel_interface.c, webdav.c:
Check result of seteuid.
* cache.c, dav_tidy_cache:
Fix format parameter.
* src/Makefile.am:
Use compiler flag -fstack-protector-all.
2014-08-23 Werner Baumann ([email protected])
* Release version 1.5.2
2014-08-23 Werner Baumann ([email protected])
* umount_davfs.c:
Add (and ignore) option t (sr #108638).
2014-08-10 Werner Baumann ([email protected])
* Release version 1.5.1
2014-08-10 Werner Baumann ([email protected])
* cache.c:
Return error on close (sr #108597).
2014-08-09 Werner Baumann ([email protected])
* mount_davfs.c, cache.c:
High priority for lock refresh (sr #108607).
2014-08-09 Werner Baumann ([email protected])
* cache.c, dav_init_cache:
Increase faked free space.
2014-07-16 Werner Baumann ([email protected])
* webdav.c, webdav.h, dav_fuse.c, dav_coda.c,
mount_davfs.c, cache.c, cache.h:
Remove USERINFO, fix stat, remove update_stat.
2014-06-20 Werner Baumann ([email protected])
* cache.c, cache.h, mount_davfs.c:
Pass parameter got_sigterm by reference.
2014-06-19 Werner Baumann ([email protected])
* Mount_davfs.c, main:
Only log error if still is mounted.
2014-06-09 Werner Baumann ([email protected])
* defaults.h, mount_davfs.h, mount_davfs.c webdav.c:
Add option min_propset.
2014-06-08 Werner Baumann ([email protected])
* cache.c, add_node, update_directory:
Fix file times if LastModified is missing.
2014-05-24 Werner Baumann ([email protected])
* webdav.c, prop_result:
Case insensitive test of path (sr #108566).
2014-05-04 Werner Baumann ([email protected])
* cache.c, update_cache_file:
Fixing memory leak (sr #108158).
2014-04-22 Werner Baumann ([email protected])
* src/Makefile.am:
Add some hardening flags for compilation.
2014-04-21 Werner Baumann ([email protected])
* Release version 1.5.0.
2014-04-20 Werner Baumann ([email protected])
* defaults.h, mount_davfs.h, mount_davfs.c, cache.c:
Add option minimize_mem (sr #108158).
2014-04-20 Werner Baumann ([email protected])
* kernel_interface.c:
Try loading kernel module fuse.
* mount_davfs.c, check_dirs:
Set mode of secrets file.
* webdav.c, quota_reader:
Replace strndup with ne_strndup.
2014-04-18 Werner Baumann ([email protected])
* defaults.h, mount_davfs.h, mount_davfs.c, webdav.c:
Improve cookie support (sr #107907, bug #41438).
2014-04-13 Werner Baumann ([email protected])
* cache.c, mount_davfs.c, mount_davfs.h:
Add mount option grpid (sr #108432, Thanks to
Miguel Coca)
2014-04-09 Werner Baumann ([email protected])
* mount_davfs.c, mount_davfs.h:
Replace args->add_mopts.
2014-04-05 Werner Baumann ([email protected])
* mount_davfs.h, mount_davfs.c, webdav.c:
Add options trust_ca_cert and trust_server_cert.
2014-04-05 Werner Baumann ([email protected])
* umount_davfs.c:
Allways try 'umount -i'.
2014-04-05 Werner Baumann ([email protected])
* configure.ac, src/Makefile.am, defaults.h,
mount_davfs.h, mount_davfs.c:
Use utab if mtab is a symbolic link.
2014-03-30 Werner Baumann ([email protected])
* defaults.h, webdav.c:
Set default of follow_redirect to 0.
2014-03-23 Werner Baumann ([email protected])
* defaults.h, mount_davfs.h, mount_davfs.c, webdav.c:
Support temporary redirects.
2014-03-22 Werner Baumann ([email protected])
* cache.c, webdav.c, webdav.h:
Remove property creationdate.
2014-03-22 Werner Baumann ([email protected])
* cache.c, cache.h, dav_fuse.c, webdav.c, webdav.h:
Remove support for extended attributes.
Remove property creationdate.
2014-03-15 Werner Baumann ([email protected])
* Document option "use_compression".
2014-03-12 Werner Baumann ([email protected])
* cache.c, new_node:
Fix missing mode.
* man/mount.davfs.8:
Fix escape rules for fstab.
2014-03-11 Werner Baumann ([email protected])
* webdav.c, configure.ac:
Remove support for Neon versions < 0.27.
* defaults.h, mount_davfs.h, mount_davfs.c, wedav.c:
Support compression for GET responses (bug #41355,
thanks Evili del Rio).
2014-03-09 Werner Baumann ([email protected])
* mount_davfs.c, get_options:
Add option "comment=" (bug #41354)
2014-03-08 Werner Baumann ([email protected])
* cache.c, mount_davfs.c;
Make default access modes 755 and 644.
* cache.c:
Fix has_permission (bug #33644).
2014-03-07 Werner Baumann ([email protected])
* mount_davfs.c, check_dirs, parse_config:
Use stat instead of access.
* cache.c, mount_davfs.c, mount_davfs.h:
Remove file_umask and dir_umask (bug #34563).
2014-03-03 Werner Baumann ([email protected])
* mount_davfs.c, check_fstab:
Remove unnecessary decode_octal.
Remove double check for ft->mnt_dir.
* cache.c:
Missing 'static'.
2013-12-28 Werner Baumann ([email protected])
* mount_davfs.c, configure.ac:
Remove #include <argz.h>
* webdav.c:
Make calls to iconv functions depend on HAVE_ICONV.
* dav_fuse.c, fuse_stat:
dav_coda.c, coda_statfs:
Return ENOSYS if dav_statfs fails (this should never
happen).
2013-12-26 Werner Baumann ([email protected])
* mount_davfs.c:
Always canonicalize mount point (sr #108377).
* mount_davfs.h, mount_davfs.c:
Replace log_dbg_cmdline.
2013-09-22 Werner Baumann ([email protected])
* mount_davfs.c, check_fstab:
Replace xxfsent functions by xxmntent functions.
Don't compare commandline and fstab for options
'user' and 'users', only check fstab for presence.
2013-09-21 Werner Baumann ([email protected])
* configure.ac:
Add neon version 0.30 (sr #108392).
2013-09-08 Werner Baumann ([email protected])
* kernel_interface.c, mount_davfs.c:
Don't create /dev/coda and /dev/fuse.
Remove insecure calls of system().
2012-11-01 Werner Baumann ([email protected])
* man/Makefile.am, man/de/Makefile.am, man/es/Makefile.am:
Honour configrue parameter --manfile (sr #108173)
2012-08-20 Werner Baumann ([email protected])
* src/Makefile.am:
Fix DESTDIR bug (sr #108104).
2012-08-06 Werner Baumann ([email protected])
* mount_davfs.c, write_mtab_entry:
Remove unnecessary variable ret.
2012-08-06 Werner Baumann ([email protected])
* dav_fuse.c:
Fix integer format warnings.
2012-08-04 Werner Baumann ([email protected])
* mount_davfs.c:
Fix integer format warnings.
2012-07-19 Werner Baumann ([email protected])
* Release version 1.4.7.
2012-07-19 Werner Baumann ([email protected])
* mount_davfs.c:
Get auxiliary groups with getgroups.
2012-07-19 Werner Baumann ([email protected])
* umount_davfs.c:
Quote mpoint in umount_command.
2012-07-19 Werner Baumann ([email protected])
* webdav.c, init_webdav:
Error reading client certificate.
2012-07-19 Werner Baumann ([email protected])
* cache.c, has_permission:
Change strcmp() == 0 into strcmp() != 0 (bug #33644).
2012-07-19 Werner Baumann ([email protected])
* webdav.c, get_ne_error:
Translate HTTP 405 into ENOENT.
(http://savannah.nongnu.org/support/?107869)
2012-07-19 Werner Baumann ([email protected])
* cache.c, dav_init_cache:
Fix integer overflow.
2012-07-19 Werner Baumann ([email protected])
* dav_coda.c, dav_fuse.c:
Add missing #includes.
2012-07-19 Werner Baumann ([email protected])
* webdav.c, dav_quota:
Check for all but temporary errors on USERINFO.
2012-07-19 Werner Baumann ([email protected])
* mount_davfs.c, parse_line, read_config, read_secrets:
Remove fixed length buffer, parse config line in place
(bug #33412).
2012-07-19 Werner Baumann ([email protected])
* mount_davfs.c, kernel_interface.c:
Check return values of system calls.
2012-07-19 Werner Baumann ([email protected])
* webdav.c:
Added missing '\r' in constant none_match_header
2012-07-19 Werner Baumann ([email protected])
* mount_davfs.c, mount_davfs.h:
Remove check for someone elses home directory
(sr #107641).
2012-07-19 Werner Baumann ([email protected])
* cache.c, kernel_interface.c:
Fix integer format warnings.
2012-07-19 Werner Baumann ([email protected])
* cache.c, mount_davfs.c, webdav.c:
Fix format-security errors.
2012-07-19 Werner Baumann ([email protected])
* mount_davfs.c, check_fstab:
Search fstab additionally for mount point with
trailing slash (Debian Bug#580227).
2010-04-30 Werner Baumann ([email protected])
* Released version 1.4.6
2010-02-16 Werner Baumann ([email protected])
* dav_coda.c, dav_fuse.c, kernel_interface.c, webdav.c:
Add missing "#include <sys/stat.h>" (bug #28916).
2010-01-21 Werner Baumann ([email protected])
* mount_davfs.c, parse_secrets:
Wrong assignment of password from pam_mount.
(bug #28706);
2009-11-15 Werner Baumann ([email protected])
* cache.c, dav_create:
Fix another error in the log message.
2009-11-15 Werner Baumann ([email protected])
* cache.c, dav_create:
Fix log message.
* Released version 1.4.5
2009-11-15 Werner Baumann ([email protected])
* Released version 1.4.4
2009-11-14 Werner Baumann ([email protected])
* cache.c, dav_init_cache:
Initialize fs_stat->files.
* cache.c, dav_create:
Log entry if dav_lock returns EEXIST.
2009-11-03 Werner Baumann ([email protected])
* webdav.c, ssl_verify:
Don't accept suspicious certificates if !have_terminal.
2009-10-18 Werner Baumann ([email protected])
* mount_davfs.c, webdav.c:
Don't ask the user for unverified certificates
if "askauth 0".
* Released version 1.4.3
2009-10-18 Werner Baumann ([email protected])
* mount_davfs.c:
Add experimental support for command line option
'username' for use with pam_mount.
* Released version 1.4.2
2009-10-17 Werner Baumann ([email protected])
* mount_davfs.c, parse_secrets:
Check for tty before calling dav_user_input_hidden.
2009-10-14 Werner Baumann ([email protected])
* configure.ac:
Add support for neon 0.29.
* webdav.c, dav_init_webdav:
Support NTLM authentication.
2009-10-10 Werner Baumann ([email protected])
* webdav.c, dav_head:
Ignore Last-Modified header if the value is 0.
2009-08-30 Werner Baumann ([email protected])
* cache.c, update_cache_file:
Don't change file times when Last-Modified-Header
is missing.
2009-08-26 Werner Baumann ([email protected])
* cache.c, dav_close:
In call to get_file_handle set parameter accmode
to O_RDWR for directories (to avoid EBADF with coda).
2009-07-17 Werner Baumann ([email protected])
* webdav.c, prop_result:
Remove double slashes from path.
2009-06-30 Werner Baumann ([email protected])
* dav_fuse.c, fuse_stat:
Correct block counts according to block size.
2009-06-13 Werner Baumann ([email protected])
* Released version 1.4.1.
2009-06-12 Werner Baumann ([email protected])
* cache.c, set_next_upload_attempt:
Max. retry intervall for files must not exceed max_retry.
* Add configuration option max_upload_attempts.
2009-06-08 Werner Baumann ([email protected])
* cache.c, write_node et al:
Save member lock_expire to index file.
2009-06-07 Werner Baumann ([email protected])
* webdav.c, prop_result:
If property not found try property without namespace.
(idea by Dirk Arend <[email protected]>)
* cache.c, add_to_changed:
Fixed: wrong size in malloc.
* cache.c:
When upload fails temporarily: retry with
increasing delays.
* webdav.c, dav_delete:
If file is not found, try to unlock.
* cache.c, update_node:
Only remove created nodes when remote size > 0.
* webdav.c, dav_put:
Fix double free after second PUT attempt.
2009-06-06 Werner Baumann ([email protected])
* cache.c, dav_statfs:
Use retry time instead of dir_refresh.
* mount_davfs, read_secrets:
Only call ne_uri_defaultport if scheme != NULL.
2009-06-05 Werner Baumann ([email protected])
* wedav.c, dav_put:
Do HEAD if no etag returned (regression in 1.4.0).
* mount_davfs.c, read_secrets:
For URLs only check port if present.
* redo the above: set port to default if not present
and check.
2009-05-31 Werner Baumann ([email protected])
* cache.c, cache.h, dav_coda.c, dav_fuse.c:
Cache quota in global variable fs_stat.
Update with dir_refresh when closing or
deleting files.
Function dav_stafs now returns a pointer.
2009-05-30 Werner Baumann ([email protected])
* webdav.c, webdav.h, dav_quota:
Return total webspace instead of available.
Remember support for quota in static flag use_rfc.
Add support for method USERINFO.
* webdav.c:
Rename block_writer into file_reader for consistency
with neon naming conventions.
* cache.c, dav_open, dav_write:
Open directories O_RDWR again, but prevent writing
by applications.
2009-05-29 Werner Baumann ([email protected])
* mount_davfs.c, check_double_mounts:
Free temporary string mp.
* cache.c, parse_index:
Free index.
* webdav.c, dav_init_webdav:
Make custom_header a global variable to not disturb
code test tools.
* webdav.c, dav_quota:
Initialize ctx to 0; add ctx.error, use strtoull.
2009-05-25 Werner Baumann ([email protected])
* cache.c, mount_davfs.c:
Add missing includes.
2009-05-21 Werner Baumann ([email protected])
* cache.c, move_dirty, move_reg:
Use converted file name for dst_path.
* cache.c:
Rename move_dirty to move_no_remote.
* cache.c, move_reg:
Set src->utime = time(NULL).
2009-05-15 Werner Baumann ([email protected])
* cache.c, dav_close:
Always delete directory cache files on close.
* cache.c, dav_open:
Open dirs with O_RDONLY.
* dav_coda.c, dav_fuse.c:
Replace ENOTSUP by ENOSYS for unsupported upcalls.
2009-05-02 Werner Baumann ([email protected])
* Released version 1.4.0.
2009-05-01 Werner Baumann ([email protected])
* configure.ac;
Add AC_CHECK_FUNCS([ftruncate]).
2009-05-01 Werner Baumann ([email protected])
* bootstrap:
Use --copy option with automake, remove rm commands.
2009-05-01 Werner Baumann ([email protected])
* webdav.c:
Fix Etag normalization.
2009-05-01 Werner Baumann ([email protected])
* cache.h, dav_open:
Add parameter open_create to allow
for open(..., O_CREATE, 444).
2009-04-30 Werner Baumann ([email protected])
* cache.c, dav_close:
if delay_upload == 0 save to server immediately.
2009-04-29 Werner Baumann ([email protected])
* mount_davfs.c, mount_davfs.h:
Add mount-option "users".
2009-04-26 Werner Baumann ([email protected])
* mount_davfs.c:
New function split_uri; allow arbitrary characters
in path component, including spaces.
2009-04-14 Werner Baumann ([email protected])
* Reverted to fuse_kernel.h from 2.5.3 because of
different length of struct fuse_attr.
2009-04-13 Werner Baumann ([email protected])
* Updated fuse_kernel.h
* Removed unused licence documents.
2009-04-12 Werner Baumann ([email protected])
* Removed support for coda kernel version 2 and
fuse kernel version 5.
* Simplify coda.h and select alternative license.
2009-04-12 Werner Baumann ([email protected])
* bootstrap:
Inserted force options again. Restore COPYING
from COPYING.davfs2.
2009-04-06 Werner Baumann ([email protected])
* bootstrap:
Removed --force and --force-missing options.
* COPYING:
Added missing licenses.
2009-04-04 Werner Baumann ([email protected])
* cahe.c, dav_lookup:
If node not found update directory with file_refresh.
2009-03-29 Werner Baumann ([email protected])
* mount_davfs.c, mount.davfs.8:
Remove deprecated mount options (askauth, locks,
useproxy).
* defaults.h, davfs2.conf, davfs2.conf.5:
Option if_match_bug now defaults to 0.
2009-03-29 Werner Baumann ([email protected])
* mount_davfs.c, mount_davfs.h, webdav.c, defaults.h:
Remove support for WebDAV-property displayname.
2009-03-29 Werner Baumann ([email protected])
* cache.c:
Changed handling of directory cache files to fix
bug in handling "rm -r".
2009-03-28 Werner Baumann ([email protected])
* Undo FUSE_ATOMIC_O_TRUNC.
2009-03-24 Werner Baumann ([email protected])
* fuse7_kernel.h:
New version from linux 2.6.26
* dav_fuse7.c, fuse_init:
Use flag FUSE_ATOMIC_O_TRUNC.
2009-03-22 Werner Baumann ([email protected])
* cache.c, dav_setattr:
Set upload-time if size is changed.
* cache.c:
Added function get_upload_time.
* cache.c, update_cache_file:
Only upload dirty files if upload-time is reached.
(Fix empty PUTs on setattr before open.)
2009-03-15 Werner Baumann ([email protected])
* mount_davfs.c, split_proxy:
Only set port if given in args.
* mount_davfs.c, read_secrets:
Only compare proxy-port if given in secrets file.
* mount_davfs.c new_args:
Fix getuid() (not getuid).
2009-01-27 Werner Baumann ([email protected])
* mount_davfs.c, delete_args:
Remove double free of args->p_passwd (fixes bug
2351083, Debian bug #512625).
2009-01-02 Werner Baumann ([email protected])
* Added copyright notices.
* Updated to GPL version 3.
* mount_davfs: replace petpass with user_input_hidden.
2008-11-23 Werner Baumann ([email protected])
* Default for use_expect100 is now 0
2008-11-23 Werner Baumann ([email protected])
* webdav.c:
Add function lock_by_path.
Remove global variable suri.
2008-10-26 Werner Baumann ([email protected])
* unifying coding style
* webdav.c, dav_init_connection:
Use %-encoded path.
2008-09-08 Werner Baumann ([email protected])
* webdav.c, block_writer:
Add mode parameter in call of open(); remove
O_CREATE (thanks Marcin Zajączkowski)
* cache.c, open_file:
Add mode parameter in call of open().
2008-08-08 Werner Baumann ([email protected])
* webdav.c, dav_head:
Fix bug 2042177 (*length, not *mtime).
2008-07-12 Werner Baumann ([email protected])
* Released version 1.3.3
2008-06-30 Werner Baumann ([email protected])
* mount_davfs.c, get_options:
Missing break in first case.
2008-06-24 Werner Baumann ([email protected])
* cache.c, dav_setattr:
Set file times of the cache file too when they
are changed by setattr.
2008-06-17 Werner Baumann ([email protected])
* webdav.c, dav_put:
Only use etag in conditional PUT, even in second try.
2008-06-12 Werner Baumann ([email protected])
* cache.c, dav_tidy_cache:
Better debug messages, including neon-error.
2008-05-30 Werner Baumann ([email protected])
* cache.c, parse_index:
Finish parsing, before checking for parse error
(ne_xml_parse seems not allways to report
errors otherwise)
* cache.c, write_node:
Put path, name, cache_path, etag and mime_type
in CDATA-sections.
2008-05-23 Werner Baumann ([email protected])
* mount_davfs.c, mount_davfs.h, webdav.c, webdav.h:
Add ne_set_connect_timeout. (Thanks Martin Higham)
2008-05-17 Werner Baumann ([email protected])
* Released version 1.3.2 (really)
2008-05-16 Werner Baumann ([email protected])
* Not yet released 1.3.2
* cache.c, resize_cache:
Fixed another bug calculating cache_size.
2008-05-15 Werner Baumann ([email protected])
* Released version 1.3.2
2008-05-13 Werner Baumann ([email protected])
* cache.c, xml_..:
Concatenate subsequent cdata_callbacks. Fixes
growing-cache-bug when using libexpat.
* cache.c, clean_cache:
Fixed error parsing table.
* cache.c, update_cache_file:
Fixed error calculating cache_size.
2008-05-04 Werner Baumann ([email protected])
* Version 1.3.1 released.
2008-04-29 Werner Baumann ([email protected])
* webdav.c, dav_get_file:
Typo: If-Non-Match -> If-None-Match
2008-04-09 Werner Baumann ([email protected])
* dav_fuse7.c, fuse_init:
Reduce max_write according to bug in fuse.
* dav_fuse7.c, fuse_stat:
Increase bsize to as many pages as fit in max_write.
2008-04-05 Werner Baumann ([email protected])
* Improved debug output
2008-04-02 Werner Baumann ([email protected])
* configure.ac:
Add neon 0.28 (no API-changes)
2008-03-24 Werner Baumann ([email protected])
* man/davfs2.conf.5:
Clarified option servercert.
2008-03-24 Werner Baumann ([email protected])
* mount_davfs.c, change_persona:
Fixed bug in message: dav_user not dav_group
* man/davfs2.conf.5:
Options dav_user, dav_group: substitute USER
and GROUP, not PACKAGE.
2008-02-07 Werner Baumann ([email protected])
* Disable cookie support an conditional LOCK for Neon 0.25
2008-02-04 Werner Baumann ([email protected])
* Version 1.3.0 released.
2008-02-04 Werner Baumann ([email protected])
* cache.c, clean_cache:
Create backup-files for orphaned files in cache.
2008-02-04 Werner Baumann ([email protected])
* mount_davfs.c, cache.c:
Quick termination on SIGTERM; store flags dirty and
remote_exists of dirty files in index.
2008-02-03 Werner Baumann ([email protected])
* mount_davfs.c, termination_handler:
Don't call umount in termination handler.
2008-02-02 Werner Baumann ([email protected])
* dav_fuse7.c, dav_fuse5.c, dav_coda2.c, dav_coda3.c:
Only call dav_tidy_cache once every DAV_DELAY_UPLOAD
seconds as long as there are upcalls from kernel.
2008-02-02 Werner Baumann ([email protected])
*webdav.c, update_cookie:
Fixed bug: old cookie not removed.
2008-02-02 Werner Baumann ([email protected])
* webdav.c, dav_put:
No HEAD if !has_if_match_bug and !*exists.
2008-02-01 Werner Baumann ([email protected])
* Removed option idle_time.
Renamed option delay_uploads -> delay_upload.
Set delayed upload-time for node on close.
2008-01-31 Werner Baumann ([email protected])
*webdav.c, prop_result:
Add double quotes on Etag if missing.
2008-01-11 Werner Baumann ([email protected])
* umount_davfs.c:
Remove option -C from ps-command (BSC-option).
2008-01-05 Werner Baumann ([email protected])
* webdav.c, prop_result:
ctime is in iso-8601 format (Bug 1863061).
* webdav.c, prop_result, dav_put:
Fixed bug in drop_weak_etags.
* webdav.c, dav_put:
Only use etag in conditional PUT.
2007-12-31 Werner Baumann ([email protected])
* Renamed option: misused_weak_etag -> drop_weak_etags
2007-12-27 Werner Baumann ([email protected])
* webdav.c, dav_get_file, dav_head, dav_put:
Honour misused_weak_etag
2007-12-27 Werner Baumann ([email protected])
* webdav.c, webdav.h, mount_davfs.c, mount_davfs.h,
defaults.h;
New option: misused_weak_etag
2007-12-26 Werner Baumann ([email protected])
* webdav.c, dav_put:
Don't even use "if-match" with etag when has_if_match_bug.
2007-12-26 Werner Baumann ([email protected])
* mount_davfs.c, read_secrets:
Allow keyword "proxy" instead of DN in proxy line.
Fix bugs in certificate path names.
2007-12-25 Werner Baumann ([email protected])
* mount_davfs.c, read_secrets:
Allow mountpoint instead of url in secrets file.
2007-12-25 Werner Baumann ([email protected])
* mount_davfs.c, parse_line:
Allow none-ascii characters in config files.
* mount_davfs.h, mount_davfs.c, webdav.h, webdav.c,
defaults.h:
New options: precheck and ignore_dav_header
2007-12-23 Werner Baumann ([email protected])
* webdav.c, mount_davfs.h, mount_davfs.c, defaults.h:
Added very simple cookie support.
2007-12-15 Werner Baumann ([email protected])
* webdav.c, webdav.h, cache.c, cache.h:
Support dav-quota.
Change members of dav_stat to off_t.
2007-12-15 Werner Baumann ([email protected])
* cache.c, xml_cdata_date, write_node:
Use epoch and ISO-format for time. Human readable
string for information only.
2007-12-13 Werner Baumann ([email protected])
* webdav.c, webdav.h, cache.c:
New functions for converting character encoding.
* cache.c, update_node:
Check for changed name before other checks.
* webdav.c, dav_move:
Remove prop displayname if used.
2007-12-11 Werner Baumann ([email protected])
* webdav.c, prop_result, dav_init_webdav:
ne_propset_value always is in utf-8; don't decode
from utf-16.
2007-12-10 Werner Baumann ([email protected])
* cache.c:
Add list of changed nodes. New dav_tidy_cache function.
Write times in readable format to index file.
2007-12-08 Werner Baumann ([email protected])
* cache.c:
Change cache_size whenever a file changes (do not
calculate in dav_tidy_cache).
2007-12-01 Werner Baumann ([email protected])
* webdav.c, dav_lock:
create suri->path after HEAD-request
2007-11-30 Werner Baumann ([email protected])
* cache.c, cache.h, dav_fuse7.c:
Support getxattr for user.mime_type.
2007-11-25 Werner Baumann ([email protected])
* webdav.c, log_writer:
Use Loglevel LOG_DEBUG.
2007-11-22 Werner Baumann ([email protected])
* mount_davfs.h, mount_davfs.c, webdab.h, webdav.c,
davfs2.conf.5:
Added option "add_header".
2007-11-22 Werner Baumann ([email protected])
* cache.c, webdav.c:
Use conditional LOCK if possible.
2007-11-17 Werner Baumann ([email protected])
* cache.c, move_dirty:
Don't try to delete none-existant file.
2007-11-17 Werner Baumann ([email protected])
* davfs2.conf.5, mount_davfs.h, mount_davfs.c, webdav.c:
Add option if_match_bug. Use conditional PUT if
possible.
2007-11-11 Werner Baumann ([email protected])
* configure.ac, cache.c, webdav.c:
Remove support for neon 0.24
2007-11-06 Werner Baumann ([email protected])
* mount_davfs.c, debug_opts_neon:
Remove NE_DBG_XML from debug most.
2007-11-05 Werner Baumann ([email protected])
* webdav.c, put_file:
Added support for Neon 0.27
2007-11-03 Werner Baumann ([email protected])
* cache.c, dav_tidy_cache:
Don't check more than 100 nodes in one run.
2007-11-03 Werner Baumann ([email protected])
* defaults.h, mount_davfs.h, mount_davfs.c:
Added option delay_uploads
* cache.h, cache.c, dav_init_cache, dav_close:
Delay uploads only if !delay_uploads
2007-11-03 Werner Baumann ([email protected])
* cache.c, move_reg, dav_rename:
Send MOVE request for dirty files.
* webdav.c, dav_move:
Remove locks on source file.
* defaults.h:
use_displayname defaults to no
2007-11-02 Werner Baumann ([email protected])
* webdav.c, dav_head:
Check header Content-Length.