<div dir="ltr"><div class="gmail_quote">On Wed, Apr 13, 2011 at 2:21 PM, Caolán McNamara <span dir="ltr">&lt;<a href="mailto:caolanm@redhat.com">caolanm@redhat.com</a>&gt;</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>
&gt; I&#39;m not sure how to change the the CTLSequenceChecking only for Hebrew<br>
&gt; (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>
&gt;<br>
&gt; 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=&quot;ctl&quot; to<br>
install:module=&quot;thai&quot; and have a little thai-specific one to turn it<br>
*on* for that case. See the &quot;korea&quot; one for an example.<br></blockquote><div><br>Following your hint, here&#39;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>         &lt;value &gt;true&lt;/value&gt;<br>       &lt;/prop&gt;<br>
       &lt;prop oor:name=&quot;CTLSequenceChecking&quot; &gt;<br>+        &lt;value &gt;false&lt;/value&gt;<br>+      &lt;/prop&gt;<br>+      &lt;prop oor:name=&quot;CTLSequenceCheckingRestricted&quot; &gt;<br>+        &lt;value &gt;false&lt;/value&gt;<br>
+      &lt;/prop&gt;<br>+      &lt;prop oor:name=&quot;CTLSequenceCheckingTypeAndReplace&quot;&gt;<br>+        &lt;value &gt;false&lt;/value&gt;<br>+      &lt;/prop&gt;<br>+    &lt;/node&gt;<br>+    &lt;node oor:name=&quot;CTL&quot; install:module=&quot;thai&quot;&gt;<br>
+      &lt;prop oor:name=&quot;CTLSequenceChecking&quot; &gt;<br>         &lt;value &gt;true&lt;/value&gt;<br>       &lt;/prop&gt;<br>       &lt;prop oor:name=&quot;CTLSequenceCheckingRestricted&quot; &gt;<br> <br></div></div>
</div>