[Bug 3922] links are not properly rendered in a BiDi category list

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

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

   Keywords|testme  |
 Status|ASSIGNED|RESOLVED
 Resolution||WORKSFORME

--- Comment #34 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il 2012-04-20 
18:19:06 UTC ---
Tested, appears to be fixed.

-- 
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 3922] links are not properly rendered in a BiDi category list

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

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED
 AssignedTo|wikibugs-l@lists.wikimedia. |amir.ahar...@mail.huji.ac.i
   |org |l

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

Mark A. Hershberger m...@everybody.org changed:

   What|Removed |Added

   Priority|High|Low
 CC||m...@everybody.org

--- Comment #33 from Mark A. Hershberger m...@everybody.org 2012-03-09 
05:18:21 UTC ---
(In reply to comment #31)
 And just for the record, that Yiddish Wiktionnary always generates (on ALL
 pages) an HTTP 404 Not found error status on one image, user.gif,

This should have been reported on-wiki. Reported
https://yi.wiktionary.org/wiki/%D7%9E%D7%A2%D7%93%D7%99%D7%A2%D7%B0%D7%99%D7%A7%D7%99:Monobook.css

Lowering priority.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

--- Comment #29 from Philippe Verdy verd...@wanadoo.fr 2012-02-29 16:28:51 
UTC ---
I confim that the solution using Bidi overrides is the worst one.
Testing the local language to see if it uses bidi or not is also not a stable
solution.

It is highly preferable to use CSS unicode-bidi:embed in separate spans, and
avoid ALL Bidi control characters that are highly dicouraged in HTML.

So a generated code like this will work much better :

Category : span style=unicode-bidi:embedName1/span | span
style=unicode-bidi:embedName2/span

Which can be easily generated in the code with:

$push = 'span class=category-item';
$pop = '/span';
$separate = 'nbsp;| ';
$t = $push . implode($pop . $separate . $push, $wgOut-mCategoryLinks) . $pop;

Each of the first three lines can be customized easily:
* the 1st line here can use a class name to allow other CSS presentation
features (it will include the standard unicode-bidi:embed property). No need
to test the default locale of the  wiki. This code can be very stable.
* the third line defining the separator should contain at least a standard
space, if the visible separator is made into the CSS properties of spans (using
margins, side borders, and padding).
* I see no reason why the second line would be something else, but it must
match the element name used in the first line, if ever you want to use list
items (li.../li), the whole embedded in ul.../ul (the CSS will make it
appear properly), in order to facilitate the integration of other skins (for
example an accessibility skin) and a more semantic tagging.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

--- Comment #30 from Philippe Verdy verd...@wanadoo.fr 2012-02-29 16:34:45 
UTC ---
Note that the code generated in

http://yi.wiktionary.org/wiki/%D7%A7%D7%90%D6%B7%D7%B0%D7%A2

is nearly perfect and generates list items. But the CSS forgets to change the
display:inline for the ul element contained in the div with class catlinks.
This is not a problem of Mediawiki itself but of the stylesheet used in that
site.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

--- Comment #31 from Philippe Verdy verd...@wanadoo.fr 2012-02-29 16:59:56 
UTC ---
And just for the record, that Yiddish Wiktionnary always generates (on ALL
pages) an HTTP 404 Not found error status on one image, user.gif, referenced
in its monobook skin to be displayed beside the user name at the top of pages.
May be an admin can fix it on that wiki (and check that other wikis are not
concerned in their local Monobook skin, even if the Vector skin is preferred
now... but apparently not by default on that wiki, possibly because of other
integration issues, including for this bug).

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

--- Comment #32 from Philippe Verdy verd...@wanadoo.fr 2012-02-29 17:04:39 
UTC ---
Final note: the generated code currently uses the settings of the user for the
preferred language of the user, as well as its preferred. So this would affect
all wikis, and not all users will see the same issues. Mediawiki should not
generate code here with such dependancy.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

Mark A. Hershberger john.n...@gmx.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC|al...@takas.lt, |john.n...@gmx.com
   |gangl...@torg.is,   |
   |menous...@yahoo.com,|
   |robinp.1...@gmail.com,  |
   |s.mazel...@xs4all.nl|
 Resolution||DUPLICATE

--- Comment #29 from Mark A. Hershberger john.n...@gmx.com 2012-02-28 
20:46:14 UTC ---


*** This bug has been marked as a duplicate of bug 25425 ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

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

Robin Pepermans (SPQRobin) robinp.1...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||al...@takas.lt,
   ||gangl...@torg.is,
   ||menous...@yahoo.com,
   ||robinp.1...@gmail.com,
   ||s.mazel...@xs4all.nl
 Resolution|DUPLICATE   |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-11-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Sumana Harihareswara suma...@panix.com changed:

   What|Removed |Added

   Keywords||patch, reviewed
 CC||suma...@panix.com

--- Comment #28 from Sumana Harihareswara suma...@panix.com 2011-11-09 
20:51:18 UTC ---
Marking this bug as having already-reviewed patches in it.

Can anyone still reproduce this bug, now that MediaWiki 1.18 is deployed?  1.18
includes bidi fixes, so maybe it's fixed.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-08-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Robin Pepermans (SPQRobin) robinp.1...@gmail.com changed:

   What|Removed |Added

   Keywords||testme
 CC||robinp.1...@gmail.com

--- Comment #26 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2011-08-03 10:31:09 UTC ---
This may be fixed in trunk. Adding fixme keyword.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-08-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Keywords|patch   |

--- Comment #27 from Siebrand s.mazel...@xs4all.nl 2011-08-03 11:23:50 UTC ---
Removing patch keyword, because per comment 26, this might be fixed. Feedback
appreciated!

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-06-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

 Blocks|4062|

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2011-01-31 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Keywords||i18n
 CC||s.mazel...@xs4all.nl

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2010-07-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Bug 3922 depends on bug 4295, which changed state.

Bug 4295 Summary: Article categorisation links unclickable when viewing 
categories with true BiDi names in Internet Explorer
https://bugzilla.wikimedia.org/show_bug.cgi?id=4295

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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 3922] links are not properly rendered in a BiDi category list

2009-11-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922


Philippe Verdy verd...@wanadoo.fr changed:

   What|Removed |Added

 CC||verd...@wanadoo.fr




--- Comment #24 from Philippe Verdy verd...@wanadoo.fr  2009-11-20 00:23:17 
UTC ---
Why don't you simply place each captegory within a basic span.../span and
then separate them using (space,pipe,space) separators ? The BiDi algorithm
does not reorders text fragments across distinct strings in distinct elements
which remain in their own unbroken run of glyphs ?

You don't need to use BiDi control overrides (and they are officially NOT
recommanded in HTML).

So this should work (no need to even test the site's locale directionality, or
if there are mixed scripts in the visible category names) :

$t = 'span' . implode('/spannbsp;| span', $wgOut-mCategoryLinks) .
'/span';


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
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