[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2013-10-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2013-10-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

denny vrandecic denny.vrande...@wikimedia.de changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
 CC||denny.vrandecic@wikimedia.d
   ||e

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

--- Comment #5 from jeb...@gmail.com 2012-11-04 10:28:51 UTC ---
The two scoring functions I know works on this kind of problem are one for
sorting on full terms sort all found terms on prefixed matches on probability
or inverse document frequency or a similar function, possibly with some
weighting on shorter terms to make absolute matches go first, and one for
sorting on boundary effects sort all found terms on the probability that
syllables start within the right side of the boundary (aka within the prefix)
and continues into the found term, possibly with some simplification with
Markov chains.

The first form is the most common, and as I recall some comments aso the form
used in the live search on Wikipedia, aka the existing Lucene-search.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com

--- Comment #2 from jeb...@gmail.com 2012-11-03 16:05:46 UTC ---
The odd sorting is because the suggestions are on relevance, if I remember
correct. To fetch the top 100 from relevance, then sort alphabetically and show
a truncated list really does not give any meaningful list at all.

The bug comes from something that tries to turn the selected entry into a case
agnostic selection, and then searches through the list for this entry. The user
selection from the list should be retained with upper-/lowercase.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

--- Comment #3 from Daniel Kinzler daniel.kinz...@wikimedia.de 2012-11-03 
22:42:19 UTC ---
Sorting the result of a prefix search by relevance seems silly to me, but I
guess we can't do much about how MWSearch returns that. You are right that just
sorting the best 100 results doesn't really solve the problem - e.g. you may
not see what you are looking for at the right place in the list, even if it
exists, because it was not ion the top 100. That would be misleading. However,
I think it may still be better than what we have now.

Or can we get the search result directly in alphabetical order? That would be
nice.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

--- Comment #4 from jeb...@gmail.com 2012-11-04 02:35:21 UTC ---
You may set up this as a user preference, but do not turn it on as a default.
While not being completely wrong it is extremely confusing for the end user.
The only thing that works is short lists are scoring mechanisms, which is often
variations of relevance ranking. If you can present the _complete_ list within
some subdomain you can sort alphabetically if you add some visual clue on the
scoring. This is often done on time series like newspapers where you want to
search within some timeframe.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
Summary|Bug uppercase   |When editing sitelinks,
   ||target pages are suggested
   ||in a misleading order

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41635] When editing sitelinks, target pages are suggested in a misleading order

2012-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41635

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

--- Comment #1 from Daniel Kinzler daniel.kinz...@wikimedia.de 2012-11-02 
13:09:46 UTC ---
This appears to be caused by the ranking/sorting system that generates the
suggestions. I'm not sure whether we can do anything about this in Wikibase, it
may be a bug in MediaWiki's OpenSearch implementation.

Anyway, here is what happens:

Select French as the target language for the link, then type mode into the
input box. The suggestions will be something like:

 Mode
 Modene
 MoDem
 Mode (habillement)
 MOD
 Mod
 Modulation
 Modernisme

So, no Modem there, only MoDem. But if you type in modem, you get:

 MoDem
 Modem
 Modem ADSM
 

The sorting seems eratic to me. Can we just fetch the top 100, sort them
alphabetically (ignoring case), and then show the top 10?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l