mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
mod_encoding - Apache module for non-ascii filename interoperability
|
|
|
|
This module improves non-ascii filename interoperability of apache
|
|
(and mod_dav).
|
|
|
|
It seems many WebDAV clients send filename in its platform-local
|
|
encoding. But since mod_dav expects everything, even HTTP request
|
|
line, to be in UTF-8, this causes an interoperability problem.
|
|
|
|
I believe this is a future issue for specification (RFC?) to
|
|
standardize encoding used in HTTP request-line and HTTP header, but
|
|
life would be much easier if mod_dav (and others) can handle various
|
|
encodings sent by clients, TODAY. This module does just that.
|
|
|
|
This module adds following directives: EncodingEngine, SetServerEncoding,
|
|
AddClientEncoding, DefaultClientEncoding, and NormalizeUsername.
|
|
|
|
Note by maintainer:
|
|
It also solves the problem with the "hostname\\username"
|
|
way of authentication that Windows machines do when they
|
|
attach to a DAV server. See the use of the NormalizeUsername
|
|
directive.
|
|
|
|
Author: Taisuke Yamada <tai@iij.ad.jp>
|
|
Kunio Miyamoto <wakatono@todo.gr.jp>
|
|
Akira YOSHIYAMA <yosshy@debian.or.jp>
|
|
Kazuhiko Iwama <iwama@ymc.ne.jp>
|
|
IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
|
|
|
|
WWW: http://webdav.todo.gr.jp/
|