Page MenuHomePhabricator

Special:Linksearch should be case insensitive
Open, LowPublicFeature

Description

Since URLs are case insensitive, Special:Linksearch should be too.
It seems it currently is semi-case-insensitive, that is:

  • [[Special:LinkSearch/ufbir.ifas.ufl.edu/Chap21.htm]] returns 1 result;
  • [[Special:LinkSearch/ufbir.ifas.ufl.edu/chap21.htm]] returns nothing.

however,
[[Special:LinkSearch/UfBiR.iFaS.uFl.EdU/Chap21.htm]] also returns the correct result. So, I suppose this only breaks after slashes (perhaps other special chars) in the url.


Version: unspecified
Severity: enhancement

Details

Reference
bz14591

Event Timeline

bzimport raised the priority of this task from to Low.Nov 21 2014, 10:13 PM
bzimport set Reference to bz14591.
bzimport added a subscriber: Unknown Object (MLST).

While domains are case-insensitive (as described), the path isn't. If you browse to http://en.wikipedia.org/WIKI/, it doesn't work because the path after the domain _is_ case sensitive. Special:LinkSearch works according to this.

Now, should the path become case-insensitive for searching purposes? Probably, it'd be helpful. Is it broken? No.

The strange thing is, if I point my browser to http://ufbir.ifas.ufl.edu/cHaP21.htm it *does* work... maybe it depends on the server's OS? Indeed, IIRC on Windows the capitalization of paths is irrelevant while on Linux it isn't... right? Anyway, as you say, LinkSearch could be improved if all queries were lowercased first.

Paths are opaque, and must be assumed to be case-sensitive. (They are when pointing at a standard Unix filesystem; may not be for Windows or Mac filesystems, and all bets are off if they're interpreted by a script of any kind, which there's no way to tell if it will happen.)

For sorting/searching purposes, it probably wouldn't hurt to do indexing with case-folding, though. This would require a tweak to the URL indexing function, then updates to existing records in externallinks table.

Extensions is now part of MediaWiki core (1.14alpha) -> changing product and component

Aklapper changed the subtype of this task from "Task" to "Feature Request".Feb 4 2022, 11:01 AM
Aklapper removed a subscriber: wikibugs-l-list.