Roxen.git/
server/
modules/
filesystems/
filesystem.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2018-04-09
2018-04-09 09:48:45 by Henrik Grubbström (Grubba) <grubba@grubba.org>
08f2d59882ea5365ead39ca1e9e6a9c1ad3e60c3 (
10
lines) (+
10
/-
0
)
[
Show
|
Annotate
]
Branch:
08f2d59882ea5365ead39ca1e9e6a9c1ad3e60c3
Filesystem
[WebDAV]
: Improved locks on case insensitive OSes.
401:
return fs; }
+
//! Normalize DAVLock path identifier.
+
string resource_id(string path, RequestID|int(0..0) id)
+
{
+
if ((< "Darwin", "Win32" >)[uname()->sysname]) {
+
return ::resource_id(lower_case(path), id);
+
}
+
return ::resource_id(path, id);
+
}
+
//! Convert to filesystem encoding. //! //! @note