summaryrefslogtreecommitdiffstats
path: root/xmlreader
Commit message (Collapse)AuthorAgeFilesLines
* re-base on ALv2 code.Michael Meeks2013-04-222-27/+20
|
* mass removal of rtl:: prefixes for O(U)String*Luboš Luňák2013-04-075-43/+42
| | | | | | | | Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
* remove HAVE_SFINAE_ANONYMOUS_BROKENLuboš Luňák2013-04-041-2/+0
| | | | | | | Since we no longer support the old Apple SDK using gcc-4.0.1, we can remove the cruft to work around its problems. Woohoo. Change-Id: Idf275e76449443f1f0314e75dab993f213a77eb7
* use #if instead of #ifdef for testing config_xxx.hxx macrosLuboš Luňák2013-03-201-1/+1
| | | | | | http://lists.freedesktop.org/archives/libreoffice/2013-March/047769.html Change-Id: I81ed4500878ff3193e028410a1f0205e28d17fc3
* automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold2013-03-192-36/+22
| | | | | | | | | | | Done with a perl regex: s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec Reviewed-on: https://gerrit.libreoffice.org/2832 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* remove legacy build.pl prj/build.lst files.Michael Meeks2013-03-141-2/+0
|
* remove all d.lstMichael Stahl2013-02-281-0/+0
| | | | Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
* xmlreader does not depend on any offapi .idl filesStephan Bergmann2013-02-251-1/+1
| | | | Change-Id: I5f008ba23c7f55a53d2b39cb235b27208b7743c5
* I want HAVE_SFINAE_ANONYMOUS_BROKEN here rather than RTL_FAST_STRINGCaolán McNamara2013-02-191-2/+2
| | | | Change-Id: Ie5cd55aa7ba4773f3cffbed924467787596dfc9d
* reuse the ConstCharArrayDetector in SpanCaolán McNamara2013-02-191-1/+15
| | | | Change-Id: I33bc390aaa8f6e3cc2505632670970038140eb3c
* add equals(OString const &text) to SpanChr. Rossmanith2013-02-191-0/+5
| | | | | | | | | useful when removing RTL_CONST_STRINGPARAM Change-Id: Ic131876a3fb38e69185342c4c7a46d536d60c8e5 Reviewed-on: https://gerrit.libreoffice.org/2256 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* gbuild: do not copy boost headers aroundMichael Stahl2013-01-261-0/+2
| | | | | | | | | - do not use gb_UnpackedTarball_copy_header_files for boost - adapt the optimization in concat-deps.c for new path - use boost_headers in all LinkTargets that require it - add explicit include paths to mysqlc, mysqlcppconn, libvisio, liborcus Change-Id: I0c43e73ed43cc9d2e6bce8faf55e992d655a0bb9
* Replaced O[U]String::valueOf( static_cast<> ) with O[U]String::number()Jean-Noël Rouvignac2013-01-211-2/+2
| | | | | | | Change-Id: I2f11f2f15a652a9edc3c7e5b67c854debeed20de Reviewed-on: https://gerrit.libreoffice.org/1784 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
* c++ API: use css alias in generated headers, adds global css declThorsten Behrens2012-11-302-8/+0
| | | | | | | | | | | | This changes all generated API headers (.hpp and .hdl) to use a namespace alias 'css' instead of the pointlessly long com::sun::star Makes the change in cppumaker & associated tools, adds a global namespace alias definition in sal/types.h, and removes a kiloton of local, now pointless-to-harmful versions of that alias from all over the code. Change-Id: Ice5a644a6b971a981f01dc0589d48f5add31cc0f
* remove xmlreader from string now I don't need it anymoreCaolán McNamara2012-10-272-27/+2
| | | | Change-Id: I8d280a5fa352bf4514a5e593b34be767648f4e64
* allow XmlReader to parse a stringCaolán McNamara2012-10-172-2/+27
| | | | Change-Id: I3433e6f3766c1ea54ad53896c4e4d142d1e319a5
* gbuild: invert handling of standard system libraries:Michael Stahl2012-09-281-2/+0
| | | | | | | Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
* gbuild: replace direct gb_STDLIBS use with ...Michael Stahl2012-09-281-1/+2
| | | | | | ... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
* gbuild: split uwinapi out of gb_STDLIBSMichael Stahl2012-09-281-0/+1
| | | | Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
* deprecate oustringostreaminserter.hxxNorbert Thiebaud2012-09-181-1/+0
| | | | | | | | | | | | | | | | | | | the intent of this header has canged over time. now it is already systematically included with ustring.hxx and the operator overload it provide fit nicely there... Just to be safe, since that include as been added to the api during the 3.5 timeframe and therefore is already in 'production' the header remain and simply attempt to include ustring.hxx but a warning is issued indicating that this header should not be used anymore... in a couple of major release we will thenr emove it completely All internal users of that header are converted. Change-Id: I8934c55f089e29d78c0f5649b7c87b2ecf024bad Reviewed-on: https://gerrit.libreoffice.org/634 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
* targetted improvement of UNO API includes / usageMichael Meeks2012-07-021-4/+1
|
* re-base on ALv2 code.Michael Meeks2012-06-263-78/+51
|
* re-base on ALv2 code.Michael Meeks2012-06-214-104/+68
| | | | Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
* calling nextAttribute before first tag uses uninited variablesCaolán McNamara2012-06-081-0/+1
| | | | | | (cherry picked from commit c5818e929c7b608ccc3277f1204b491e426925de) Signed-off-by: Caolán McNamara <caolanm@redhat.com>
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
* Improved error reportingStephan Bergmann2012-04-181-5/+5
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-081-2/+2
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* minor documentation tweaksMichael Meeks2012-03-091-0/+7
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Better exception message.Stephan Bergmann2012-01-261-3/+6
|
* Temporary hack around cppu_detail_getCppuType variants violating ODR.Stephan Bergmann2012-01-021-0/+2
| | | | | | | | | Which causes cppuhelper to pick wrong variant from other library, now that its own symbols are no longer reduced to private on Mac OS X. As a temporary hack, emit cppu_detail_getCppuType for the relevant types always as fully comprehensive; should be revisited when improving types.rdb format (routinely generating C++ information for certain UNO types into a dedicated library?). Requires a fix to xmlreader and a fix to forms that looks like a Mac OS X GCC bug.
* osl_unmapFile can't work for files bundled inside the .apk on AndroidTor Lillqvist2011-12-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Android, when an app is installed, arbitrary files bundled in the app won't be unpacked into actual separate files in the file system. They will exist only as archive entries in the .apk file (which is a zip archive). The SDK tooling puts such files under the /assets folder in the .apk. The LibreOffice bootstrapping code for Android maps the .apk file into memory. osl_openFile() knows about the /assets special case, and uses a separate abstraction for such memory-mapped files. Obviously, when producing an .apk, one needs to make sure these bundled files are not compressed, if one wants to be able to use them directly from the memory-mapped .apk file. We do that in our test and sample Android projects. When mapping such files under /assets , just return a pointer to the file's location inside the mapped .apk archive. We can't use the old osl_unmapFile() on such mapped files, as that would unexpectedly unmap fairly arbitrary pages of the .apk mapping, wreaking havoc on later use of the same pages. So, introduce a new osl_unmapMappedFile() function that takes also the oslFileHandle originally passed to osl_mapFile(). Use this instead in the few places where the code actually called osl_unmapFile(). Make sure osl_mapFile() is nonexistent on Android.
* Code modules no longer depend on stlport.Stephan Bergmann2011-12-161-1/+1
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* Adapted to new assertion/logging mechanisms.Stephan Bergmann2011-11-293-19/+31
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* make gbuild makefiles run independant of pwd againBjoern Michaelsen2011-11-251-2/+2
|
* empty a bunch of d.lst filesMichael Stahl2011-11-211-1/+0
|
* 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.
* simplfy dmake to gbuild bridgefileBjoern Michaelsen2011-10-051-40/+1
|
* add mode-lines to .m files and last round of merged files, etc.Caolán McNamara2011-09-307-0/+21
|
* detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud2011-08-191-1/+1
|
* prefer makefile-gmake-mode to plain makefile-modeTakeshi Abe2011-08-103-3/+3
|
* Emacs modeline compatible with vim's oneTakeshi Abe2011-08-051-0/+1
|
* Add consistent Emacs and vim mode linesTor Lillqvist2011-07-303-0/+3
|
* postmerge fixes for gnumake4Bjoern Michaelsen2011-07-221-6/+5
|
* resyncing to masterBjoern Michaelsen2011-07-212-1/+2
|\
| * MinGW fixupTor Lillqvist2011-06-212-0/+5
| | | | | | | | Don't use any i prefix for import library, and deliver it.
| * ause130: #i117218# change .idl handling to gnu makeHans-Joachim Lankenau2011-06-181-1/+1
| |