-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1580 lines (1274 loc) · 54.5 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
--------------------
2021-04-08 Werner Baumann (werner.baumann@onlinehome.de)
* mount.davfs.c, get_options:
Ignore all unknown options.
2021-01-28 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, write_mtab_entry:
Add option _netdev to utab-entry.
2020-08-24 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, main:
Remove gnulib.
2020-08-21 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, umount_davfs.c:
Replace canonicalize_file_name with realpath.
2020-08-13 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.h, mount_davfs.c, webdav.h, webdav.c,
cache.h, cache.c, etc/davfs2.conf, man/davfs2.conf.5,
config/davfs2.m4:
Remove iconv.
2020-08-12 Werner Baumann (werner.baumann@onlinehome.de)
* Remove gnulib.
2020-06-07 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, get_cookies:
New parser for cookies (bug #58459).
2020-06-06 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, add_header:
Use ";" instead of "," as seperator (bug #58459).
2020-06-06 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, log_dbg_config:
Add log message.
2020-06-05 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac, 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-02-07 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_commandline:
Ignore option -n (sr #110191).
2019-12-08 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Adjust message.
2019-11-26 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Remove call to setuid and setgid.
2019-11-19 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davs.c, check_dirs:
Ignore EEXIST when creating DAV_SYS_RUN (bug #57233).
2019-11-12 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c
Use option 'm' in fscanf.
2019-01-17 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, xml_end_reg:
Don't remove cache-files because of inconsistent
metadata (sr #109587).
2019-01-12 Werner Baumann (werner.baumann@onlinehome.de)
* Fixed typo (sr #109588).
2017-07-22 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, get_options:
Ignore option "nofail" (fixes bug #51521).
2017-01-21 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, is_busy:
Fix infinite loop (bug #50083).
2016-08-18 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, get_cookies:
Fix cookie parsing error (Debian Bug#834615, Thanks
to Harald Braumann).
2016-05-16 Werner Baumann (werner.baumann@onlinehome.de)
* Fix some spelling errors.
2016-04-08 Werner Baumann (werner.baumann@onlinehome.de)
* README, mount.davfs.8:
Add information about required local cache space.
2016-04-09 Werner Baumann (werner.baumann@onlinehome.de)
* kernel_interface.c:
Remove useless call of is_mounted.
2016-04-09 Werner Baumann (werner.baumann@onlinehome.de)
* kernel_interface.c, mount_davfs.c:
Unmount while dav_run_msgloop is still running.
2016-04-04 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, kernel_interface.c:
Fix compiler warnings.
2016-04-04 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_line:
Fix stack smashing error.
2015-04-20 Werner Baumann (werner.baumann@onlinehome.de)
* Add gnulib module alignof
cache.c:
Use alignof; remove test_alignment.
2014-08-24 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Add (and ignore) option t (sr #108638).
2014-08-10 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c:
Return error on close (sr #108597).
2014-08-10 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, kernel_interface.c:
High priority for lock refresh (sr #108607).
2014-08-09 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_init_cache:
Increase faked free space.
2014-06-22 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, webdav.h, kernel_interface.c,
mount_davfs.c, cache.c, cache.h:
Remove USERINFO, fix stat, remove update_stat.
2014-06-20 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, cache.h, mount_davfs.c:
Pass parameter got_sigterm by reference.
2014-06-19 Werner Baumann (werner.baumann@onlinehome.de)
* Mount_davfs.c, main:
Only log error if still is mounted.
2014-06-09 Werner Baumann (werner.baumann@onlinehome.de)
* defaults.h, mount_davfs.h, mount_davfs.c webdav.c:
Add option min_propset.
2014-06-08 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, add_node, update_directory:
Fix file times if LastModified is missing.
2014-05-24 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, prop_result:
Case insensitive test of path (sr #108566).
2014-05-04 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, update_cache_file:
Fixing memory leak (sr #108158).
2014-04-20 Werner Baumann (werner.baumann@onlinehome.de)
* defaults.h, mount_davfs.h, mount_davfs.c, cache.c:
Add option minimize_mem (sr #108158).
2014-04-20 Werner Baumann (werner.baumann@onlinehome.de)
* kernel_interface.c:
Replace system() with execl().
* mount_davfs.c:
Add function cp_file to replace system.
2014-04-18 Werner Baumann (werner.baumann@onlinehome.de)
* defaults.h, mount_davfs.h, mount_davfs.c, webdav.c:
Improve cookie support (sr #107907, bug #41438).
2014-04-13 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, defaults.h, mount_davfs.c, mount_davfs.h:
Add mount option grpid (sr #108432, Thanks to
Miguel Coca)
2014-04-09 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h:
Replace args->add_mopts.
2014-04-06 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
Remove deprecated option servercert.
2014-04-05 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Allways try 'umount -i'.
* umount_davfs.c:
Use xasprintf.
2014-04-05 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac, src/Makefile.am, defaults.h,
mount_davfs.h, mount_davfs.c:
Use utab if mtab is a symbolic link.
2014-03-22 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, webdav.c, webdav.h:
Remove property creationdate.
2014-03-15 Werner Baumann (werner.baumann@onlinehome.de)
* Document option "use_compression".
2014-03-12 Werner Baumann (werner.baumann@onlinehome.de)
* man/mount.davfs.8:
Fix escape rules for fstab.
2014-03-11 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, get_options:
Add option "comment=" (bug #41354).
2013-09-08 Werner Baumann (werner.baumann@onlinehome.de)
* Updating to fuse kernel version 7.19.
2013-08-15 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c:
Fix has_permission (bug #33644).
2013-08-13 Werner Baumann (werner.baumann@onlinehome.de)
* defaults.h, mount_davfs.c:
Fix evaluation of default modes.
2013-08-13 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, configure.ac:
Remove support for Neon versions < 0.27.
2013-08-13 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, webdav.c, webdav.h:
Remove support for property 'Execute'.
2013-08-12 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, defaults.h:
Fix default modes.
2013-08-12 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, mount_davfs.c;
Make default access modes 755 and 644.
2013-08-12 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, mount_davfs.c, mount_davfs.h:
Remove file_umask and dir_umask (bug #34563).
2013-08-12 Werner Baumann (werner.baumann@onlinehome.de)
* defaults.h, mount_davfs.c, mount_davfs.h:
Beautify defaults.
2013-08-10 Werner Baumann (werner.baumann@onlinehome.de)
* kernel_interface.c:
Assign buf_size before using it.
2013-08-09 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, cache.h, kernel_interface.c, kernel_interface.h
webdav.c, webdav.h:
Remove support for extended attributes.
2013-08-09 Werner Baumann (werner.baumann@onlinehome.de)
* src/Makefile.am, cache.c, cache.h, coda.c, dav_coda.h,
dav_fuse.ckernel_interface.c, kernel_interface.h,
mount_davfs.c, mount_davfs.h, po/, man/:
Remove support for Coda
2012-11-01 Werner Baumann (werner.baumann@onlinehome.de)
* man/Makefile.am, man/de/Makefile.am, man/es/Makefile.am:
Honour configure parameter --manfile (sr #108173)
2012-08-20 Werner Baumann (werner.baumann@onlinehome.de)
* src/Makefile.am:
Fix DESTDIR bug (sr #108104).
2012-08-06 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, write_mtab_entry:
Remove unnecessary variable ret.
cache.c:
Fixrd typo.
2012-08-06 Werner Baumann (werner.baumann@onlinehome.de)
* dav_fuse.c:
Fix integer format warnings.
2012-08-04 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
Fix integer format warnings.
2012-08-03 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, kernel_interface.c:
Fix integer format warnings.
2012-06-03 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, has_permission:
Change strcmp() == 0 into strcmp() != 0 (bug #33644).
2012-05-28 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
Added functions read_cert and read_client_cert.
2012-03-18 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, get_ne_error:
Translate HTTP 405 into ENOENT.
(http://savannah.nongnu.org/support/?107869)
* mount.davfs.8, de/mount.davfs.8.po:
Fixed typos. (Debian Bug#660866)
2012-03-01 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_init_cache:
Fix integer overflow.
2012-02-05 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h, webdav.c:
Read client certificates in mount_davfs.c.
2012-02-01 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h, webdav.c:
Add option trust_server_cert.
2012-01-31 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h, webdav.c:
Read ca_cert in mount_davfs.c.
* mount_davfs.c, parse_commandline, parse_config:
Redo: Canonicalize conf in parse_cmdline.
* mount_davfs.c, get_options, new_args, check_fstab:
Fix defaults for mopts.
* umount_davfs.c:
Don't use a-flag in fscanf.
2012-01-28 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, check_dirs:
Use stat instead of access.
Use stored persona.
Use getgroups.
* mount_davfs.c, check_permissions:
Use getgroups.
* mount_davfs.c, check_dirs, read_secrets:
Check secrets file in check_dirs.
* all:
Add Gnulib module xalloc.
Add Gnulib modules xstrndup and xvasprintf.
2012-01-25 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h:
Check mount point in parse_commandline.
* kernel_interface.c. dav_init_kernel_interface:
Readd 'return mounted'.
2012-01-24 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, check_mountpoint:
Use stored persona.
2012-01-22 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
Add function expand_home.
* mount_davs.c, parse_cmdline, parse_config:
Canonicalize conf in parse_cmdline.
* mount_davfs.c, parse_config:
Use stored persona.
2012-01-21 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, check_fstab, get_options, parse_persona:
Rename check_persona into parse_persona.
Set n_args->uid and n_args->gid in check_fstab.
* mount_davfs.c, check_fstab:
Remove double check for ft->mnt_dir.
Remove unnecessary decode_octal.
2012-01-15 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_config, new_args:
Don't set default values of strings in new_args.
* mount_davfs.c, check_fstab, get_options, new_args,
parse_config, defaults.h:
Set defaults for netdev, mopts, fsuid and fsgid
in get_options.
* mount_davfs.c, kernel_interface.c:
Check for _POSIX_SAVED_IDS,
add gain_privileges and release_privileges.
* mount_davfs, get_options:
Get default fsuid and fsgid from getuid and getgid.
2012-01-14 Werner Baumann (werner.baumann@onlinehome.de)
* src/Makefile.am:
Typo in $(top_builddir)
Added ../gl/libgnu.a to _LDADD (bug #31537,
thanks Tomi).
* mount_davfs.h, mount_davfs.c, cache.c, kernel_interface.c:
Rename members uid and gid of args into fsuid and fsgid.
* mount_davfs.h, mount_davfs.c:
Store process persona in args.
* mount_davfs.c, parse_config, new_args:
Set default user config file in parse_config.
* mount_davfs.c, parse_config, new_args:
Set default user secrets file in parse_config.
* mount_davfs.c, parse_config, new_args:
Set default cache directory in parse_config.
2012-01-12 Werner Baumann (werner.baumann@onlinehome.de)
* dav_coda.c, dav_fuse.c:
Add missing #include <stdlib.h>
* src/Makefile.am:
Add missing -I$(tob_builddir)/gl to AM_CPPFLAGS
2012-01-07 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac:
Use newer versions of auto-tools.
2011-12-18 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_quota:
Check for all but temporary errors on USERINFO.
* dav_fuse.c, fuse_stat:
dav_coda.c, coda_statfs:
Return ENOSYS if dav_statfs fails (this should never
happen).
2011-06-29 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h:
Check for relative mount point.
2011-06-25 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Quote mpoint in umount_command.
2011-06-25 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
Always canonicalize mount point.
2011-06-23 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_line, read_config, read_secrets:
Remove fixed length buffer, parse config line in place
(bug #33412).
2011-05-27 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Missing #include "canonicalize.h"
2011-04-03 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h:
Remove check for someone elses home directory
(sr #107641).
2011-01-02 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac, davfs2.m4, webdav.c:
Add option --disable-iconv.
2010-12-31 Werner Baumann (werner.baumann@onlinehome.de)
* Add Gnulib module iconv_open.
* Add gettext support for Gnulib
2010-11-09 Werner Baumann (werner.baumann@onlinehome.de)
* Use Gnulib modules canonicalize and rpmatch
2010-11-07 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c:
Make calls to iconv functions depend on HAVE_ICONV.
* webdav.c, log_writer:
Use format string in syslog.
* cache.c, create_cache_file, create_dir_cache_file:
Use format string in syslog.
* mount_davfs.c, check_dirs:
Check return value of system call and ignore it.
* kernel_interface.c, init_coda, init_fuse:
Check return value of system call.
Check return values of chown and chmod.
2010-11-03 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, check_mountpoint:
Always canonicalize mount point.
* 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.
* mount_davfs.h, mount_davfs.c:
Replace log_dbg_cmdline.
2010-08-07 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c:
Added missing '\r' in constant none_match_header
2010-08-07 Werner Baumann (werner.baumann@onlinehome.de)
* Undoing changes of 2010-07-25
2010-07-25 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, defaults.h, mount_davfs.c, mount_davfs.h
davfs2.conf:
Added option to minimize memory usage by recurrently
removing unused nodes.
2010-05-04 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, check_fstab:
Search fstab additionally for mount point with
trailing slash (Debian Bug#580227).
2010-04-30 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.4.6
2010-02-16 Werner Baumann (werner.baumann@onlinehome.de)
* dav_coda.c, dav_fuse.c, kernel_interface.c, webdav.c:
Add missing "#include <sys/stat.h>" (bug #28916).
2010-01-21 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_secrets:
Wrong assignment of password from pam_mount.
(bug #28706);
2009-11-15 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_create:
Fix another error in the log message.
2009-11-15 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_create:
Fix log message.
* Released version 1.4.5
2009-11-15 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.4.4
2009-11-14 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* webdav.c, ssl_verify:
Don't accept suspicious certificates if !have_terminal.
2009-10-18 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_secrets:
Check for tty before calling dav_user_input_hidden.
2009-10-14 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac:
Add support for neon 0.29.
* webdav.c, dav_init_webdav:
Support NTLM authentication.
2009-10-10 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_head:
Ignore Last-Modified header if the value is 0.
2009-08-30 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, update_cache_file:
Don't change file times when Last-Modified-Header
is missing.
2009-08-26 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* webdav.c, prop_result:
Remove double slashes from path.
2009-06-30 Werner Baumann (werner.baumann@onlinehome.de)
* dav_fuse.c, fuse_stat:
Correct block counts according to block size.
2009-06-13 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.4.1.
2009-06-12 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* cache.c, write_node et al:
Save member lock_expire to index file.
2009-06-07 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, prop_result:
If property not found try property without namespace.
(idea by Dirk Arend <d.arend@avm.de>)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* cache.c, mount_davfs.c:
Add missing includes.
2009-05-21 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* Released version 1.4.0.
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac;
Add AC_CHECK_FUNCS([ftruncate]).
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
* bootstrap:
Use --copy option with automake, remove rm commands.
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c:
Fix Etag normalization.
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
* cache.h, dav_open:
Add parameter open_create to allow
for open(..., O_CREATE, 444).
2009-04-30 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_close:
if delay_upload == 0 save to server immediately.
2009-04-29 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h:
Add mount-option "users".
2009-04-26 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c:
New function split_uri; allow arbitrary characters
in path component, including spaces.
2009-04-14 Werner Baumann (werner.baumann@onlinehome.de)
* Reverted to fuse_kernel.h from 2.5.3 because of
different length of struct fuse_attr.
2009-04-13 Werner Baumann (werner.baumann@onlinehome.de)
* Updated fuse_kernel.h
* Removed unused licence documents.
2009-04-12 Werner Baumann (werner.baumann@onlinehome.de)
* Removed support for coda kernel version 2 and
fuse kernel version 5.
* Simplify coda.h and select alternative license.
2009-04-12 Werner Baumann (werner.baumann@onlinehome.de)
* bootstrap:
Inserted force options again. Restore COPYING
from COPYING.davfs2.
2009-04-06 Werner Baumann (werner.baumann@onlinehome.de)
* bootstrap:
Removed --force and --force-missing options.
* COPYING:
Added missing licenses.
2009-04-04 Werner Baumann (werner.baumann@onlinehome.de)
* cahe.c, dav_lookup:
If node not found update directory with file_refresh.
2009-03-29 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h, webdav.c, defaults.h:
Remove support for WebDAV-property displayname.
2009-03-29 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c:
Changed handling of directory cache files to fix
bug in handling "rm -r".
2009-03-28 Werner Baumann (werner.baumann@onlinehome.de)
* Undo FUSE_ATOMIC_O_TRUNC.
2009-03-24 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, delete_args:
Remove double free of args->p_passwd (fixes bug
2351083, Debian bug #512625).
2009-01-02 Werner Baumann (werner.baumann@onlinehome.de)
* Added copyright notices.
* Updated to GPL version 3.
* mount_davfs: replace petpass with user_input_hidden.
2008-11-23 Werner Baumann (werner.baumann@onlinehome.de)
* Default for use_expect100 is now 0
2008-11-23 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c:
Add function lock_by_path.
Remove global variable suri.
2008-10-26 Werner Baumann (werner.baumann@onlinehome.de)
* unifying coding style
* webdav.c, dav_init_connection:
Use %-encoded path.
2008-09-08 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* webdav.c, dav_head:
Fix bug 2042177 (*length, not *mtime).
2008-07-12 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.3.3
2008-06-30 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, get_options:
Missing break in first case.
2008-06-24 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_setattr:
Set file times of the cache file too when they
are changed by setattr.
2008-06-17 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_put:
Only use etag in conditional PUT, even in second try.
2008-06-12 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_tidy_cache:
Better debug messages, including neon-error.
2008-05-30 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, mount_davfs.h, webdav.c, webdav.h:
Add ne_set_connect_timeout. (Thanks Martin Higham)
2008-05-17 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.3.2 (really)
2008-05-16 Werner Baumann (werner.baumann@onlinehome.de)
* Not yet released 1.3.2
* cache.c, resize_cache:
Fixed another bug calculating cache_size.
2008-05-15 Werner Baumann (werner.baumann@onlinehome.de)
* Released version 1.3.2
2008-05-13 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* Version 1.3.1 released.
2008-04-29 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_get_file:
Typo: If-Non-Match -> If-None-Match
2008-04-09 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* Improved debug output
2008-04-02 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac:
Add neon 0.28 (no API-changes)
2008-03-24 Werner Baumann (werner.baumann@onlinehome.de)
* man/davfs2.conf.5:
Clarified option servercert.
2008-03-24 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* Disable cookie support an conditional LOCK for Neon 0.25
2008-02-04 Werner Baumann (werner.baumann@onlinehome.de)
* Version 1.3.0 released.
2008-02-04 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, clean_cache:
Create backup-files for orphaned files in cache.
2008-02-04 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, termination_handler:
Don't call umount in termination handler.
2008-02-02 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
*webdav.c, update_cookie:
Fixed bug: old cookie not removed.
2008-02-02 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_put:
No HEAD if !has_if_match_bug and !*exists.
2008-02-01 Werner Baumann (werner.baumann@onlinehome.de)
* Removed option idle_time.
Renamed option delay_uploads -> delay_upload.
Set delayed upload-time for node on close.
2008-01-31 Werner Baumann (werner.baumann@onlinehome.de)
*webdav.c, prop_result:
Add double quotes on Etag if missing.
2008-01-11 Werner Baumann (werner.baumann@onlinehome.de)
* umount_davfs.c:
Remove option -C from ps-command (BSC-option).
2008-01-05 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* Renamed option: misused_weak_etag -> drop_weak_etags
2007-12-27 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_get_file, dav_head, dav_put:
Honour misused_weak_etag
2007-12-27 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, webdav.h, mount_davfs.c, mount_davfs.h,
defaults.h;
New option: misused_weak_etag
2007-12-26 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, dav_put:
Don't even use "if-match" with etag when has_if_match_bug.
2007-12-26 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* mount_davfs.c, read_secrets:
Allow mountpoint instead of url in secrets file.
2007-12-25 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* webdav.c, mount_davfs.h, mount_davfs.c, defaults.h:
Added very simple cookie support.
2007-12-15 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c, webdav.h, cache.c, cache.h:
Support dav-quota.
Change members of dav_stat to off_t.
2007-12-15 Werner Baumann (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* 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 (werner.baumann@onlinehome.de)
* cache.c: