Roxen.git/
server/
base_server/
configuration.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2019-06-05
2019-06-05 09:21:37 by 0
74780808ef8057d8eac73f55fa574a62ac02a76a (
5
lines) (+
2
/-
3
)
[
Show
|
Annotate
]
Branch:
6.2
Don't special-case for .DS_Store since it causes error alerts during Finder
file copies over WebDAV.
1076:
// foo.txt/..namedfork/data (same as foo.txt) // foo.txt/..namedfork/rsrc (resource fork of foo.txt) // foo.txt/rsrc (resource fork of foo.txt)
-
// .DS_Store (Finder info file with catalog data)
+
if (has_value(id->not_query, "..namedfork/") ||
-
has_suffix(id->not_query, "/rsrc")
||
-
has_value(lower_case(id->not_query
)
, ".ds_store"))
+
has_suffix(id->not_query, "/rsrc"))
// Skip elaborate error page since we get these e.g. for WebDAV // mounts in OS X Finder. return Roxen.http_status(404, "No such file.");