Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
406 views

How to create a regex for parsing Arabic Dates

I'm working on a program that is running a series of regexs to attempt to find a date within the DOM from a webpage. For example, in www.engadget.com/2010/07/19/windows-phone-7-in-depth-preview/, I ...
7
votes
3answers
1k views

Where exactly in the Android OS is text renderred?

Let me first state what I am trying to achieve: To create a patch for the Android OS to enable it to display Arabic/Hebrew correctly. Both of these languages are Right-to-Left (RTL) and their script ...
4
votes
2answers
83 views

Ways to simulate the yet unimplemented <bdi> HTML tag?

The purpose of the <bdi> tag in HTML5 is to isolate bidirectional text from it's context. And that's precisely what I'm looking for. A left-to-right username displays like this: Welcome, ...
4
votes
2answers
76 views

Set JLabel Alignment right-left

I have a JPanel that separated to 2 blocks, in south block (layout) I have add a JLabel, In the label I want to Insert a string with this rule: (Name, Date, Time, In/Out) If my name was written in ...
4
votes
9answers
1k views

Why is software support for Bidirectional text (Hebrew,Arabic) so poor?

While most operating systems and web browsers have very good support for bidirectional text such as Hebrew and Arabic, most commercial and open-source software does not: Most text editors, besides ...
3
votes
3answers
411 views

Bi-directional Browser Title (Hebrew and English characters in Title)

I have a aspx page who's title has both Hebrew and English characters in it, and the order of the words gets messed up. Is there a way to style the title so the words don't get messed up, or is it an ...
2
votes
2answers
266 views

How to solve BiDi bracket problem?

As you might know some languages are written/read from right to left and we are trying to support some RTL languages. For the web UI using dir="rtl" in html does most of the job thanks to algorithms ...
2
votes
4answers
2k views

Reversing Strings in Right To Left (BiDirectional) Languages in C#

I'm using iTextSharp( C# iText port) to create pdfs from text/html. Most of my text is in Hebrew, a Right-To-Left language. My problem is that PDFs show RTL langauge in reverse, so I need to reverse ...
2
votes
1answer
115 views

What's the correct direction of a date embedded in arabic text?

The question is quiet simple: I've got an arabic text with an US formated Date in it. What is the correct display order of this date? Is it(for instance) 01/10/2009 or 2009/10/1? The bidi algorithm ...
2
votes
1answer
4k views

How to draw RTL text (Arabic) onto a Bitmap and have it ordered properly?

I'm trying to draw Arabic text onto a Bitmap for display: Bitmap img = Bitmap.createBitmap( (int) f+100, 300, Config.RGB_565); Canvas c = new Canvas(); c.setBitmap( img ); mFace = ...
1
vote
1answer
54 views

Unicode bidi text algorithm in C#?

Is there a C# version of the Unicode algorithm that takes a Unicode string and breaks it into runs that can be correctly rendered? Each run should be either left-to-right or right-to-left. We ...
1
vote
0answers
100 views

Incorrect bidi behaviour in WPF?

I experience strange things when setting the "Language" property in WPF: Set FlowDirection to "RightToLeft" on a Window or textbox/textblock Set the Language property to "fa-IR" Set the text to one ...
1
vote
4answers
69 views

Bi-directional text destroying the layout

In my website there's a header that should display "Welcome username.". <span>Welcome <?php echo $username; ?>.</span> The problem is that if the user changes his name to ...
1
vote
1answer
69 views

pyfribidi for windows or any other bidi algorithm

I'm trying to generate a report using reportlab, and the report language is Arabic. but the problem is reportlab doesn't support BIDI (Bidirection) Display because of the lack BIDI Algorithm support ...
1
vote
3answers
283 views

How can I recognize RTL strings in C++

I need to know the direction of my text before printing. I'm using Unicode Characters. How can I do that in C++?
1
vote
1answer
197 views

BidiMap Synchronization

When using the apache commonds bidimap, how do you handle synchronization. For example, if I create the map as shown below BidiMap oneWay = new DualHashBidiMap(); BidiMap theOtherWay = ...
1
vote
1answer
319 views

Current Text Direction (BiDi support) in Cocoa?

I recently received an Arabic translation for my app, but would like to do more than simply replace the strings. I can re-layout most of the NIBs with Interface builder, but there are a few things ...
1
vote
2answers
956 views

Mix of Arabic and English causes problems in JTextArea (Java)

I have a JTextArea which displays HTML of an Arabic web page. So it's essentially a mix of English and Arabic. In the JTextArea, with columns set to 30, certain text just disappears instead of ...
0
votes
0answers
21 views

HTML5 Canvas fillText with Right-to-Left string

I am trying to use the fillText() method on an HTML5 Canvas' 2d Context to draw a string written in Arabic. It works perfectly, until I put a punctuation mark at the end of the string. Then the ...
0
votes
0answers
20 views

How to build RTL support for a PDF created using iText and Flying Saucer

I am using Flying Saucer (xhtmlrenderer) to convert a dynamically generated HTML to PDF. It works perfect for English text. Now I need to support Arabic in my application. I figured out that flying ...
0
votes
0answers
31 views

Advanced How-to Snap tags

I'd like to implement and understand how snap tags works with a mobile device. Could be it possible to directly scan and read from a snap tag without sending to a server? ...
0
votes
1answer
65 views

How to write this RTL layout in HTML?

I'm trying to get the following layout of text containing both Hebrew and Latin characters: 2011 ,HEBREW 11 ,english (The capitalized letters represent Hebrew characters, and the whole thing should ...
0
votes
2answers
845 views

Displaying bidirectional multiline text from XML file in flash

I have been asked to add support to a xml based website. I have been looking into it and have realised that it is not going to be very straight forward. The text does have english phrases in when ...
0
votes
1answer
671 views

YUI support of rtl languages

Does YUI support rtl languages? (rtl: right to left, such as hebrew or arabic). If so, how? I want to display a MenuBar where the different menu items start near the right margin and go to the left.