Internationalisation (i18npool) framework ensures that the suite is adaptable to the requirements of different native languages, their local settings and customs, etc without source code modification. (Wow, that is such marketing-speak...) Specifically for locale data documentation please see i18npool/source/localedata/data/locale.dtd See also [http://wiki.documentfoundation.org/Category:I18n] On iOS we put the largest data generated here, the dict_ja and dict_zh stuff, into separate files and not into code to keep the size of an app binary down. Temporary test code: static bool beenhere = false; if (!beenhere) { beenhere = true; uno::Reference< uno::XComponentContext > xComponentContext(::cppu::defaultBootstrap_InitialComponentContext()); uno::Reference< lang::XMultiComponentFactory > xMultiComponentFactoryClient( xComponentContext->getServiceManager() ); uno::Reference< uno::XInterface > xInterface = xMultiComponentFactoryClient->createInstanceWithContext( "com.sun.star.i18n.BreakIterator_ja", xComponentContext ); } 4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/pyuno
AgeCommit message (Expand)Author
2014-08-07coverity#982756 Dereference null return valueCaolán McNamara
2014-07-21coverity#706600 Uncaught exceptionCaolán McNamara
2014-07-10coverity#982756 Dereference null return valueCaolán McNamara
2014-06-05various: remove SAL_THROW macroNoel Grandin
2014-06-04Demystify magic poniesStephan Bergmann
2014-06-03coverity#982753 Dereference null return valueCaolán McNamara
2014-06-03coverity#982755 Dereference null return valueCaolán McNamara
2014-06-03coverity#982756 Dereference null return valueCaolán McNamara
2014-05-26coverity#982751 Dereference null return valueCaolán McNamara
2014-05-26coverity#982752 Dereference null return valueCaolán McNamara
2014-05-26coverity#982754 Dereference null return valueCaolán McNamara
2014-05-26coverity#982757 Dereference null return valueCaolán McNamara
2014-05-26coverity#982758 Dereference null return valueCaolán McNamara
2014-05-26coverity#982761 Dereference null return valueCaolán McNamara
2014-05-26coverity#982759 Dereference null return valueCaolán McNamara
2014-05-26coverity#982760 Dereference null return valueCaolán McNamara
2014-05-26coverity#982169 Unchecked return valueCaolán McNamara
2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet
2014-05-23remove boilerplate in UNO Exception constructor callsNoel Grandin
2014-05-19pyuno: fix warnings with system python 3.4.0Thomas Arnhold
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold
2014-05-08pyuno: sal_Bool->boolNoel Grandin
2014-04-25disable pytest_ssl on macNorbert Thiebaud
2014-04-24as suspectedCaolán McNamara
2014-04-24test for _sslCaolán McNamara
2014-04-18this test apparently does not need pyunoDavid Tardon
2014-04-18Revert "python depend only working under windows so"David Tardon
2014-04-18python depend only working under windows soCaolán McNamara
2014-04-18test for enabled python is already handled by PythonTestDavid Tardon
2014-04-18move pyuno ssl test back to check targetsDavid Tardon
2014-04-18sigh, unclear how to make python tests depend on pythonCaolán McNamara
2014-04-18tweak the other oneCaolán McNamara
2014-04-18wait until a bit later to run the import ssl testCaolán McNamara
2014-04-18add an import ssl testCaolán McNamara
2014-04-02coverity#1019376 Resource leakCaolán McNamara
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann