Hi, this is pretty trivial but I'm interested to find out.
I'm looking for a bit of information the theme settings $THEME->larrow and $THEME->rarrow.
When you create a theme and you set those values (if you set those values) what do you set them too?
In general I am keen to find out in general how people use those settings. However my interest was peaked because of MDL-43716. We noticed that those larrow and rarrow behave when you set them to when you don't.
If you have created themes that set those values I'd be very interested to get your view on that issue as well.
At present I feel it is a bug, however if people are used to how it operates and are relying on what it does currently then certainly it is not a bug and I shouldn't be hurrying off to change it.
Many thanks
Sam
I'm looking for a bit of information the theme settings $THEME->larrow and $THEME->rarrow.
When you create a theme and you set those values (if you set those values) what do you set them too?
In general I am keen to find out in general how people use those settings. However my interest was peaked because of MDL-43716. We noticed that those larrow and rarrow behave when you set them to when you don't.
If you have created themes that set those values I'd be very interested to get your view on that issue as well.
At present I feel it is a bug, however if people are used to how it operates and are relying on what it does currently then certainly it is not a bug and I shouldn't be hurrying off to change it.
Many thanks
Sam
Arialist uses ⟨ and ⟩ which gives 〈 〉 respectively
But there is a problem in that theme someone asked for help here and not sure how to answer.
I am using
$THEME->rarrow = '☞';
$THEME->larrow = '☜';
in a theme I have made recently and it works OK.
Hope this helps?
Mary
Arialist. Good catch! I had never given much thought to rarrow or larrow until I noticed that ⟨ and ⟩ produce boxes (☐) in the navbar, calendar block, etc. on some devices (ex. my phone). Changing ⟨ and ⟩ to their equivalent "decimal" values (〈 and 〉) seems to have fixed things.
I got into trouble using character entities rather than numeric references. In various places, when printed to buttons and the like, the character entity was printed verbatim and not as a symbol. So I ended up in the same boat as Gareth: "Just don't change them." Or, change them with CSS. Julian seems to be on the right track in just doing these changes with CSS. Maybe we want to switch over to that in the future? Esp. since the majority of RTL/LTR is handled with CSS.