##// END OF EJS Templates
hgweb: do not ignore [auth] if url has a username (issue2822)...
hgweb: do not ignore [auth] if url has a username (issue2822) The [auth] section was ignored when handling URLs like: http://user@example.com/foo Instead, we look in [auth] for an entry matching the URL and supplied user name. Entries without username can match URL with a username. Prefix length ties are resolved in favor of entries matching the username. With: foo.prefix = http://example.org foo.username = user foo.password = password bar.prefix = http://example.org/bar and the input URL: http://user@example.org/bar the 'bar' entry will be selected because of prefix length, therefore prompting for a password. This behaviour ensure that entries selection is consistent when looking for credentials or for certificates, and that certificates can be picked even if their entries do no define usernames while the URL does. Additionally, entries without a username matched against a username are returned as if they did have requested username set to avoid prompting again for a username if the password is not set. v2: reparse the URL in readauthforuri() to handle HTTP and HTTPS similarly. v3: allow unset usernames to match URL usernames to pick certificates. Resolve prefix length ties in favor of entries with usernames.

File last commit:

r14980:28e98a8b stable
r15005:4a43e23b 1.9.1 stable
Show More
test-casecollision-i18n.t
43 lines | 1.4 KiB | text/troff | Tads3Lexer
/ tests / test-casecollision-i18n.t
run only on case-insensitive filesystems, because collision check at
"hg update" is done only on case-insensitive filesystems
$ "$TESTDIR/hghave" icasefs || exit 80
setup repository, and target files
$ HGENCODING=cp932
$ export HGENCODING
$ hg init t
$ cd t
$ python << EOF
> names = ["\x83\x41", # cp932(0x83, 0x41='A'), UNICODE(0x30a2)
> "\x83\x5A", # cp932(0x83, 0x5A='Z'), UNICODE(0x30bb)
> "\x83\x61", # cp932(0x83, 0x61='a'), UNICODE(0x30c2)
> "\x83\x7A", # cp932(0x83, 0x7A='z'), UNICODE(0x30db)
> ]
> for num, name in zip(range(len(names)), names):
> # file for getting target filename of "hg add"
> f = file(str(num), 'w'); f.write(name); f.close()
> # target file of "hg add"
> f = file(name, 'w'); f.write(name); f.close()
> EOF
test filename collison check at "hg add"
$ hg add --config ui.portablefilenames=abort `cat 0`
$ hg add --config ui.portablefilenames=abort `cat 1`
$ hg add --config ui.portablefilenames=abort `cat 2`
$ hg add --config ui.portablefilenames=abort `cat 3`
$ hg status -a
A \x83A (esc)
A \x83Z (esc)
A \x83a (esc)
A \x83z (esc)
test filename collision check at "hg update"
$ hg commit -m 'revision 0'
$ hg update null
0 files updated, 0 files merged, 4 files removed, 0 files unresolved
$ hg update tip
4 files updated, 0 files merged, 0 files removed, 0 files unresolved