summaryrefslogtreecommitdiffstats
path: root/sax
Commit message (Collapse)AuthorAgeFilesLines
* sax: no matching function for call to 'max(int, sal_Int32&)'Ivan Timofeev2012-03-121-1/+1
|
* sax: replace Min/Max macros with std::maxMichael Stahl2012-03-122-7/+5
|
* sax: move xml2utf.cxx to libsax to prevent duplicate linkage warningsMichael Stahl2012-03-124-13/+8
|
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-103-3/+3
|
* Avoid temporary rtl::OUStringJulien Nabet2012-03-031-2/+2
|
* sax: ConverterTest: add leap year testsMichael Stahl2012-02-291-0/+6
|
* Correctly calculate leap year.Kohei Yoshida2012-02-291-1/+1
| | | | | | | | | | | With the old code, year 2000 would not be a leap year, but it actually is. With this, Calc correctly loads cell with date value of 2000-2-29. (regression from CWS sw33bf02 8786083eb9dabb0d7b328a217ba99a1d71493ad7) Signed-off-by: Stephan Bergmann <sbergman@redhat.com> Signed-off-by: Eike Rathke <erack@redhat.com> Signed-off-by: Michael Stahl <mstahl@redhat.com>
* sax: this CalcXMLLen() was commented out since 2001Miklos Vajna2012-02-291-48/+0
|
* Avoid temporary rtl::OUStringJulien Nabet2012-02-261-2/+1
|
* Reduce verbiage slightlyTor Lillqvist2012-02-161-1/+3
|
* Use the same simple lo_main() on iOS as on AndroidTor Lillqvist2012-02-162-70/+0
| | | | | | | | | | | | | Let's do the iOS specific stuff in separate main() source file(s). Don't attempt to build complete iOS programs using normal LibreOffice mechanisms, it will work for only the very lowest level unit tests anyway, because of static linking and the circularish UNO/URE/bootstrap/whatnot (run-time) dependencies between different parts of the code. We thus can't build the various iOS-specific *_cppunittester_all unit test executables any more. Corresponding unit tests (and more complex ones) for iOS will have to be done in a different way.
* Removed unused codeAlexander Bergmann2012-02-102-88/+0
|
* Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe2012-02-101-6/+6
|
* update unused listCaolán McNamara2012-02-082-18/+0
|
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-214-28/+35
| | | | | | | | | SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
* remove unimplemented methods from headersCaolán McNamara2012-01-161-5/+0
|
* Removing unused codeAlexander Bergmann2012-01-161-48/+0
|
* cleanup: remove unused prototype tooMichael Meeks2012-01-161-1/+0
|
* sax_fastparser::FastSerializerHelper::write(float)Alexander Bergmann2012-01-161-5/+0
|
* Fix for fdo43460 Part XXIX getLength() to isEmpty()Olivier Hallot2012-01-056-11/+11
| | | | | | Part XXIX Modules sax, scaddins, sccomp, scripting
* callcatcher: drop some unused methodsCaolán McNamara2012-01-052-27/+0
|
* sax: this had to be accidentally added when mergingMatúš Kukan2012-01-041-2/+0
|
* catch exception by constant referenceTakeshi Abe2011-12-241-10/+10
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* we are W3C XMLSchema here, not ISO 8601Eike Rathke2011-12-012-11/+4
|
* handle dates with year < 1000Eike Rathke2011-11-302-6/+22
| | | | | | | * Read dates with years consisting of less than 4 digits. ISO 8601 specifies that years are to be written with a minimum of 4 digits. However, be lenient in what we accept. * Write years < 1000 with leading zeros to comply with ISO 8601 YYYY.
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* fix conversions from cmRadek Doulik2011-11-281-7/+5
|
* added conversion from MeasureUnit::CMRadek Doulik2011-11-281-0/+43
|
* make gbuild makefiles run independant of pwd againBjoern Michaelsen2011-11-251-2/+2
|
* empty a bunch of d.lst filesMichael Stahl2011-11-212-2/+1
|
* tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud2011-11-161-4/+4
| | | | | This allow to run make in a module wihtout the need to source Env.Host.sh.
* Fix overflow in smoketest, promotion from sal_Int32 to sal_Int64 doesn't ↵Caolán McNamara2011-10-151-2/+3
| | | | happen before assign
* #i108468#: clean up xmluconv code duplication, measured approach:Michael Stahl2011-10-111-61/+21
| | | | | | | | | | | | | modify sax::Converter::convertMeasure to use sal_Int64 instead of BigInt: should be sufficient, since the largest number is SAL_INT32_MAX * 10^7. remove duplicate methods from SvXMLUnitConverter: convertMeasurePx, convertMeasure (static variants) remove entirely duplicative class SvXMLExportHelper: GetConversionFactor, GetUnitFromString, AddLength change SvXMLUnitConverter interface from MapUnit to css::util::MeasureUnit. change SvXMLExport constructor params from MapUnit to css::util::MeasureUnit. rename some methods to turn compiler into merge conflict detector :)
* #i108468#: clean up xmluconv code duplication, DateTime edition:Michael Stahl2011-10-112-1/+191
| | | | | | | | remove duplicate methods from SvXMLUnitConverter: convertTime (all variants), convertDateTime (DateTime variants), convertTimeDuration. move convertAny from SvXMLUnitConverter to sax::converter.
* #i108468#: clean up xmluconv code duplication, part 1:Michael Stahl2011-10-112-4/+35
| | | | | | | | | move convertNumber64 from SvXMLUnitConverter to sax::converter. remove duplicate methods from SvXMLUnitConverter: convertBool, convertPercent, convertColor, convertNumber, convertDouble, indexOfComma, encodeBase64, decodeBase64, decodeBase64SomeChars, clearUndefinedChars
* partially revert 849a713ffd29a58ae79e48f80835c28bbd9d5a72Michael Stahl2011-10-111-0/+187
|
* simplfy dmake to gbuild bridgefileBjoern Michaelsen2011-10-051-40/+1
|
* WaE: conversion from 'unsigned int' to 'sal_Int16', possible loss of dataTor Lillqvist2011-10-031-1/+1
|
* Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann2011-09-273-23/+21
|
* OSL_TRACE: Remove trailing newlinesThomas Arnhold2011-09-211-4/+4
| | | | | | | Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
* Removed leftover makefile.mk after gbuildization.Stephan Bergmann2011-09-161-77/+0
|
* sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵Stephan Bergmann2011-09-122-1/+4
| | | | | | out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx.
* sb140: #i117694# some CppUnit related cleanupStephan Bergmann2011-09-122-35/+2
|
* catch by const referenceCaolán McNamara2011-08-311-13/+12
|
* detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud2011-08-191-1/+1
|
* add more component prefixesMatúš Kukan2011-08-174-4/+4
|
* catch by const referenceCaolán McNamara2011-08-161-2/+2
|