release 1.4.0
This commit is contained in:
parent
943d06fe60
commit
76beee96ef
4
BUGS
4
BUGS
@ -1,4 +1,4 @@
|
|||||||
davfs2 known bugs 2009-04-27
|
davfs2 known bugs 2009-05-02
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
davfs2 does not support links.
|
davfs2 does not support links.
|
||||||
@ -8,6 +8,8 @@ A davfs2 file system cannot be moved with 'mount --move'.
|
|||||||
If a filename contains a "/"-character, it will be displayed, but it
|
If a filename contains a "/"-character, it will be displayed, but it
|
||||||
cannot be accessed.
|
cannot be accessed.
|
||||||
|
|
||||||
|
A proper GNU-style manual is still missing.
|
||||||
|
|
||||||
|
|
||||||
Report Bugs
|
Report Bugs
|
||||||
-----------
|
-----------
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
ChangeLog for davfs2
|
ChangeLog for davfs2
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
2009-05-02 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
|
* Released version 1.4.0.
|
||||||
|
|
||||||
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
|
2009-05-01 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
* configure.ac;
|
* configure.ac;
|
||||||
Add AC_CHECK_FUNCS([ftruncate]).
|
Add AC_CHECK_FUNCS([ftruncate]).
|
||||||
|
56
NEWS
56
NEWS
@ -7,7 +7,61 @@
|
|||||||
What is new in davfs2 1.4.0
|
What is new in davfs2 1.4.0
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
FIXME
|
With this release of davfs2 the default configuration has changed
|
||||||
|
significantly to better match user experience and the behaviour of
|
||||||
|
current WebDAV servers. This might cause your current configuration
|
||||||
|
to no longer work with your server. Please carefully check for
|
||||||
|
changes that might affect your davfs2 configuration.
|
||||||
|
|
||||||
|
if_match_bug
|
||||||
|
------------
|
||||||
|
The default is now 0 (was 1) assuming your server does not have this
|
||||||
|
bug. To the best of my knowledge this bug was only found in
|
||||||
|
Apache with mod_dav and was fixed with release 2.2.8. But there are
|
||||||
|
many older versions of Apache/mod_dav out there and you might have
|
||||||
|
to manually insert this option in your davfs2.conf.
|
||||||
|
|
||||||
|
use_expect100
|
||||||
|
-------------
|
||||||
|
The default is now 0 (was 1). This option rarely is of any use but
|
||||||
|
frequently causes trouble with servers that don't support it (it is
|
||||||
|
an optional protocol element). You only should set this option if
|
||||||
|
you really need it and know it is working with your server.
|
||||||
|
|
||||||
|
use_displayname
|
||||||
|
---------------
|
||||||
|
This option has been removed. davfs2 no longer supports "displayname".
|
||||||
|
This WebDAV property has been undefined nonsense from the beginning
|
||||||
|
and the update of the WebDAV protocol only made it worse. The protocol
|
||||||
|
explicitly states that this "name"(?) needs *not* to be unique. It is
|
||||||
|
therefore impossible to use it as a file name in davfs2.
|
||||||
|
|
||||||
|
delay_upload
|
||||||
|
------------
|
||||||
|
When this option is set to 0 seconds on closing a changed file it will be
|
||||||
|
*synchronously* saved to the server and the upcall from the kernel will
|
||||||
|
block until the upload is finished. But in case the upload fails temporarily
|
||||||
|
the upcall from the kernel will return and davfs2 will try uploading later.
|
||||||
|
This may make davfs2 very slow due too many unsuccessful attempts to upload.
|
||||||
|
Only use "delay_upload 0" when your really need it and you have a reliable
|
||||||
|
connection to the server.
|
||||||
|
|
||||||
|
Command line (and fstab) options askauth, locks and useproxy
|
||||||
|
------------------------------------------------------------
|
||||||
|
These have been deprecated for many years and now have been removed. There
|
||||||
|
are corresponding options in davfs2.conf.
|
||||||
|
|
||||||
|
Command line (and fstab) option users
|
||||||
|
-------------------------------------
|
||||||
|
davfs2 now supports the option users which allows any user to unmount a
|
||||||
|
davfs2 file system. This is intended as a work around for systems without
|
||||||
|
the mtab file.
|
||||||
|
|
||||||
|
Known bugs (except those listed in BUGS) have been fixed.
|
||||||
|
|
||||||
|
Last but not least the davfs2 project moved to Savannah:
|
||||||
|
http://savannah.nongnu.org/projects/davfs2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
What is new in davfs2 1.3.X
|
What is new in davfs2 1.3.X
|
||||||
|
4
README
4
README
@ -232,9 +232,9 @@ When sending a bug report, please include
|
|||||||
|
|
||||||
davfs2 is an Free Software project hostet at
|
davfs2 is an Free Software project hostet at
|
||||||
http://savannah.nongnu.org/projects/davfs2 or
|
http://savannah.nongnu.org/projects/davfs2 or
|
||||||
http://savannah.nongnu.org/projects/davfs2
|
https://savannah.nongnu.org/projects/davfs2
|
||||||
|
|
||||||
You can submit a bug-report or support-request at
|
You can submit a bug-report or support-request at
|
||||||
http://savannah.nongnu.org/support/?func=additem&group=davfs2 or
|
http://savannah.nongnu.org/support/?func=additem&group=davfs2 or
|
||||||
http://savannah.nongnu.org/support/?func=additem&group=davfs2
|
https://savannah.nongnu.org/support/?func=additem&group=davfs2
|
||||||
|
|
||||||
|
@ -258,7 +258,7 @@ Default: 0
|
|||||||
Popular servers send a weak etag whenever they are not able to calculate
|
Popular servers send a weak etag whenever they are not able to calculate
|
||||||
a strong one. This weak etag will never be valid, but after one second it
|
a strong one. This weak etag will never be valid, but after one second it
|
||||||
is silently turned into a strong, valid etag. With this flag set to 1,
|
is silently turned into a strong, valid etag. With this flag set to 1,
|
||||||
\fB@PROGRAM_NAME@\fR will never use this weak etags. If the flas is 0,
|
\fB@PROGRAM_NAME@\fR will never use this weak etags. If the flag is 0,
|
||||||
the weakness indicator will be removed and the etag is assumed to be
|
the weakness indicator will be removed and the etag is assumed to be
|
||||||
strong. There is some danger of the Lost-Update-Problem with
|
strong. There is some danger of the Lost-Update-Problem with
|
||||||
this. But it is minimized when using locks.
|
this. But it is minimized when using locks.
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2009-04-27 18:47+0300\n"
|
"POT-Creation-Date: 2009-05-02 16:52+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -546,7 +546,7 @@ msgid ""
|
|||||||
"Popular servers send a weak etag whenever they are not able to calculate a "
|
"Popular servers send a weak etag whenever they are not able to calculate a "
|
||||||
"strong one. This weak etag will never be valid, but after one second it is "
|
"strong one. This weak etag will never be valid, but after one second it is "
|
||||||
"silently turned into a strong, valid etag. With this flag set to 1, "
|
"silently turned into a strong, valid etag. With this flag set to 1, "
|
||||||
"B<@PROGRAM_NAME@> will never use this weak etags. If the flas is 0, the "
|
"B<@PROGRAM_NAME@> will never use this weak etags. If the flag is 0, the "
|
||||||
"weakness indicator will be removed and the etag is assumed to be strong. "
|
"weakness indicator will be removed and the etag is assumed to be strong. "
|
||||||
"There is some danger of the Lost-Update-Problem with this. But it is "
|
"There is some danger of the Lost-Update-Problem with this. But it is "
|
||||||
"minimized when using locks."
|
"minimized when using locks."
|
||||||
@ -1066,7 +1066,7 @@ msgid "Includes config, kernel, cache and http."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:501 mount.davfs.8:513 umount.davfs.8:79
|
#: davfs2.conf.5:501 mount.davfs.8:518 umount.davfs.8:79
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHORS"
|
msgid "AUTHORS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1079,18 +1079,18 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:507 mount.davfs.8:530 umount.davfs.8:84
|
#: davfs2.conf.5:507 mount.davfs.8:535 umount.davfs.8:84
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "DAVFS2 HOME"
|
msgid "DAVFS2 HOME"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: davfs2.conf.5:510 mount.davfs.8:533 umount.davfs.8:87
|
#: davfs2.conf.5:510 mount.davfs.8:538 umount.davfs.8:87
|
||||||
msgid "@PACKAGE_BUGREPORT@"
|
msgid "@PACKAGE_BUGREPORT@"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:512 mount.davfs.8:535 umount.davfs.8:89
|
#: davfs2.conf.5:512 mount.davfs.8:540 umount.davfs.8:89
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: davfs2 1.4.0\n"
|
"Project-Id-Version: davfs2 1.4.0\n"
|
||||||
"POT-Creation-Date: 2009-04-27 18:47+0300\n"
|
"POT-Creation-Date: 2009-05-02 16:52+0300\n"
|
||||||
"PO-Revision-Date: 2009-04-27 18:49+0200\n"
|
"PO-Revision-Date: 2009-05-02 16:53+0200\n"
|
||||||
"Last-Translator: Werner Baumann <werner.baumann@onlinehome.de>\n"
|
"Last-Translator: Werner Baumann <werner.baumann@onlinehome.de>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -659,7 +659,7 @@ msgid ""
|
|||||||
"Popular servers send a weak etag whenever they are not able to calculate a "
|
"Popular servers send a weak etag whenever they are not able to calculate a "
|
||||||
"strong one. This weak etag will never be valid, but after one second it is "
|
"strong one. This weak etag will never be valid, but after one second it is "
|
||||||
"silently turned into a strong, valid etag. With this flag set to 1, "
|
"silently turned into a strong, valid etag. With this flag set to 1, "
|
||||||
"B<@PROGRAM_NAME@> will never use this weak etags. If the flas is 0, the "
|
"B<@PROGRAM_NAME@> will never use this weak etags. If the flag is 0, the "
|
||||||
"weakness indicator will be removed and the etag is assumed to be strong. "
|
"weakness indicator will be removed and the etag is assumed to be strong. "
|
||||||
"There is some danger of the Lost-Update-Problem with this. But it is "
|
"There is some danger of the Lost-Update-Problem with this. But it is "
|
||||||
"minimized when using locks."
|
"minimized when using locks."
|
||||||
@ -1285,7 +1285,7 @@ msgid "Includes config, kernel, cache and http."
|
|||||||
msgstr "Beinhaltet config, kernel, cache und http."
|
msgstr "Beinhaltet config, kernel, cache und http."
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:501 mount.davfs.8:513 umount.davfs.8:79
|
#: davfs2.conf.5:501 mount.davfs.8:518 umount.davfs.8:79
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHORS"
|
msgid "AUTHORS"
|
||||||
msgstr "AUTOREN"
|
msgstr "AUTOREN"
|
||||||
@ -1300,18 +1300,18 @@ msgstr ""
|
|||||||
"geschrieben."
|
"geschrieben."
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:507 mount.davfs.8:530 umount.davfs.8:84
|
#: davfs2.conf.5:507 mount.davfs.8:535 umount.davfs.8:84
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "DAVFS2 HOME"
|
msgid "DAVFS2 HOME"
|
||||||
msgstr "DAVFS2 HOME"
|
msgstr "DAVFS2 HOME"
|
||||||
|
|
||||||
# type: TH
|
# type: TH
|
||||||
#: davfs2.conf.5:510 mount.davfs.8:533 umount.davfs.8:87
|
#: davfs2.conf.5:510 mount.davfs.8:538 umount.davfs.8:87
|
||||||
msgid "@PACKAGE_BUGREPORT@"
|
msgid "@PACKAGE_BUGREPORT@"
|
||||||
msgstr "@PACKAGE_BUGREPORT@"
|
msgstr "@PACKAGE_BUGREPORT@"
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:512 mount.davfs.8:535 umount.davfs.8:89
|
#: davfs2.conf.5:512 mount.davfs.8:540 umount.davfs.8:89
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
msgstr "SIEHE AUCH"
|
msgstr "SIEHE AUCH"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: davfs2.conf.5\n"
|
"Project-Id-Version: davfs2.conf.5\n"
|
||||||
"POT-Creation-Date: 2009-04-27 18:47+0300\n"
|
"POT-Creation-Date: 2009-05-02 16:52+0300\n"
|
||||||
"PO-Revision-Date: 2007-04-26 01:24-0300\n"
|
"PO-Revision-Date: 2007-04-26 01:24-0300\n"
|
||||||
"Last-Translator: Luciano Bello <luciano@linux.org.ar>\n"
|
"Last-Translator: Luciano Bello <luciano@linux.org.ar>\n"
|
||||||
"Language-Team: Español <es@li.org>\n"
|
"Language-Team: Español <es@li.org>\n"
|
||||||
@ -641,7 +641,7 @@ msgid ""
|
|||||||
"Popular servers send a weak etag whenever they are not able to calculate a "
|
"Popular servers send a weak etag whenever they are not able to calculate a "
|
||||||
"strong one. This weak etag will never be valid, but after one second it is "
|
"strong one. This weak etag will never be valid, but after one second it is "
|
||||||
"silently turned into a strong, valid etag. With this flag set to 1, "
|
"silently turned into a strong, valid etag. With this flag set to 1, "
|
||||||
"B<@PROGRAM_NAME@> will never use this weak etags. If the flas is 0, the "
|
"B<@PROGRAM_NAME@> will never use this weak etags. If the flag is 0, the "
|
||||||
"weakness indicator will be removed and the etag is assumed to be strong. "
|
"weakness indicator will be removed and the etag is assumed to be strong. "
|
||||||
"There is some danger of the Lost-Update-Problem with this. But it is "
|
"There is some danger of the Lost-Update-Problem with this. But it is "
|
||||||
"minimized when using locks."
|
"minimized when using locks."
|
||||||
@ -1214,7 +1214,7 @@ msgid "Includes config, kernel, cache and http."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:501 mount.davfs.8:513 umount.davfs.8:79
|
#: davfs2.conf.5:501 mount.davfs.8:518 umount.davfs.8:79
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHORS"
|
msgid "AUTHORS"
|
||||||
msgstr "AUTORES"
|
msgstr "AUTORES"
|
||||||
@ -1229,18 +1229,18 @@ msgstr ""
|
|||||||
"baumann@onlinehome.deE<gt>."
|
"baumann@onlinehome.deE<gt>."
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:507 mount.davfs.8:530 umount.davfs.8:84
|
#: davfs2.conf.5:507 mount.davfs.8:535 umount.davfs.8:84
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "DAVFS2 HOME"
|
msgid "DAVFS2 HOME"
|
||||||
msgstr "DAVFS2 HOME"
|
msgstr "DAVFS2 HOME"
|
||||||
|
|
||||||
# type: TH
|
# type: TH
|
||||||
#: davfs2.conf.5:510 mount.davfs.8:533 umount.davfs.8:87
|
#: davfs2.conf.5:510 mount.davfs.8:538 umount.davfs.8:87
|
||||||
msgid "@PACKAGE_BUGREPORT@"
|
msgid "@PACKAGE_BUGREPORT@"
|
||||||
msgstr "@PACKAGE_BUGREPORT@"
|
msgstr "@PACKAGE_BUGREPORT@"
|
||||||
|
|
||||||
# type: SH
|
# type: SH
|
||||||
#: davfs2.conf.5:512 mount.davfs.8:535 umount.davfs.8:89
|
#: davfs2.conf.5:512 mount.davfs.8:540 umount.davfs.8:89
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
msgstr "VER TAMBIÉN"
|
msgstr "VER TAMBIÉN"
|
||||||
|
Loading…
Reference in New Issue
Block a user