summaryrefslogtreecommitdiff
path: root/xmlhelp
AgeCommit message (Collapse)AuthorFilesLines
2013-01-07'distrib' switch is unused in helpAndras Timar1-11/+0
Change-Id: I54539f75a682fa873684d07566207973cd1ead28
2013-01-07remove unused meta variablesAndras Timar1-3/+0
Change-Id: Iec9ad2da61668d00438462c38a135381e37ca668
2012-12-25Get rid of (most uses of) GUITor Lillqvist2-2/+2
GUI only takes values UNX or WNT, so it is fairly pointless. One can check whether OS is WNT or not instead. Change-Id: I78ae32c03536a496a563e5deeb0fca78aebf9c34 Reviewed-on: https://gerrit.libreoffice.org/1304 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
2012-12-12Remove xml2cmp leftoversStephan Bergmann1-113/+0
Change-Id: I7c0ba8b653b8e0534ae17bd879b93b75c6554893
2012-11-30fdo#46808, remove some more XMultiServiceFactory fieldsNoel Grandin5-24/+15
Change-Id: I8d039a933c9fde1a24b35954bb5a1f151e9aa160
2012-11-30fdo#46808, use service constructor for ucb::CachedDynamicResultSetStubFactoryNoel Grandin3-5/+5
Change-Id: Iea7b21621c5d341468976507684a9c01f0822034
2012-11-30Disambiguate for Visual Studio 2010Fridrich Štrba1-1/+1
Change-Id: I5251c0d04aef6b0f9d8e306a9b8ff9469521c3eb
2012-11-29keep indentation in Logo code examplesAndras Timar1-0/+9
Change-Id: Ife5aed42af9daeebba4d70899383d2bd0213aded
2012-11-28fdo#46808, use service constructor for i18n::CollatorNoel Grandin1-4/+2
Change-Id: If6ad17fa9e274beff7ba872a095ced65438962af
2012-11-21re-base on ALv2 code. Includes:Michael Meeks34-1147/+599
Patch contributed by Herbert Duerr: #i118662# remove berkeleyDB from module xmlhelp (author=orwitt) http://svn.apache.org/viewvc?view=revision&revision=1213188 #i119141# remove ISCII converter for now http://svn.apache.org/viewvc?view=revision&revision=1306246 make exceptions for cppunittester verbose http://svn.apache.org/viewvc?view=revision&revision=1174831 Patches contributed by Pedro Giffuni: Avoid some uses of non portable #!/bin/bash in shell scripts. http://svn.apache.org/viewvc?view=revision&revision=1235297 Patch contributed by Oliver-Rainer Wittmann 88652: applied patch, remove unicows deps http://svn.apache.org/viewvc?view=revision&revision=1177585 drop OS/2 code, remove in-line assembler ARM atomics, and obsolete armarch header.
2012-11-15fdo#46808, use service constructor for ucb::SimpleFileAccessNoel Grandin3-8/+8
I upgraded the service to return XSimpleFileAccess3, since it already implemented that interface, and it's backwards compatible. Change-Id: I40001a46048bd21a23b6a2f58a95376f06fc634b
2012-11-05fdo#46808, Adapt i18n::Transliteration UNO service to new styleNoel Grandin3-21/+16
Simply make the service implement XExtendedTransliteration, since all of the implementatins already do that. Change-Id: If03bf56a8d33931ad0230743a4603e2ae9b104ac
2012-11-05fdo#46808,remove unnecessary MSF field from ucbhelper::ContentIdentifierNoel Grandin6-18/+19
...which has lots of nice knock-on effects. Change-Id: Icc93fdb70f24903b08702654db4e1105eb1d438e
2012-11-05fdo#46808, use service constructor for ucb::PropertiesManagerNoel Grandin1-1/+2
Change-Id: Ib0c7375ac9f72647b10adcb2cea8a0f8e2fdcca0
2012-11-05fdo#46808, use service constructor for ucb::StoreNoel Grandin2-16/+11
Change-Id: I62719ef9d58215e287af3e1be52404993722ec67
2012-10-31fdo#46808, Deprecate configuration::ConfigurationProvider old-style serviceNoel Grandin4-30/+22
...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
2012-10-28fix some VS 2010 specific issuesDavid Ostrovsky1-4/+4
Change-Id: Iae27a96c1e2ed72d2744fcbe100d6ada7dc41c82 Reviewed-on: https://gerrit.libreoffice.org/914 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2012-10-24fdo#46808, Adapt awt::Toolkit UNO service to new styleNoel Grandin1-16/+10
Create a merged XToolkit2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Also mark sub-interfaces as non-optional. Change-Id: I278d0288e92be277033013302267cf93f7d70480
2012-10-23fdo#46808, use service constructor for uri::UriReferenceFactoryNoel Grandin2-27/+4
Change-Id: I4e72bf5880fa28cb96d93ede7730a63220af7fa6
2012-10-04sal_Bool->bool in xmlhelpNoel Grandin2-3/+3
Change-Id: I509cf60e4bbbe7dfb25a3943d97c9d35a22e0bb6
2012-10-01Replace usage of rtl_*Memory with equivalent from string.hArnaud Versini2-3/+2
Change-Id: I50ffc10f007f03c3252ef0196b59b881429cc159 Reviewed-on: https://gerrit.libreoffice.org/734 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-29Use comphelper::getComponentContextStephan Bergmann3-47/+9
...and some further clean up. Change-Id: Id294c0f38fe0041646fc86cacbd2e19734c746a9
2012-09-26remove unused fieldsNoel Grandin1-4/+1
Change-Id: Ia2b2fd7623351377df9a0c76ad27cb6b738bc124
2012-09-19fix system-clucene/-boost build with gcc 4.4Rene Engelhard3-0/+12
Change-Id: I95d23e6728571b3f3a6421a05fec814f7c5d059c
2012-09-18deprecate oustringostreaminserter.hxxNorbert Thiebaud1-1/+1
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>
2012-09-16move help compiler/linker/indexer to a new moduleAndras Timar3-3/+3
we may want to use syntax highlighter class from svtools later, which is not available for l10ntools Change-Id: I5a06b77cb6935e3ef68015fb608aa26ac7c53fac
2012-09-16Remove useless variableJulien Nabet1-3/+1
Change-Id: Id554c4aba878b329351b2c61e0e90d4515debd6a
2012-09-13enable indentation of Basic source code in help fdo#41737Andras Timar1-0/+9
Change-Id: I63308cb7cbe21cb28082c815b53a3cbf286fe3ab
2012-09-05kill RTL_CONSTASCII_USTRINGPARAM in xmlhelpOlivier Hallot10-122/+94
+ ::rtl:: drop (only on rebased files) Change-Id: I5a773936ceb012b0655cee8db7250b496e088464 Reviewed-on: https://gerrit.libreoffice.org/525 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
2012-09-05add superscript and subscript support to enable removing odd 1^st constructCaolán McNamara2-0/+26
so we can get rid of the confusing 1^st help text suggestion Change-Id: I38fea2c15f6764bd64aaebe2a41935149f62b9c5
2012-08-24Related: fdo#53337 Maybe this is a typeinfo visibility problemCaolán McNamara1-0/+6
Change-Id: I024de5b400d0f7a443d4cce7bfe4e88841e6049b
2012-08-22more old module-description xml filesMatúš Kukan2-6/+6
Change-Id: I9ac503b073ee3f9b8e7958264ffcc26d9446c220
2012-08-22do not deliver these module-description xml filesMatúš Kukan1-2/+0
Change-Id: Ife2f42b3a917ece10dc7ee9fcd83f1558084c4f1 Reviewed-on: https://gerrit.libreoffice.org/454 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2012-08-22embed extension's help tree into main help treeBence Babati2-7/+80
Change-Id: Iddb3c542f50078b13c7d420b528aa704a5cb0767
2012-08-14-Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann10-52/+7
Change-Id: I40354853ad44024c342babd3b706ce305a059ff4
2012-08-09reduce static_initialization_and_destruction chainCaolán McNamara1-18/+13
Change-Id: I9fdefd428b858fd5581412d6f8e896a0eb680fef
2012-07-29Replace usage of rtl/memory.h in xmlhelp with their equivalent from string.hArnaud Versini4-15/+13
Change-Id: I02a1af9bac1e1283f33bc204cd8737ebd2ebd06c
2012-07-12XML_Parse returns enum XML_StatusMichael Stahl1-3/+3
Change-Id: Ie4dde5aa412dae05d2629ce5675356db70b2529b
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks2-8/+2
2012-06-27Remove unused include filesThomas Arnhold2-108/+0
Those never get included at any point in the code. Change-Id: I17736e005635b9e57759cfc95176a99e7c5e8988
2012-06-25reduce static_initialization_and_destruction chainCaolán McNamara1-4/+2
Change-Id: I0c1b2f2d908c31d1510662880c13504d81445a6a
2012-06-25Remove various commented out definesThomas Arnhold1-1/+0
Most of them in hrc files. Change-Id: I3944f6ed9befd2b498385f61b851790362221a4f
2012-06-21re-base on ALv2 code.Michael Meeks18-411/+274
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-18removed unused forward declarations of classTakeshi Abe3-9/+0
Change-Id: I32894b853912741e935e2409d2857fe384f67665
2012-06-09Remove superfluous empty lines on topThomas Arnhold1-2/+0
More than two lines are removed for readability. Change-Id: Ibff6cf68d7c512e240a54065b54a225bb23a782b
2012-06-06fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin5-29/+14
Update calls to factories to use new SimpleFileAccess::create method Change-Id: Ie5b0696fe2228a9033b19969245a53c21a61aa14 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-01Targeted string re-work xmlhelp/xmlscriptThorsten Behrens10-186/+186
2012-05-30Re-enable sort in help-filesNiklas Johansson1-6/+0
Sorting in helpfiles were disabled due to bug #i70462#. I belive this bug isn't valid any more and we should re-activate the sorting.
2012-05-16reduce static_initialization_and_destruction chainCaolán McNamara1-2/+3
Change-Id: I962aeac0c7feeabb7963016d5afcfeca5a48ccfe
2012-05-08work around spurious signed overflow warningsMichael Stahl1-1/+2
gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC): /rtl/ustring.hxx:1293:233: error: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Werror=strict-overflow]