Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-23 Thread Ron Aaron
Turns out it was my mistake. After looking at the source of the created HTML page, I could see my 'class' declarations coming through (they do not get stripped out, as a perusal of the wikiformat.c source shows). Rather, I had neglected to refresh the browser so the new CSS got pulled down.

[fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Ron Aaron
Hi all - I've got a site where I want to be able to have text in both English and Hebrew. Hebrew paragraphs should be styled as direction: rtl; text-align: right;. When I try to add a .hebrew style (or div.hebrew or p.hebrew), the style does not seem to take effect when I type in for example:

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Joshua Paine
On 4/22/2011 2:05 AM, Ron Aaron wrote: When I try to add a .hebrew style (or div.hebrew or p.hebrew), the style does not seem to take effect when I type in for example:div style=hebrew some hebrew/div (nor forp tags). Well, it would need to be class=hebrew rather than style=hebrew. But

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Ron Aaron
I meant 'class=' actually. I thought 'class' was one of the attributes *not* stripped. It shouldn't be, IMO. Turning on HTML mode is more than I want to do for this site; all I'm really looking for is the ability to properly display RTL text. On 04/22/2011 01:43 PM, Joshua Paine wrote: On

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Stephan Beal
On Fri, Apr 22, 2011 at 12:53 PM, Ron Aaron r...@ronware.org wrote: I meant 'class=' actually. I thought 'class' was one of the attributes *not* stripped. It shouldn't be, IMO. http://www.fossil-scm.org/index.html/wiki_rules says: All attributes are checked and only a few benign

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Bill Burdick
You can add type=hebrew to your elements and use CSS rules like this: *[type=hebrew], *[type=hebrew] * { ... } This will apply the style to elements with type=hebrew and all of their children. Bill On Fri, Apr 22, 2011 at 6:17 AM, Stephan Beal sgb...@googlemail.com wrote: On Fri, Apr 22,