Age | Commit message (Collapse) | Author |
|
Change-Id: I4dad05dbbe668ac7d7058cb43989f6a9f8e488a6
Reviewed-on: https://gerrit.libreoffice.org/1118
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Tested-by: Luboš Luňák <l.lunak@suse.cz>
|
|
Change-Id: I6a89dd2c5e34035ac1e6c9b7e4723d881c5ceaa9
|
|
Change-Id: I8917c2958f021f11933d9da7fec8ef01609387c8
|
|
Change-Id: Id78a989ab981d658dd8f331b030e00ce201c8bc9
|
|
And use the rtl::Static pattern for statics.
Change-Id: I80d8cc0a4a35771f86bec27edf41224d71cdea14
|
|
Added bResolveSystem=true parameter to getBcp47(), getLocale() and
getLanguageType(). Other get...() and is...() methods now always resolve
to system locale.
Change-Id: I2d9718b8bd36aac5e047afd6921d462e52c6a235
|
|
|
|
|
|
|
|
|
|
introducing new Currency element and marking previous as legacyOnly
Change-Id: I40a762bf03a15f241fc80279bb61be9a2710d2f0
Reviewed-on: https://gerrit.libreoffice.org/967
Reviewed-by: Lior Kaplan <kaplanlior@gmail.com>
Tested-by: Lior Kaplan <kaplanlior@gmail.com>
Reviewed-by: Eike Rathke <erack@redhat.com>
|
|
|
|
Change-Id: I2fe03d438f52c31d0615f124f4d0a7ced2136928
|
|
ported from the broken java ver.
adds a native ICU regex sanity test.
|
|
|
|
Patches from Herbert Duerr:
#i118925# fix old word-boundary emulation
http://svn.apache.org/viewvc?view=revision&revision=1301596
#i119031# preserving ASCII in ignore-* transliterations allows full SIMPLE_TRANS_MASK
http://svn.apache.org/viewvc?view=revision&revision=1301104
#i118887# ignore zero-length matches in regexp search
http://svn.apache.org/viewvc?view=revision&revision=1242235
fix transliteration flags for search pattern preprocessing
http://svn.apache.org/viewvc?view=revision&revision=1236199
fix minor typo in comment
http://svn.apache.org/viewvc?view=revision&revision=1234799
improve standard conformance regarding unicode UAX#29 word boundaries
http://svn.apache.org/viewvc?view=revision&revision=1234786
emulate word boundary matching of old regex engine
The new ICU regex engine has much improved unicode capabilities.
The old regex engine had the extensions \< and \> for matching word boundaries.
For the convenience of a smooth upgrade experience these artifacts now get mapped
to \b which is supported by almost all regex engines.
http://svn.apache.org/viewvc?view=revision&revision=1234777
#i118723# fill in regexp matcher group details
http://svn.apache.org/viewvc?view=revision&revision=1228084
use ICU regexp instead of LGPL i18nregexp
http://svn.apache.org/viewvc?view=revision&revision=1177610
#i119031# default to preserve ASCII in ignore-width transliteration
http://svn.apache.org/viewvc?view=revision&revision=1301101
|
|
Change-Id: Ib019e248b16a39ea058cdebeaa1f37a967a00d6c
|
|
Prepared private methods to force compiler errors during conversion to
LanguageTag. Commented current usage on some methods.
Change-Id: If365e24c7cf06bdf33ecd0bc15ddbfe33cd347c0
|
|
Change-Id: I0ab5a25cafdd246828ba09db8d01bb498e7012ab
|
|
Change-Id: Ida7914d7301c16ed1771be3d874c716c8fbaf8b4
|
|
and get rid of ugly DOS line ends.
Change-Id: Ib20e594a26eb27d0649f64548eb55bc975218274
|
|
Change-Id: I05f2f5e51490b6830a01fe72b11dd9da174719fd
|
|
Change-Id: I9e66d0528a8b095897e27216352979c4bcfb4eae
|
|
Change-Id: I8444fe62254cefe950f356e2f0bca5625420cd75
|
|
Change-Id: I4adad5b494e61d033d6525a07260f7b4b8cb4e9c
|
|
Now with librsvg no longer used, and liblangtag no longer using glib,
a bunch of bundled (in some configurations, always on some platforms)
3rd-party libraries are no longer needed.
Initial work by rene, continued by tml.
Change-Id: I76edd7aea5452e3487499f0b9ed9f767cf760194
|
|
Change-Id: I8fd77369cab201cd8ba2681398c23e81b186418f
|
|
Change-Id: Id42116f2ddfe679b1a995590e35a619ff8d82d7e
|
|
use functions already provided by icu-4.0
Change-Id: I238a499ae1bc2a7efeb4d61fbe780e24d7d36a7a
|
|
Change-Id: Ie70a38a1481a280760a435f4809020ed5a327627
|
|
Change-Id: I0499ad7de27b1539e97f01ab8aa0ef2d6713ae76
|
|
Simply make the service implement XExtendedTransliteration, since all
of the implementatins already do that.
Change-Id: If03bf56a8d33931ad0230743a4603e2ae9b104ac
|
|
Convert DOS -> unix newlines.
Cleanup and clarify several files.
|
|
Change-Id: Ibde3ac38e27e5abb42aa5d538762a3a5a7401f2b
Reviewed-on: https://gerrit.libreoffice.org/966
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
...in favor of existing new-style configuration::theDefaultProvider singleton.
Theoretically, ConfigurationProvider instances can be created with specific
Locale and EnableAsync arguments, but this is hardly used in practice, and thus
effectively all uses of the ConfigurationProvider service use the
theDefaultProvider instance, anyway.
theDefaultProvider is restricted to the XMultiServiceFactory interface, while
ConfigurationProvider also makes available XComponent. However, dispose must
not be called manually on theDefaultProvider singleton anyway, and calls to
add-/removeEventListener are so few (and in dubious code that should better be
cleaned up) that requiring an explicit queryInterface does not really hurt
there.
This commit originated as a patch by Noel Grandin to "Adapt
configuration::ConfigurationProvider UNO service to new style [by creating] a
merged XConfigurationProvider interface for this service to implement." It was
then modified by Stephan Bergmann by deprecating ConfigurationProvider instead
of adding XConfigurationProvider and by replacing calls to
ConfigurationProvider::create with calls to theDefaultProvider::get.
Change-Id: I9c16700afe0faff1ef6f20338a66bd7a9af990bd
|
|
Change-Id: I5b761341b1bfbd3462ab5ffa21608182584f757a
|
|
Change-Id: I7dfaa933d918023999bfe78a497da7dbd59f7fc1
|
|
\n\nAll of the code for the constant defining greek upper case page numbering is correct, but the UI dialog that represents that constant displayed lower case greek letters, and vice versa. So, the dialog should display the proper characters.
Change-Id: Ib8d0a41928796fbed5f36162c35d6e1db2463e07
Reviewed-on: https://gerrit.libreoffice.org/904
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
|
|
Change-Id: Ia8de5f1a619466e473f7a9586f53a38bdf9c2e51
|
|
Note that I found a pre-existing bug in linguistic/source/gciterator.cxx
but I was not able to fix it, because doing so appears to expose
bugs elsewhere!
Change-Id: I17fb9108d98a98d0ae13fe5a8e043d2db5b27a6a
|
|
Change-Id: I2e779831e47cb1243ae7319b73b9fa553cf97034
Reviewed-on: https://gerrit.libreoffice.org/852
Reviewed-by: Michael Meeks <michael.meeks@suse.com>
Tested-by: Michael Meeks <michael.meeks@suse.com>
|
|
Change-Id: Ic6c178153a64daf975af2495779b04b798a6381f
|
|
Change-Id: Ic0f55385c34bb253a1f452335ebcd3bba92ca9fa
|
|
Change-Id: Ie6793b6032ddfc44c5514e2e8c826590a924d177
|
|
...as lingucomponent GetOldStyleDics SYSTEM_DICTS code harmlessly triggers it
routinely with input containing _ and then fixing the input.
Change-Id: Id00857f0b89eb65ad155e8cf0883dd2f45851c7d
|
|
Change-Id: I2607e2cfcee151f4fda05f2eb47d860ac9d1079a
|
|
Change-Id: Id93dbccac2495491350c2cbcd7348d98f54a211a
|
|
The xml.sax.Parser service already existed, it just did not have
a new-style service to create it.
Change-Id: I6f145a7504ff9e149c802f723991954a2801cbc9
|
|
Change-Id: I6b6d62cda241250db89cdcabaa04952d36e1acfd
Reviewed-on: https://gerrit.libreoffice.org/720
Reviewed-by: Thorsten Behrens <tbehrens@suse.com>
Tested-by: Thorsten Behrens <tbehrens@suse.com>
|
|
Always link in gb_STDLIBS, except when the library explicitly opts out
with gb_LinkTarget_disable_standard_system_libs.
Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
|