<div dir="ltr"><div class="gmail_quote">On Wed, Apr 13, 2011 at 2:21 PM, Caolán McNamara <span dir="ltr"><<a href="mailto:caolanm@redhat.com">caolanm@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im">On Wed, 2011-04-13 at 14:07 +0300, Lior Kaplan wrote:<br>
> I'm not sure how to change the the CTLSequenceChecking only for Hebrew<br>
> (see <a href="http://openoffice.org/bugzilla/show_bug.cgi?id=61863" target="_blank">http://openoffice.org/bugzilla/show_bug.cgi?id=61863</a>).<br>
><br>
> Any help appreciated.<br>
<br>
</div>IMO that CTLSequenceChecking should only be turned on for e.g. Thai, and<br>
not generically on for all CTL languages.<br>
<br>
You can find it at<br>
<a href="http://opengrok.libreoffice.org/xref/libs-core/officecfg/registry/data/org/openoffice/Office/Common.xcu" target="_blank">http://opengrok.libreoffice.org/xref/libs-core/officecfg/registry/data/org/openoffice/Office/Common.xcu</a><br>
<br>
We should turn of *off* by default, and change install:module="ctl" to<br>
install:module="thai" and have a little thai-specific one to turn it<br>
*on* for that case. See the "korea" one for an example.<br></blockquote><div><br>Following your hint, here's the patch to fix #i61863. It disables squence checking for CTL languages and enables it for Thai.<br>
<br>--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu<br>+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu<br>@@ -173,6 +173,17 @@<br> <value >true</value><br> </prop><br>
<prop oor:name="CTLSequenceChecking" ><br>+ <value >false</value><br>+ </prop><br>+ <prop oor:name="CTLSequenceCheckingRestricted" ><br>+ <value >false</value><br>
+ </prop><br>+ <prop oor:name="CTLSequenceCheckingTypeAndReplace"><br>+ <value >false</value><br>+ </prop><br>+ </node><br>+ <node oor:name="CTL" install:module="thai"><br>
+ <prop oor:name="CTLSequenceChecking" ><br> <value >true</value><br> </prop><br> <prop oor:name="CTLSequenceCheckingRestricted" ><br> <br></div></div>
</div>