summaryrefslogtreecommitdiff
path: root/i18npool
AgeCommit message (Collapse)AuthorFilesLines
2011-11-11Make .component files directly usable within UNO_SERVICES.Stephan Bergmann3-38/+2
* solenv/bin/createcomponent.xslt simply surrounds it output by <components>. * solenv/gbuild/CppunitTest.mk got new functions gb_CppunitTest_add[_old]_component[s] (like their gb_RdbTarget_ predecessors). * This obsoleted current uses of solenv/gbuild/RdbTarget.mk, which also does not work currently, as it catenates the input component files instead of passing them through packcomponents.xslt (which now takes care about the surrounding <components> in the input). In the future, it will likely be combined with the recently added solenv/gbuild/ComponentsTarget.mk.
2011-11-10New LO_{LIB,JAVA}_DIR make special inbuild component handling superfluous.Stephan Bergmann1-3/+3
2011-11-03Follow UAX-29 and present user-perceived character countsCaolán McNamara1-0/+18
Not a count of code-units, nor a count of code-points, but try and follow http://unicode.org/reports/tr29/ and present the grapheme count. Add a few representative tests to try and avoid gotchas.
2011-10-23no need for SRCDIR parameter hereMatúš Kukan1-5/+5
2011-10-21expose an API to map from UScriptCode to i18n::ScriptTypeCaolán McNamara1-55/+2
2011-10-10add Pali language (Latin script) - fdo#41599Andras Timar2-0/+2
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen1-40/+1
2011-10-04adapt i18npool unittests to separate RdbTarget makefile requirementBjoern Michaelsen3-6/+36
2011-10-04Fix typo (SYSTEM_GENCODE, instead of SYSTEM_GENCCODE).Jan Holesovsky1-1/+1
2011-10-04WaE: possible loss of data, assignment within conditional expressionTor Lillqvist1-4/+4
2011-10-03Fix the build / host confusion around icu tools.Jan Holesovsky1-8/+14
2011-10-03WaE: suggest braces around empty body in an 'else' statementDavid Tardon1-0/+2
2011-09-28split 'test' into 'unotest' and 'test' to help dependenciesMichael Meeks2-7/+4
2011-09-28disable use of test's unoexceptionprotector for now, to break dep loopMichael Meeks2-4/+7
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann3-4/+4
2011-09-17add KeyID option to Language dropdown boxAndras Timar2-0/+2
2011-09-16Added dependency on test so that unoexceptionprotector works in i18npool ↵Stephan Bergmann2-1/+5
after all. Sorry for the noise...
2011-09-16Removed unoexceptionprotector stuff from last commit again; appears not to ↵Stephan Bergmann1-4/+0
work here.
2011-09-16Removed leftover makefile.mk after gbuildization.Stephan Bergmann1-119/+0
2011-09-16Simplified setting headless mode for smoke-/subsequenttetss.Stephan Bergmann1-2/+1
Both C++ and Java OfficeConnection code now always pass --headless, so no need for SAL_USE_VCLPLUGIN=svp etc. any more. Only some C++ unit tests that link against vcl still need an explicit --headless.
2011-09-12sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵Stephan Bergmann2-4/+9
out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx.
2011-09-07Get the file: URIs rightTor Lillqvist1-11/+8
2011-09-06changed Time100SecSeparator to be identical to DecimalSeparatorEike Rathke1-3/+3
2011-09-04fix an_ES locale data detailsEike Rathke1-4/+4
compiling an_ES.xml gave: Warning: Time100SecSeparator is different from DecimalSeparator, this may be correct or not. Intended? Warning: Don't forget to adapt corresponding FormatCode elements when changing separators. Warning: QuotationStart may be wrong: U+201C “ Warning: QuotationEnd may be wrong: U+201D ” Warning: DoubleQuotationStart may be wrong: U+2018 ‘ Warning: DoubleQuotationEnd may be wrong: U+2019 ’ * Exchanged Quotation(Start|End) and DoubleQuotation(Start|End) Not sure about the use of '.' Time100SecSeparator whereas DecimalSeparator is ','
2011-09-04an_ES indentationEike Rathke1-353/+353
2011-09-03add an_ES (Aragonese) locale dataAndras Timar5-0/+362
2011-09-02move to comphelper, and renameCaolán McNamara13-29/+23
2011-09-01refactor x_rtl_uString_new_WithLength to be consistentCaolán McNamara11-26/+27
i.e. change x_rtl_uString_new_WithLength to always create a rtl_uString with ref count of 1, like rtl_uString_new_WithLength, so requiring: either the explicit use of rtl_uString_release or passing ownership to an OUString via OUString(pStr, SAL_NO_ACQUIRE) which will do the same in its dtor
2011-09-01these don't actually take ownership, just copy and leak originalCaolán McNamara3-40/+56
2011-08-29Make it compile with MSVCTor Lillqvist1-48/+46
2011-08-29use SAL_N_ELEMENTS for table sizeDavid Tardon1-21/+21
2011-08-28Add numbering type in persian word.Mohammad Elahi1-0/+121
Numbering in localized persian word is useful in some areas, at least for me it is necessary. Since it is not trivial a function and table is needed.
2011-08-28Add numbering type of arabic abjad sequenceMohammad Elahi1-0/+11
A localized numbering type base on arabic abjad sequence is added base on a table.
2011-08-23Make it actually link by adding more librariesTor Lillqvist1-0/+12
2011-08-23Make it compileTor Lillqvist2-1/+13
2011-08-23Fix cross-compilationTor Lillqvist1-2/+2
2011-08-21Further attempt to make this test run on iOSTor Lillqvist1-2/+18
2011-08-21check array index *before* using it in array, not *after*Lionel Elie Mamane1-1/+1
2011-08-19detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud1-1/+1
2011-08-19missed this errno.hCaolán McNamara1-0/+1
2011-08-19add errno.h for errnoCaolán McNamara3-0/+3
2011-08-19Use cygpath -m on Windows where necessaryTor Lillqvist2-2/+2
We can't pass Cygwin pathnames to non-Cygwin programs.
2011-08-19Improve input and output file open error handlingTor Lillqvist4-17/+18
Tell file name and actual error in error message. Print error message to stderr. Always exit with failure when not able to open an input or output file.
2011-08-19The shorter icu library names are used for WNTMSC onlyTor Lillqvist2-2/+2
2011-08-19another oneCaolán McNamara1-0/+5
2011-08-19get localedata to build under windows, lib vs binCaolán McNamara1-0/+11
2011-08-19inch closer to windows buildingCaolán McNamara2-0/+8
2011-08-19Fix i18npool build on Windows.Jan Holesovsky4-1/+24
2011-08-18Need to use cygpath on WindowsTor Lillqvist1-1/+4
2011-08-18use of ure thing in test probably needs this dependCaolán McNamara1-1/+1