-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
344 lines (189 loc) · 7.94 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
2007-04-17 noedler
wdfs, 1.4.2
2007-04-17 noedler
- fixed a stupid bug that avoids mounting the root of a server
- documented the optional port for mounting a webdav server
- improved attribute caching for some special cases
2007-02-05 noedler
- wdfs, 1.4.1
- updated README
- added redirect handling for rename() and unlink(). thanks joseph!
2007-01-25 noedler
compile fix for mac os x: define strndup() for apple computers
2007-01-24 noedler
fixed mounting a webdav share that redirects (e.g.) from '/foo' to '/foo/'. thanks to joseph dunn for the patch.
2007-01-19 noedler
wdfs, 1.4.0
2007-01-14 noedler
enable http redirect support by default and add option "no_redirect" to disable it
2007-01-14 noedler
coding style...
2007-01-13 noedler
- updated copyright to 2007
- added dummy impl of wdfs_init()
- updated README with an example how to mount wdfs thru fstab
2007-01-13 noedler
updated README file
2006-11-13 noedler
added a dummy implementation for statfs()
2006-11-09 noedler
fixed a bug in the assert statements, thanks sven bachmann for pointing it out!
2006-10-27 noedler
fixed creating the ChangeLog
2006-10-27 noedler
Initial commit for the public SVN
2006-10-17 jens m. noedler <[email protected]>
- introduced unify_path() which does the escaping/unescaping
the remotepath in one place
- added checks for the return value of remove_ending_slash()
- new: remotepath_basedir may contain special chars
- some random coding style improvements
2006-10-17 jens m. noedler <[email protected]>
improvement: return -EPERM instead of -ENOENT if deleting fails
with "403 Forbidden". patch from [email protected]
2006-10-16 jens m. noedler <[email protected]>
just some random coding style improvements
2006-10-14 jens m. noedler <[email protected]>
- fixed parsing of "-o accept_sslcert" parameter
- added check of "-o locking_timeout" parameter
2006-10-14 jens m. noedler <[email protected]>
converted most printf() to fprintf(stderr, ...)
2006-10-14 jens m. noedler <[email protected]>
also allow to enter authentication information (username and password)
via the terminal, based on a patch from [email protected]. thanks!
2006-10-13 jens m. noedler <[email protected]>
- new command line parsing using the fuse option functions
thanks to yuri vasilevski for the patch!
- wdfs require due to this change fuse 2.5 or later
2006-08-22 jens m. noedler <[email protected]>
- replaced "DT_DIR << 12" with "S_IFDIR | 0777" for "." and ".." dentries
- removed useless includes of time.h
2006-08-21 jens m. noedler <[email protected]>
bugfix: set . and .. to type DT_DIR
thanks for the patch from mathieu boespflug
2006-08-01 jens m. noedler <[email protected]>
wdfs, 1.3.1
2006-08-01 jens m. noedler <[email protected]>
added these statement to permit debian to add wdfs to it's archive
* This program is released under the GPL with the additional exemption
* that compiling, linking and/or using OpenSSL is allowed.
details: http://www.gnome.org/~markmc/openssl-and-the-gpl.html
2006-07-26 jens m. noedler <[email protected]>
wdfs, 1.3.0
2006-07-26 jens m. noedler <[email protected]>
implemented dummy wdfs_chmod() method
2006-07-26 jens m. noedler <[email protected]>
fixed some escape/unescape problems
2006-07-26 jens m. noedler <[email protected]>
fix: invalid read in remove_ending_slash()
2006-07-25 jens m. noedler <[email protected]>
simplified #definition of NEON_VERSION
2006-07-25 jens m. noedler <[email protected]>
- do not allow lock_timeout to be set to 0 seconds
- fixed a bug regarding too late unescaping of the remotepath,
what may lead to recursive adding of the directory to itself.
2006-07-25 jens m. noedler <[email protected]>
memory management: replaced wdfs_free() through FREE() and free_chars()
2006-07-25 jens m. noedler <[email protected]>
2006-07-24 jens m. noedler <[email protected]>
wdfs is now compatible to neon 0.26, thanks again to suse
2006-07-21 jens m. noedler <[email protected]>
type updates and conversion of error_parameter_parsing from int to bool_t
2006-07-21 jens m. noedler <[email protected]>
correct indentation and fix for "the last parameter parsing bug" ;-)
2006-07-20 jens m. noedler <[email protected]>
typo updates
2006-07-20 jens m. noedler <[email protected]>
conversion from NE_FREE(...) to wdfs_free(...)
2006-07-20 jens m. noedler <[email protected]>
enhanced argument handling, also based on suse patches
2006-07-20 jens m. noedler <[email protected]>
reset arguments to avoid storing sensitive data in the process table
based on a patch from [email protected]
2006-07-20 jens m. noedler <[email protected]>
fix for 64 bit platforms due to missing braces
patch from [email protected], thanks!
2006-06-27 jens m. noedler <[email protected]>
added a comment about freebsd compat in the README
2006-06-27 jens m. noedler <[email protected]>
wdfs, 1.2.1
just a build fix for freebsd
2006-06-26 jens m. noedler <[email protected]>
compile fix for freebsd
2006-04-10 jens m. noedler <[email protected]>
wdfs, 1.2.0
updated the README
2006-04-10 jens m. noedler <[email protected]>
finally fixed the last ftruncate() bug
thanks to miklos! :-)
2006-04-06 jens m. noedler <[email protected]>
ftruncate() done.
but there is still a bug with ftruncate() and O_APPEND
2006-03-12 jens m. noedler <[email protected]>
made redirect support configurable via parameter "-r"
("-r" is no longer used by fuse, I think since v2.5)
2006-03-12 jens m. noedler <[email protected]>
smoother redirect support using
static int handle_redirect(char **remotepath);
2006-03-12 jens m. noedler <[email protected]>
stub for wdfs_ftruncate
2006-03-12 jens m. noedler <[email protected]>
some changes for FUSE_USE_VERSION 25
and compat with fuse 2.3 and 2.4
2006-03-11 jens m. noedler <[email protected]>
first stage of redirect support
first steps to go to fuse interface v25
2006-01-05 jens m. noedler <[email protected]>
wdfs, 1.1.1
added some comments about the fixed bug
2006-01-04 jens m. noedler <[email protected]>
1.1.1-pre1
2006-01-04 jens m. noedler <[email protected]>
fixed a bug that appeared if a servers sends the complete URI not only the path
thanks to luke plant for reporting and supporting!
2006-01-04 jens m. noedler <[email protected]>
updated the year in the copyright statement
2005-11-19 jens m. noedler <[email protected]>
typo updates
2005-11-08 jens m. noedler <[email protected]>
added automatic ChangeLog generation
2005-11-08 jens m. noedler <[email protected]>
added version number conventions to README
2005-11-08 jens m. noedler <[email protected]>
wdfs, 1.1.0, 2nd checking ;)
2005-11-08 jens m. noedler <[email protected]>
wdfs, 1.1.0
2005-11-08 jens m. noedler <[email protected]>
- x = argv[arg_number + 1];
- arg_number++;
+ x = argv[++arg_number];
2005-11-08 jens m. noedler <[email protected]>
added neon cross compiling
2005-11-05 jens m. noedler <[email protected]>
1.1.0-pre2
2005-11-05 jens m. noedler <[email protected]>
typo only update
2005-11-05 jens m. noedler <[email protected]>
implemented parameter '-ac' (accept certificate)
2005-11-05 jens m. noedler <[email protected]>
choose gpl as license for wdfs and added gpl comments
2005-11-03 jens m. noedler <[email protected]>
commit
2005-11-03 jens m. noedler <[email protected]>
cleaned up verify_ssl_certificate()
2005-11-03 jens m. noedler <[email protected]>
fixed a bug when mounting non-webdav http resources
2005-11-01 jens m. noedler <[email protected]>
wdfs, 1.0.2-pre1: basic and buggy ssl support
2005-10-28 jens m. noedler <[email protected]>
README update
2005-10-08 jens m. noedler <[email protected]>
bugfix in svn.c (mounting a subdir of a repository and access old revisions works fine)
2005-10-06 jens m. noedler <[email protected]>
updated README
2005-09-17 jens m. noedler <[email protected]>
added files "jens-*"
2005-09-16 jens m. noedler <[email protected]>
renamed fuse01 to wdfs
2005-09-13 jens m. noedler <[email protected]>
wdfs, 1.0