[Libreoffice-commits] .: 2 commits - boost/boost.4127.warnings.patch boost/makefile.mk i18npool/qa i18npool/source

Caolán McNamara caolan at kemper.freedesktop.org
Mon Jul 23 08:13:55 PDT 2012


 boost/boost.4127.warnings.patch            |   19 
 boost/makefile.mk                          |    2 
 i18npool/qa/cppunit/test_breakiterator.cxx |   80 +++
 i18npool/source/breakiterator/data/README  |  722 +++++++++++++++++++++++++++++
 4 files changed, 823 insertions(+)

New commits:
commit b8b792babfa63ce2f59104117c961e96d8e265a7
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Jul 23 16:07:11 2012 +0100

    Related: boost#4127 strict-aliasing rules warning
    
    Change-Id: I9b4f9009c29276054ff94a427adf51c2094377b5

diff --git a/boost/boost.4127.warnings.patch b/boost/boost.4127.warnings.patch
new file mode 100644
index 0000000..11a955f
--- /dev/null
+++ b/boost/boost.4127.warnings.patch
@@ -0,0 +1,19 @@
+--- misc/boost_1_44_0/boost/smart_ptr/make_shared.hpp	(revision 69250)
++++ misc/build/boost_1_44_0/boost/smart_ptr/make_shared.hpp	(revision 69251)
+@@ -50,5 +50,16 @@
+         if( initialized_ )
+         {
++#if defined( __GNUC__ )
++
++            // fixes incorrect aliasing warning
++            T * p = reinterpret_cast< T* >( storage_.data_ );
++            p->~T();
++
++#else
++
+             reinterpret_cast< T* >( storage_.data_ )->~T();
++
++#endif
++
+             initialized_ = false;
+         }
diff --git a/boost/makefile.mk b/boost/makefile.mk
index e223ddf..5ce795f 100644
--- a/boost/makefile.mk
+++ b/boost/makefile.mk
@@ -53,6 +53,8 @@ TARFILE_MD5=f02578f5218f217a9f20e9c30e119c6a
 PATCH_FILES=$(TARFILE_NAME).patch
 #https://svn.boost.org/trac/boost/ticket/3780
 PATCH_FILES+=boost.3780.aliasing.patch
+#https://svn.boost.org/trac/boost/ticket/4127
+PATCH_FILES+=boost.4127.warnings.patch
 #https://svn.boost.org/trac/boost/ticket/4713
 PATCH_FILES+=boost.4713.warnings.patch
 #https://svn.boost.org/trac/boost/ticket/5119
commit a1cb33edbbb03bbb5f856d8c180b8ad97bd708b0
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Jul 23 15:20:04 2012 +0100

    Related: #i13494# regression tests for word iterator
    
    Change-Id: Ifad0a8ae01386db80a5eca9dfba8ee6841980139

diff --git a/i18npool/qa/cppunit/test_breakiterator.cxx b/i18npool/qa/cppunit/test_breakiterator.cxx
index b72deda..f983686 100644
--- a/i18npool/qa/cppunit/test_breakiterator.cxx
+++ b/i18npool/qa/cppunit/test_breakiterator.cxx
@@ -281,6 +281,86 @@ void TestBreakIterator::testWordBoundaries()
             CPPUNIT_ASSERT(m_xBreak->isEndWord(aTest, aBounds.endPos, aLocale, mode));
         }
     }
+
+    //See https://issues.apache.org/ooo/show_bug.cgi?id=13494
+    {
+        const rtl::OUString aBase("xxAAxxBBxxCCxx");
+        const sal_Unicode aTests[] =
+        {
+            '\'', ';', ',', '.', '!', '@', '#', '%', '&', '*',
+            '(', ')', '_', '-', '{', '}', '[', ']', '\"', '/',
+            '\\', '?', '~', '$', '+', '^', '=', '<', '>', '|'
+        };
+
+        const sal_Int32 aDoublePositions[] = {0, 2, 4, 6, 8, 10, 12, 14};
+        for (size_t j = 0; j < SAL_N_ELEMENTS(aTests); ++j)
+        {
+            rtl::OUString aTest = aBase.replace('x', aTests[j]);
+            sal_Int32 nPos = -1;
+            size_t i = 0;
+            do
+            {
+                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aDoublePositions));
+                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aDoublePositions[i++]);
+            }
+            while (nPos < aTest.getLength());
+            nPos = aTest.getLength();
+            i = SAL_N_ELEMENTS(aDoublePositions)-1;
+            do
+            {
+                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aDoublePositions[--i]);
+            }
+            while (nPos > 0);
+        }
+
+        const sal_Int32 aSinglePositions[] = {0, 1, 3, 4, 6, 7, 9, 10};
+        for (size_t j = 1; j < SAL_N_ELEMENTS(aTests); ++j)
+        {
+            rtl::OUString aTest = aBase.replaceAll(rtl::OUString("xx"), rtl::OUString(aTests[j]));
+            sal_Int32 nPos = -1;
+            size_t i = 0;
+            do
+            {
+                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aSinglePositions));
+                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aSinglePositions[i++]);
+            }
+            while (nPos < aTest.getLength());
+            nPos = aTest.getLength();
+            i = SAL_N_ELEMENTS(aSinglePositions)-1;
+            do
+            {
+                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aSinglePositions[--i]);
+            }
+            while (nPos > 0);
+        }
+
+        const sal_Int32 aSingleQuotePositions[] = {0, 1, 9, 10};
+        CPPUNIT_ASSERT(aTests[0] == '\'');
+        {
+            rtl::OUString aTest = aBase.replaceAll(rtl::OUString("xx"), rtl::OUString(aTests[0]));
+            sal_Int32 nPos = -1;
+            size_t i = 0;
+            do
+            {
+                CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aSingleQuotePositions));
+                nPos = m_xBreak->nextWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aSingleQuotePositions[i++]);
+            }
+            while (nPos < aTest.getLength());
+            nPos = aTest.getLength();
+            i = SAL_N_ELEMENTS(aSingleQuotePositions)-1;
+            do
+            {
+                nPos = m_xBreak->previousWord(aTest, nPos, aLocale, i18n::WordType::ANYWORD_IGNOREWHITESPACES).startPos;
+                CPPUNIT_ASSERT(nPos == aSingleQuotePositions[--i]);
+            }
+            while (nPos > 0);
+        }
+    }
 }
 
 //See http://qa.openoffice.org/issues/show_bug.cgi?id=111152
diff --git a/i18npool/source/breakiterator/data/README b/i18npool/source/breakiterator/data/README
index 585ba16..2005560 100644
--- a/i18npool/source/breakiterator/data/README
+++ b/i18npool/source/breakiterator/data/README
@@ -10,3 +10,725 @@ We need to review the various issues referenced in the commits that caused
 customizations and see if they're still relevant or not, write regression tests
 for them, if any are still relevant then apply the changes back on top of the
 latest versions.
+
+to-review, later are ok:
+
+commit 681082b57612ef325c7f695846369d44c68dda11
+Author: Caolán McNamara <caolanm at redhat.com>
+Date:   Sat Jan 29 12:51:52 2011 +0000
+
+    Resolves: fdo#31271 wrong line break with (
+
+commit 109fa8224194edfc4ca75ee5cc5e760e54d76a3f
+Author: Thomas Lange [tl] <tl at openoffice.org>
+Date:   Wed Dec 8 14:39:09 2010 +0100
+
+    cws tl84: #i89042# word count fix
+
+commit 42be5541baf18e3292a14a9d478eda33f61e10ab
+Author: Mattias Johnsson <m.t.johnsson at gmail.com>
+Date:   Thu Nov 4 23:25:02 2010 +1100
+
+    An opening quote should not be counted as a word by word count tool
+
+commit 600c6460a6ffa169ad0cc9bed4b77c545cc50f52
+Author: Thomas Lange [tl] <tl at openoffice.org>
+Date:   Tue Aug 24 16:46:29 2010 +0200
+
+    cws tl82: #i113785# ligatures for spell checking will no longer break words
+
+commit ae9d7c2cef9ecd42687d64f985b9e2dcbc68a034
+Author: Thomas Lange [tl] <tl at openoffice.org>
+Date:   Tue Apr 27 10:09:22 2010 +0200
+
+    cws tl80: #i103552# Japanese word for 'shutdown' added to ja.dic
+
+commit ffdc043d7272d2e0a664f530bbc112f952acadab
+Author: Thomas Lange [tl] <tl at openoffice.org>
+Date:   Mon Mar 15 09:22:49 2010 +0100
+
+    cws sw321bf01: #i107843# em-dash/en-dash breakiterator fix for spell checking
+
+commit e1ad946ef5db3f7c0a540207d0f0fd85799e3b66
+Author: Release Engineers <releng at openoffice.org>
+Date:   Thu Aug 6 18:13:57 2009 +0000
+
+    CWS-TOOLING: integrate CWS tl73
+    2009-07-31 15:29:33 +0200 tl  r274535 : #i64400# dash/hyphen should not break words
+
+commit 4e1fd2fa161708049f1c3b6039659d0bf4f4539e
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Tue Jan 6 12:54:16 2009 +0000
+
+    2008-12-03 16:14:17 +0100 erack  r264797 : #i93694# update script+language -> unicode digit mapping; patch from <hdu>
+    2008-11-25 02:01:18 +0100 erack  r264270 : #i83349# apply remaining parts of the patch, now that we use ICU 4.0; contributed by <kstribley>
+
+commit 16b796fcce6430448535e3692f624cb469380442
+Author: Release Engineers <releng at openoffice.org>
+Date:   Thu Oct 2 13:51:29 2008 +0000
+
+    #i80412#
+
+commit 672a654fa6b447df0397942c1fa6594bb63264b9
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:31:04 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.2.132); FILE MERGED
+    2008/07/23 23:07:46 khong 1.2.132.1: #i85411# Apply patch for ZWSP
+
+commit c75401da0c36bb518c41971d07660010ec745dd0
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:30:52 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.2.230); FILE MERGED
+    2008/07/23 23:07:46 khong 1.2.230.1: #i85411# Apply patch for ZWSP
+
+commit 43f49bd7d04fcc64941b5576a804f1b8bab76423
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:30:39 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.3.314); FILE MERGED
+    2008/07/23 23:07:46 khong 1.3.314.1: #i85411# Apply patch for ZWSP
+
+commit 8c4bc258ab77b586325a868d75094b1e041bd57e
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:30:26 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.5.214); FILE MERGED
+    2008/07/23 23:07:45 khong 1.5.214.1: #i85411# Apply patch for ZWSP
+
+commit 0c008c4b9b1957fffb62175a31a7085f98afbd6a
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:30:05 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.3.214); FILE MERGED
+    2008/07/23 23:07:45 khong 1.3.214.1: #i85411# Apply patch for ZWSP
+
+commit 01a7b977a133a910845c7226f36640f2edaf2ce9
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:29:53 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.2.184); FILE MERGED
+    2008/07/23 23:07:45 khong 1.2.184.1: #i85411# Apply patch for ZWSP
+
+commit 77cd396b673caa67dc1d56ecf44ee5f619244e77
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:29:40 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.2.114); FILE MERGED
+    2008/07/23 23:07:45 khong 1.2.114.1: #i85411# Apply patch for ZWSP
+
+commit 1e8949e19eb5f63504ab634c9a3e55b4b48484e0
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:29:27 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.4.214); FILE MERGED
+    2008/07/23 23:07:45 khong 1.4.214.1: #i85411# Apply patch for ZWSP
+
+commit 601733f145bf518eec4d29c2319c1f61ebd83d96
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:29:14 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.5.214); FILE MERGED
+    2008/07/23 23:07:45 khong 1.5.214.2: #i85411# Apply patch for ZWSP
+    2008/07/23 07:35:04 khong 1.5.214.1: #i85411# Apply patch for ZWSP
+
+commit 744a220b2950f488c50e7380fd45232e24921438
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:28:18 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.3.18); FILE MERGED
+    2008/07/23 23:07:45 khong 1.3.18.1: #i85411# Apply patch for ZWSP
+
+commit 8ead581613efb4ecd6121a195e04c4f5a7bc8bf1
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Thu Aug 14 15:27:36 2008 +0000
+
+    INTEGRATION: CWS i18n44 (1.27.6); FILE MERGED
+    2008/07/24 16:12:44 khong 1.27.6.2: #i85411# Apply patch for ZWSP
+    2008/07/23 23:07:44 khong 1.27.6.1: #i85411# Apply patch for ZWSP
+
+commit 9964a76ef58786bba47d409970512d7ded6c8889
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Wed Jul 2 07:53:05 2008 +0000
+
+    INTEGRATION: CWS i18n41 (1.1.2); FILE ADDED
+    2008/04/25 17:06:26 khong 1.1.2.3: i55063, make period a sentence delimiter
+    2008/04/25 06:40:50 khong 1.1.2.2: i55063, make space as Thai sentence delimiter
+    2008/04/24 03:19:10 khong 1.1.2.1: i55063, set Thai letters as sentence delimiter for Thai and English mixed text
+
+commit e4a6e4284dae1ca6fbfa7d1e43690dbf87d796cd
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Wed Jul 2 07:52:44 2008 +0000
+
+    INTEGRATION: CWS i18n41 (1.9.12); FILE MERGED
+    2008/06/17 20:22:30 khong 1.9.12.2: i83229 fix the problem of leading hyphen for nubmers
+    2008/04/23 06:20:16 khong 1.9.12.1: i72868, i80891, i83229, fix Chinese punctuations and hyphen for line breakiterator
+
+commit 55dff22611659a1567c968fbf9e512a2765ab62e
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Wed Jul 2 07:52:07 2008 +0000
+
+    INTEGRATION: CWS i18n41 (1.33.36); FILE MERGED
+    2008/06/05 22:18:29 khong 1.33.36.2: RESYNC: (1.33-1.35); FILE MERGED
+    2008/04/23 06:11:55 khong 1.33.36.1: i55063, enable language specific sentence breakiterator
+
+commit 1c2b8095631a3c2d2f396bf50a8f0c62f49be65c
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Wed Jul 2 07:51:12 2008 +0000
+
+    INTEGRATION: CWS i18n41 (1.12.140); FILE MERGED
+    2008/06/05 22:18:26 khong 1.12.140.2: RESYNC: (1.12-1.13); FILE MERGED
+    2008/04/23 06:04:53 khong 1.12.140.1: i87530 avoid breaking line before un-completed cell
+
+commit 9bbdb52df370c69c0f7eba387a2068ee80bd7994
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Wed Jul 2 07:50:43 2008 +0000
+
+    INTEGRATION: CWS i18n41 (1.25.2); FILE MERGED
+    2008/06/05 22:18:23 khong 1.25.2.2: RESYNC: (1.25-1.26); FILE MERGED
+    2008/04/23 06:09:02 khong 1.25.2.1: i88041: avoid startPos goes back to nStartPos when switching between Latin and CJK scripts
+
+commit 8dcdd3ca268f78295731b86797c2b8cd447ba667
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Tue May 20 13:36:01 2008 +0000
+
+    INTEGRATION: CWS i18n43_DEV300 (1.33.38); FILE MERGED
+    2008/04/29 21:51:51 khong 1.33.38.1: #i88411# apply the patch from Coleman Kane to fix icu setBreakType issue
+
+commit bedef98c24ef9ada6aaffe9bc5284d9759a31a9a
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Wed Apr 2 08:49:09 2008 +0000
+
+    INTEGRATION: CWS i18n40 (1.2.314); FILE MERGED
+    2008/03/19 06:30:23 khong 1.2.314.2: #i80815# count dash like MS Word
+    2008/03/15 07:32:44 khong 1.2.314.1: #i80815# count punctuation as word
+
+commit 59144104b3f91a2e6ed816f0bde0fdb91ea218d7
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Wed Apr 2 08:48:53 2008 +0000
+
+    INTEGRATION: CWS i18n40 (1.24.44); FILE MERGED
+    2008/03/19 18:56:42 khong 1.24.44.2: i80815 make word count feature like MS Word
+    2008/03/15 07:31:38 khong 1.24.44.1: #i80815# count punctuation as word
+
+commit 3f0b51776602c45e8aca991450fcbb30f2484ae5
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Mon Jan 28 14:33:46 2008 +0000
+
+    INTEGRATION: CWS i18n39 (1.8.4); FILE MERGED
+    2007/12/12 17:45:45 khong 1.8.4.3: b6634800# fix line break problem of dot after letter and before number
+    2007/12/08 01:05:52 khong 1.8.4.2: #i83649# fixed the problem of line break between quotation mark and open bracket
+    2007/12/07 23:44:30 khong 1.8.4.1: #i83464# fix the problem of line break between letter and 1326
+
+commit 5d8ef209b1f63d1c8ea5014bdbef96660b355423
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Tue Oct 23 08:09:00 2007 +0000
+
+    INTEGRATION: CWS i18n38 (1.7.4); FILE MERGED
+    2007/09/19 00:08:04 khong 1.7.4.3: i81448 fixed dot line break issue
+    2007/09/10 23:57:12 khong 1.7.4.2: i81440 fix the problem of line break on punctuations
+    2007/09/10 22:55:46 khong 1.7.4.1: i81448 fix problem of line break on symbols
+
+commit a2f3b48cacfcef338ca5e37acde34c83876e082e
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Tue Oct 23 08:08:47 2007 +0000
+
+    INTEGRATION: CWS i18n38 (1.32.10); FILE MERGED
+    2007/09/18 20:32:39 khong 1.32.10.1: i81519 set break type icu breakiterator
+
+commit 1967d8fb182b3101dee4f715e78be384400bc1e8
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Wed Sep 5 16:37:28 2007 +0000
+
+    INTEGRATION: CWS i18n37 (1.22.6); FILE MERGED
+    2007/09/03 18:27:39 khong 1.22.6.2: i8132 fixed a problem in skiping space for word breakiterator
+    2007/08/31 21:30:30 khong 1.22.6.1: i81158 fix skipping space problem
+
+commit d2c2baf1a31d281d20e8b4d4c806dda027b2d5a3
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Tue Aug 28 11:46:45 2007 +0000
+
+    INTEGRATION: CWS i18n36_SRC680 (1.5.20.1.2); FILE MERGED
+    2007/08/22 17:12:36 khong 1.5.20.1.2.1: i80841 fix hyphen line break problem
+
+commit d56bedfb425cf77f176f143455e4a9fb6ce65540
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Tue Aug 28 11:46:34 2007 +0000
+
+    INTEGRATION: CWS i18n36_SRC680 (1.21.2.1.2); FILE MERGED
+    2007/08/22 20:02:28 khong 1.21.2.1.2.2: i80923 fix infinite loop problem
+    2007/08/22 17:11:44 khong 1.21.2.1.2.1: i80923 fix a infinite loop
+
+commit 8a36b196925a5561eabde0a0ef293c73fcb5add3
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Fri Aug 17 13:58:48 2007 +0000
+
+    INTEGRATION: CWS i18n34 (1.5.22); FILE MERGED
+    2007/08/13 22:26:12 khong 1.5.22.1: i80548 i80645 fix dash and backslash issues in line breakiterator
+
+commit c00b2b49bad765144f90552139e63d87d520d1cf
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Fri Aug 17 13:58:36 2007 +0000
+
+    INTEGRATION: CWS i18n34 (1.15.4); FILE MERGED
+    2007/08/13 22:33:38 khong 1.15.4.1: i86439 fix surrogate characters handling issues
+
+commit 3fc5fbc71d4c244d7c8002aa530481741e585bd4
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Fri Aug 17 13:58:23 2007 +0000
+
+    INTEGRATION: CWS i18n34 (1.31.4); FILE MERGED
+    2007/08/13 22:33:37 khong 1.31.4.1: i86439 fix surrogate characters handling issues
+
+commit ee44b43881e7c82c379931f111c452a477b73341
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Fri Aug 17 13:58:11 2007 +0000
+
+    INTEGRATION: CWS i18n34 (1.21.4); FILE MERGED
+    2007/08/14 08:38:53 khong 1.21.4.2: i86439 fix surrogate characters handling issues
+    2007/08/13 22:33:37 khong 1.21.4.1: i86439 fix surrogate characters handling issues
+
+commit f47369dbbc385f8968ad43e43cba293a29a4c2df
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Tue Jul 31 16:09:13 2007 +0000
+
+    INTEGRATION: CWS i18n32 (1.29.14); FILE MERGED
+    2007/07/24 20:39:44 khong 1.29.14.1: #i79148# fix a local word breakiterator rules loading issue
+
+commit 2791553b4e3fc5e04b96d0b2fd119d9fba1946bc
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jul 26 08:08:51 2007 +0000
+
+    INTEGRATION: CWS i18n31 (1.14.60); FILE MERGED
+    2007/07/16 22:18:44 khong 1.14.60.4: i75631 i75632 i75633 i75412 handle surrogate pair characters
+    2007/07/13 20:37:32 khong 1.14.60.3: #i75632# use ICU characters properties
+    2007/07/04 01:17:22 khong 1.14.60.2: i75631 i75632 i75633 i75412 handle surrogate pair characters
+    2007/06/27 04:33:11 khong 1.14.60.1: i75631 i75632 i75633 i75412 handle surrogate pair characters
+
+commit 1c79a2bf1e89ac4eb409922ab7eb8ad3cacc688a
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jul 26 08:08:39 2007 +0000
+
+    INTEGRATION: CWS i18n31 (1.8.60); FILE MERGED
+    2007/06/27 04:33:11 khong 1.8.60.1: i75631 i75632 i75633 i75412 handle surrogate pair characters
+
+commit 517bbaddbaf81a5a6bb00979944cad13a1575d50
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jul 26 08:08:27 2007 +0000
+
+    INTEGRATION: CWS i18n31 (1.28.14); FILE MERGED
+    2007/07/13 20:37:32 khong 1.28.14.5: #i75632# use ICU characters properties
+    2007/07/04 01:17:22 khong 1.28.14.4: i75631 i75632 i75633 i75412 handle surrogate pair characters
+    2007/06/27 23:25:58 khong 1.28.14.3: i75412 handle surrogate pair characters
+    2007/06/27 05:33:20 khong 1.28.14.2: RESYNC: (1.28-1.29); FILE MERGED
+    2007/06/27 04:33:11 khong 1.28.14.1: i75631 i75632 i75633 i75412 handle surrogate pair characters
+
+commit 0154e3492f2527535c0d648274e7ff674674318b
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jul 26 08:08:14 2007 +0000
+
+    INTEGRATION: CWS i18n31 (1.14.42); FILE MERGED
+    2007/06/27 05:33:03 khong 1.14.42.2: RESYNC: (1.14-1.15); FILE MERGED
+    2007/06/27 04:33:11 khong 1.14.42.1: i75631 i75632 i75633 i75412 handle surrogate pair characters
+
+commit e2a5a2532ee187669980adb7bfa747c7803c330a
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jul 26 08:08:02 2007 +0000
+
+    INTEGRATION: CWS i18n31 (1.19.60); FILE MERGED
+    2007/07/13 20:37:32 khong 1.19.60.4: #i75632# use ICU characters properties
+    2007/07/04 01:17:22 khong 1.19.60.3: i75631 i75632 i75633 i75412 handle surrogate pair characters
+    2007/06/27 05:00:48 khong 1.19.60.2: i75231 handle surrogate pair characters
+    2007/06/27 04:33:11 khong 1.19.60.1: i75631 i75632 i75633 i75412 handle surrogate pair characters
+
+commit 80a26a7d4720b5b8cfa0acc624b28014c96d9948
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Tue Jun 26 16:41:02 2007 +0000
+
+    INTEGRATION: CWS ause081 (1.2.332); FILE MERGED
+    2007/06/21 10:53:19 hjs 1.2.332.1: #i78393# remove component_getDescriptionFunc from exports
+
+commit c2801db6b04bf6f0dbb07727c91b2c66e7e027b8
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Wed Jun 6 11:17:38 2007 +0000
+
+    INTEGRATION: CWS i18n30 (1.4.24); FILE MERGED
+    2007/05/08 21:32:18 khong 1.4.24.1: #i73903# update line breakiterator rule to icu3.6 style
+
+commit ea290668f78475c3b277c9e44bf5622ccb4dcec8
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Wed Jun 6 11:17:25 2007 +0000
+
+    INTEGRATION: CWS i18n30 (1.28.4); FILE MERGED
+    2007/05/08 21:47:00 khong 1.28.4.3: #i75412# remove fix from cws i18n30, move it to other cws to fix with other Japanese surrogate issues
+    2007/03/20 18:39:58 khong 1.28.4.2: #i72589# fixed BS problem for surrogate characters
+    2007/03/13 19:11:44 khong 1.28.4.1: #i75319# fixed ANY_WORD rule loading problem
+
+commit b6308a6e322fd4eaa7845793beb70900624f351c
+Author: Ivo Hinkelmann <ihi at openoffice.org>
+Date:   Wed Jun 6 11:17:12 2007 +0000
+
+    INTEGRATION: CWS i18n30 (1.14.32); FILE MERGED
+    2007/05/08 21:44:15 khong 1.14.32.1: #i76706# fix infinite loop for CJK word breakiterator for text mixed with Latin and CJK characters
+
+commit e068e0e9aa9405ea4016ad19e9a963129adfed79
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jan 25 08:35:42 2007 +0000
+
+    INTEGRATION: CWS i18n28 (1.1.2); FILE ADDED
+    2006/12/06 05:52:39 khong 1.1.2.1: #i64400# add an optional breakiterator entry in localedata
+
+commit 8d6f35a46085bb420e8896505504b376d17b842a
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu Jan 25 08:35:31 2007 +0000
+
+    INTEGRATION: CWS i18n28 (1.24.36); FILE MERGED
+    2006/12/19 17:27:58 khong 1.24.36.2: RESYNC: (1.24-1.25); FILE MERGED
+    2006/12/06 05:52:38 khong 1.24.36.1: #i64400# add an optional breakiterator entry in localedata
+
+commit 633d34fa33330339ab6795ce3703477216e0062e
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Tue Dec 12 15:14:36 2006 +0000
+
+    INTEGRATION: CWS icuupgrade (1.9.24); FILE MERGED
+    2006/10/11 06:11:11 khong 1.9.24.4: RESYNC: (1.10-1.11); FILE MERGED
+    2006/07/07 10:57:40 hdu 1.9.24.3: RESYNC: (1.9-1.10); FILE MERGED
+    2006/06/30 01:31:40 khong 1.9.24.2: #i53388# upgrade icu to 3.4.1
+    2006/06/15 19:16:55 khong 1.9.24.1: #i60645# upgrade icu to 3.4.1
+
+commit 5d46dabe95271c846601a2575d3304fd5b4b24f1
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Tue Dec 12 15:14:05 2006 +0000
+
+    INTEGRATION: CWS icuupgrade (1.22.20); FILE MERGED
+    2006/11/11 07:12:47 khong 1.22.20.6: #142664# fix breakiterator crash problem
+    2006/10/11 06:10:51 khong 1.22.20.5: RESYNC: (1.23-1.24); FILE MERGED
+    2006/09/06 01:00:31 khong 1.22.20.4: #i60645# upgrade to icu 3.6
+    2006/07/07 10:57:32 hdu 1.22.20.3: RESYNC: (1.22-1.23); FILE MERGED
+    2006/06/30 01:31:40 khong 1.22.20.2: #i53388# upgrade icu to 3.4.1
+    2006/06/20 14:27:26 hdu 1.22.20.1: #i60645# fix crash when udata_open failed
+
+commit 7431d816cdfc47b08978c0afd1f6503644bb11b8
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Mon Nov 6 13:40:05 2006 +0000
+
+    INTEGRATION: CWS i18n27 (1.3.142); FILE MERGED
+    2006/10/10 21:10:57 khong 1.3.142.1: #i65267# fix line break rule
+
+commit d7471e1462ffd9baeb3449eb86ccbb649e32b233
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Mon Nov 6 13:39:52 2006 +0000
+
+    INTEGRATION: CWS i18n27 (1.1.2); FILE ADDED
+    2006/10/10 21:08:55 khong 1.1.2.1: #i56348# add Hungarian word break rule for edit mode
+
+commit 1b65b0b886e2cb16382bc11770230fb6a140f33b
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Tue Oct 24 12:53:13 2006 +0000
+
+    INTEGRATION: CWS tl29 (1.12.24); FILE MERGED
+    2006/09/20 01:24:53 khong 1.12.24.1: #i69482# fixed mismatch of nextWord and getWordBoundary
+
+commit be43820c99d96a9e03e2ec5871f6259283b53b58
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Thu May 4 08:11:17 2006 +0000
+
+    INTEGRATION: CWS locales203 (1.1.2); FILE ADDED
+    2006/04/25 22:47:02 khong 1.1.2.1: #i58513 add break iterator rules for Finish
+
+commit 97d89862a2285071202cc8010d888ffcbf96279a
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Thu Nov 17 19:30:35 2005 +0000
+
+    INTEGRATION: CWS i18n23 (1.20.22); FILE MERGED
+    2005/11/17 20:00:37 khong 1.20.22.3: RESYNC: (1.20-1.21); FILE MERGED
+    2005/11/17 19:45:05 khong 1.20.22.2: #i57866# merge cws i18n23 and thaiissues
+    2005/11/15 21:10:24 khong 1.20.22.1: #i57866# fix line breakiterator problem
+
+commit 05fadde6f025bcaafca4f3093e88be3cc1bb6836
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Nov 16 09:18:37 2005 +0000
+
+    INTEGRATION: CWS thaiissues (1.20.6); FILE MERGED
+    2005/10/26 20:42:40 khong 1.20.6.2: use icu thai linke break algorithm for thai breakiterator
+    2005/10/26 13:36:24 fme 1.20.6.1: #i55716# Handling of WORDJOINER
+
+commit a10b0e70c641d7438c557ef718c6942b3abffaec
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Nov 16 09:18:25 2005 +0000
+
+    INTEGRATION: CWS thaiissues (1.8.6); FILE MERGED
+    2005/10/26 20:42:39 khong 1.8.6.1: use icu thai linke break algorithm for thai breakiterator
+
+commit 4a1f1586173839d532f90507c72306bc9e2aec56
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Nov 16 09:18:11 2005 +0000
+
+    INTEGRATION: CWS thaiissues (1.9.4); FILE MERGED
+    2005/10/28 17:54:39 khong 1.9.4.1: Fix a bug in ctl line break when there is word joiner character
+
+commit beb2a536738ba761a92f8266570f1859c85f94ae
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Tue Nov 8 15:59:16 2005 +0000
+
+    INTEGRATION: CWS siloch (1.3.50); FILE MERGED
+    2005/10/26 10:55:05 er 1.3.50.1: #i56347# apply patch to recognize suffixes of numbers in Hungarian spellchecking; contributed by Nemeth Laszlo <nemeth at ooo>
+
+commit 939e7c2bc93c13b6740051beeb08c5883b65ffce
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Nov 4 14:33:30 2005 +0000
+
+    INTEGRATION: CWS i18n21 (1.3.46); FILE MERGED
+    2005/10/21 00:35:09 khong 1.3.46.1: #i55778 reverse back last change, treat letter and number combination as one word.
+
+commit 51594ef552a872b9868e5c7a025a68665488a016
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Nov 4 14:33:16 2005 +0000
+
+    INTEGRATION: CWS i18n21 (1.2.2); FILE MERGED
+    2005/10/21 00:35:08 khong 1.2.2.1: #i55778 reverse back last change, treat letter and number combination as one word.
+
+commit f4fe39909c7ed645a8b387cf66de249572226ad6
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Nov 4 14:33:03 2005 +0000
+
+    INTEGRATION: CWS i18n21 (1.3.46); FILE MERGED
+    2005/10/21 00:35:08 khong 1.3.46.1: #i55778 reverse back last change, treat letter and number combination as one word.
+
+commit 7f8af14611e66655ea7354083eafd71afc9703e3
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Nov 4 14:32:41 2005 +0000
+
+    INTEGRATION: CWS i18n21 (1.4.46); FILE MERGED
+    2005/10/21 00:35:07 khong 1.4.46.1: #i55778 reverse back last change, treat letter and number combination as one word.
+
+commit 924e158b9d871fbf7500e9215540e26aa95b3b20
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Mon Oct 17 14:43:17 2005 +0000
+
+    INTEGRATION: CWS i18n20 (1.1.2); FILE ADDED
+    2005/09/22 23:47:49 khong 1.1.2.1: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+
+commit 268567aa88a991e055c41d9115bccce951f7e308
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Mon Oct 17 14:42:47 2005 +0000
+
+    INTEGRATION: CWS i18n20 (1.1.2); FILE ADDED
+    2005/08/26 23:33:38 khong 1.1.2.1: #i50172# add cell breakiterator rule for Tamil
+
+commit a428a8927006a10ccfe7182e6fe5a8b677281eca
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Mon Oct 17 14:42:30 2005 +0000
+
+    INTEGRATION: CWS i18n20 (1.18.32); FILE MERGED
+    2005/09/23 15:59:13 khong 1.18.32.6: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+    2005/09/23 08:09:54 khong 1.18.32.5: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+    2005/09/23 07:38:03 khong 1.18.32.4: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule
+    2005/09/22 23:47:48 khong 1.18.32.3: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+    2005/08/26 23:34:37 khong 1.18.32.2: #i50172# add cell breakiterator rule for Tamil
+    2005/08/26 23:31:59 khong 1.18.32.1: #i50172# add cell breakiterator rule for Tamil
+
+commit f518f78557931b81e06fd7b31bb22c6639e5e553
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Mon Oct 17 14:42:14 2005 +0000
+
+    INTEGRATION: CWS i18n20 (1.6.32); FILE MERGED
+    2005/09/23 15:59:13 khong 1.6.32.3: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+    2005/09/23 07:38:02 khong 1.6.32.2: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule
+    2005/09/22 23:47:48 khong 1.6.32.1: #i51661# add quotation mark as middle letter for Hebrew in word breakiterator rule.
+
+commit 9b870055ecd043d1d4fadeacd351f8739e1979a0
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Fri Feb 25 09:08:13 2005 +0000
+
+    INTEGRATION: CWS i18n16 (1.16.22); FILE MERGED
+    2005/02/04 19:05:45 khong 1.16.22.3: #i41671# use ICU rules for Thai breakiterator
+    2005/01/24 21:56:34 khong 1.16.22.2: #i35285# merge cws i18n16 with top version 1.17
+    2005/01/12 01:12:41 khong 1.16.22.1: #i35285# remove uprv_malloc, use udata_open for loading icu rule breakiterator
+
+commit 29b9e86f5dac388d7aaced24d3826ac9331b03e3
+Author: Vladimir Glazounov <vg at openoffice.org>
+Date:   Fri Feb 25 09:07:59 2005 +0000
+
+    INTEGRATION: CWS i18n16 (1.5.22); FILE MERGED
+    2005/02/04 19:05:45 khong 1.5.22.1: #i41671# use ICU rules for Thai breakiterator
+
+commit 746ea3d8c29b27b23af3433446f66db0ad3096d6
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Tue Jan 11 10:19:26 2005 +0000
+
+    INTEGRATION: CWS i18n15 (1.2.20); FILE MERGED
+    2004/09/04 02:03:53 khong 1.2.20.1: #117685# make dictionary word contain only letter or only number, dot can be in middle or end of a word, but only one.
+
+commit a31a26ce1a9c7f63e354836fd9e1282b6a5063a1
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Tue Jan 11 10:19:07 2005 +0000
+
+    INTEGRATION: CWS i18n15 (1.2.58); FILE MERGED
+    2004/09/04 02:03:53 khong 1.2.58.1: #117685# make dictionary word contain only letter or only number, dot can be in middle or end of a word, but only one.
+
+commit f7babbe5ffcae9d60ab5e547887a0ccc453c2bcb
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Tue Jan 11 10:18:51 2005 +0000
+
+    INTEGRATION: CWS i18n15 (1.3.36); FILE MERGED
+    2004/09/04 02:03:53 khong 1.3.36.1: #117685# make dictionary word contain only letter or only number, dot can be in middle or end of a word, but only one.
+
+commit e5a62ce85bebcc9fb2bf0e5b9aced5fc7748055b
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Tue Jan 11 10:18:37 2005 +0000
+
+    INTEGRATION: CWS i18n15 (1.16.4); FILE MERGED
+    2004/10/07 18:19:11 khong 1.16.4.1: #i33756# update Hangarian breakiterator
+
+commit d2a6a31e6981800c2a920f8c6ff901c341a0466e
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:38:57 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.8.92); FILE MERGED
+    2004/06/14 23:24:16 khong 1.8.92.2: #112772# Japanese word breakiterator is not correct
+    2004/06/11 19:23:04 khong 1.8.92.1: #112772# Japanese word breakiterator is not correct
+
+commit 6138176b324d55efb1970ad4506c3aee41061d6f
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:38:43 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.15.2); FILE MERGED
+    2004/06/17 20:29:38 khong 1.15.2.3: #
+    2004/06/11 18:59:43 khong 1.15.2.2: #i29548# Fix Thai word breakiterator problem
+    2004/06/08 21:11:34 khong 1.15.2.1: #i29548# Fix Thai word breakiterator problem
+
+commit 25e78ca2315f780c2708dd51824aba36c29bc7b7
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:38:30 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.4.162); FILE MERGED
+    2004/06/08 21:11:33 khong 1.4.162.1: #i29548# Fix Thai word breakiterator problem
+
+commit d6b8dabc3dc4811e1152d411a8428ccb334d16ab
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:38:17 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.7.162); FILE MERGED
+    2004/06/11 19:23:04 khong 1.7.162.1: #112772# Japanese word breakiterator is not correct
+
+commit 9ea4c16a699ac7cf5e255a19653651ac993f022b
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:38:05 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.9.92); FILE MERGED
+    2004/06/11 19:23:04 khong 1.9.92.1: #112772# Japanese word breakiterator is not correct
+
+commit 2887ecb5554eee699e1dce4ffbc2dfcf71a54a41
+Author: Kurt Zenker <kz at openoffice.org>
+Date:   Fri Jul 30 13:37:54 2004 +0000
+
+    INTEGRATION: CWS i18n13 (1.15.18); FILE MERGED
+    2004/06/17 20:29:38 khong 1.15.18.2: #
+    2004/06/02 04:54:24 khong 1.15.18.1: #i11993# fix getWordBoundary problem when position is on the end of the word.
+
+commit 606556eed208d1218f950df2200510a7e19af1d9
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Fri May 28 15:33:28 2004 +0000
+
+    INTEGRATION: CWS i18n12 (1.1.2); FILE ADDED
+    2004/04/30 14:37:52 er 1.1.2.1: #i27711# Hungarian breakiterator (provided by Timar Andras)
+
+commit 9710ca90166c18c0a92f7f0246a7c2f7dae87ebc
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Fri May 28 15:33:17 2004 +0000
+
+    INTEGRATION: CWS i18n12 (1.4.22); FILE MERGED
+    2004/04/13 11:55:32 er 1.4.22.1: #i27711# Hungarian breakiterator
+
+commit b138663ef4f4ade38fb42f8a2f567527cf15949b
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Fri May 28 15:33:02 2004 +0000
+
+    INTEGRATION: CWS i18n12 (1.13.22); FILE MERGED
+    2004/04/30 11:25:47 er 1.13.22.2: RESYNC: (1.13-1.14); FILE MERGED
+    2004/04/13 11:55:32 er 1.13.22.1: #i27711# Hungarian breakiterator
+
+commit 170eb11a6d894ace40b2e4708264b0142ac4e603
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Mar 17 08:02:36 2004 +0000
+
+    INTEGRATION: CWS i18n11 (1.1.124); FILE MERGED
+    2004/01/06 19:36:16 khong 1.1.124.1: #112623# update Japanese word breakiterator dictionary
+
+commit f5bc5f04e4de8fa502d498a99f4ef6a340d796c0
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Mar 17 08:02:14 2004 +0000
+
+    INTEGRATION: CWS i18n11 (1.13.14); FILE MERGED
+    2004/02/04 02:09:04 khong 1.13.14.2: #i24098# skip preceding space for beginOfSentence
+    2004/01/06 19:41:49 khong 1.13.14.1: #i24098# fix beginOfSentence, which did not work correctly when cursor is on the beginning of the sentence
+
+commit 16401a5b865b5da8a2dd70057e8b048e9b797d5a
+Author: Oliver Bolte <obo at openoffice.org>
+Date:   Wed Mar 17 08:02:01 2004 +0000
+
+    INTEGRATION: CWS i18n11 (1.12.14); FILE MERGED
+    2004/02/10 14:21:13 er 1.12.14.3: RESYNC: (1.12-1.13); FILE MERGED
+    2004/02/05 16:45:30 khong 1.12.14.2: #i24850# fix the problem in previousCharBlock, when target char block is in poistion 1
+    2004/02/04 02:13:48 khong 1.12.14.1: #i24098# check boundary condition for Sentence, Script, CharBlock breakiterator
+
+commit 4da98b648497af30de0fcf1a16e649ce18b0564f
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Mon Mar 8 16:17:05 2004 +0000
+
+    INTEGRATION: CWS i18n09 (1.2.2); FILE MERGED
+    2003/12/04 23:45:37 khong 1.2.2.3: #i22602# make dot stick on beginning of a word when doing line break
+    2003/12/04 23:12:37 khong 1.2.2.2: #i21392# change line break rule to match with MS office
+    2003/12/03 19:32:02 khong 1.2.2.1: #i19716# fix wrong line break on bracket characters
+
+commit 15f41851842866c9a486eb9cfa258907c472f69f
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Mon Mar 8 16:16:53 2004 +0000
+
+    INTEGRATION: CWS i18n09 (1.2.2); FILE MERGED
+    2003/12/03 02:17:55 khong 1.2.2.1: #110105# Set word boundary between CJK and Latin script type
+
+commit a83ef0cbe99b66241615b238c1d287a6da04e51e
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Mon Mar 8 16:16:16 2004 +0000
+
+    INTEGRATION: CWS i18n09 (1.2.2); FILE MERGED
+    2003/12/03 02:17:54 khong 1.2.2.1: #110105# Set word boundary between CJK and Latin script type
+
+commit f0939f43315a21f5134cd631773ddae7cfef4493
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Mon Mar 8 16:16:04 2004 +0000
+
+    INTEGRATION: CWS i18n09 (1.12.2); FILE MERGED
+    2003/12/09 19:35:48 khong 1.12.2.4: #112021# fix word boundary problem on begining and end of the string
+    2003/12/08 23:47:26 khong 1.12.2.3: #i21907# fix isBeginWord and isEndWord problem
+    2003/11/18 22:55:08 khong 1.12.2.2: #i21290# #i22530# #i14640# extend CTL script support, extend Greek script type
+    2003/11/18 22:31:59 khong 1.12.2.1: #i21290# #i22530# #i14640# extend CTL script support, extend Greek script type
+
+commit 8311f89a42e6a4b8147191880470da415c9d7483
+Author: Rüdiger Timm <rt at openoffice.org>
+Date:   Tue Jan 20 12:20:28 2004 +0000
+
+    INTEGRATION: CWS i18n10 (1.12.4); FILE MERGED
+    2003/12/17 20:15:43 khong 1.12.4.1: #i22138# #112506# migrate to ICU collator and remove link to tool library
+
+commit 825b2bb5d875a9d94e2ee5549d7cfb78b0aed933
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Fri Nov 7 14:14:53 2003 +0000
+
+    INTEGRATION: CWS i18n08 (1.1.2); FILE ADDED
+    2003/08/08 23:30:57 khong 1.1.2.1: #i17155# fix line breakiterator rule to make slash and hyphen as part of word when doing line break
+
+commit 7ff54c632497706b354d8befd5e2ceb75fa4ba9c
+Author: Jens-Heiner Rechtien <hr at openoffice.org>
+Date:   Fri Nov 7 14:14:35 2003 +0000
+
+    INTEGRATION: CWS i18n08 (1.1.2); FILE ADDED
+    2003/08/08 23:29:12 khong 1.1.2.1: #i13451# add '-' as midLetter for Catalan dictionary word breakiterator
+
+done, regression tests added:
+
+#i13494# fix word breakiterator rule to handle punctuations and signs correctly
+#i11993# #i14904# fix word breakiterator issues


More information about the Libreoffice-commits mailing list