summaryrefslogtreecommitdiffstats
path: root/helpcompiler
Commit message (Collapse)AuthorAgeFilesLines
* remove unnecessary use of OUString constructorNoel Grandin2013-11-111-3/+2
| | | | Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
* remove redundant calls to OUString constructorNoel Grandin2013-11-041-4/+3
| | | | | | | | | Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
* Remove unnecessary SyntaxHighlighter::Tokenizer statefulnessStephan Bergmann2013-10-281-1/+0
| | | | | | ...which reveals that SyntaxHighlighter::notifyChange does nothing, so remove it. Change-Id: I49834af29081ee703d9e62e182e3c1f8ce7e212e
* Fold SyntaxHighlighter::initialize into ctorStephan Bergmann2013-10-281-2/+2
| | | | | | ...which reveals that m_pKeyWords, m_nKeyWordCount members are unused. Change-Id: I55020e892d463f2e40d5bcf71efba92778b317c1
* Remove unused SimpleTokenizer_Impl::nLine/nColStephan Bergmann2013-10-281-2/+2
| | | | | | ...which are never read; remove thereby unused parameters from functions. Change-Id: I644d2dc1b2d13ae2f932d04243521eef97e67e3e
* Use conventional std::vector idiomsStephan Bergmann2013-10-221-5/+5
| | | | Change-Id: I4d26372ea40e7890b76461a764435f8948466ae1
* Unwind HighlightPortions typedefStephan Bergmann2013-10-221-1/+1
| | | | Change-Id: I0ecc15f9bfd557d0a70a05536906a4984a46463c
* remove last uses of config 'GUI' variableMatúš Kukan2013-06-201-5/+4
| | | | | | | Change-Id: I97188235f0b72b5b54423e05deeaf17c5c681048 Reviewed-on: https://gerrit.libreoffice.org/4188 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
* rename HAVE_CXX0X->HAVE_CXX11 and clean up to #define in a config headerLuboš Luňák2013-06-132-7/+3
| | | | Change-Id: Id13e77fe890301a8510952994a91853568a7aea6
* helpcompiler: remove Package_incMichael Stahl2013-05-0713-281/+14
| | | | Change-Id: Iddafa9068edcc20135c08ed205b8fb7fb5382eba
* Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks2013-04-3010-231/+40
|
* rename expat external to 'expat'David Tardon2013-04-093-3/+3
| | | | | | | expat_utf16 is long gone, so there is no need to fool around with expat_utf8. Change-Id: I0dd4a5c4d78805e98913e645cc83d2ab634bcb89
* HelpLinker: add comment for mysterious XML parsingMichael Stahl2013-04-081-0/+3
| | | | Change-Id: I9aa5fd2cb0cb4eae0a94f8d3d6b6185a1fcffdc4
* mass removal of rtl:: prefixes for O(U)String*Luboš Luňák2013-04-0712-111/+111
| | | | | | | | 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 Mac OS X for PowerPC supportTor Lillqvist2013-04-031-7/+0
| | | | Change-Id: I10b15141e6a5f93365e1cfa6fbc0c7cc3ea49b15
* automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold2013-03-191-7/+7
| | | | | | | | | | | 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-3/+0
|
* fdo#60148 Clean up warnings from the Clang compiler pluginnccuong2013-03-061-2/+1
| | | | | | | | Change-Id: I08d755677c46c476710ecbd067ed9f7e2f54a671 loplugin: clean warnings: unused variables, incorrect indentation and log area. Reviewed-on: https://gerrit.libreoffice.org/2544 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* remove all d.lstMichael Stahl2013-02-281-0/+0
| | | | Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
* do not create index for shared help moduleDavid Tardon2013-02-282-0/+7
| | | | Change-Id: I83f9b99abcc952dfea924662a0db8d98efc56307
* add opt -nolangroot needed for gbuildDavid Tardon2013-02-262-1/+7
| | | | Change-Id: Id76dfc5698619f8095e0c682ae4ce5e181c9a599
* avoid string substr/replace with invalid posDavid Tardon2013-02-261-3/+6
| | | | Change-Id: Iceb9851bcb5e6fe66efd701fcb31e16596fe8b5a
* Move SyntaxHighlighter class from svtools to comphelperAndras Timar2013-02-163-4/+3
| | | | | | | | We use this class in helpcompiler, and it is not desirable to compile svtools (thus half of LibreOffice) for a build tool in cross-compiling environment. Change-Id: I5e6bc3e576af41eb03c1420dd347c542306f69fa
* compact help xml files with xslt which removes the cruftAndras Timar2013-02-134-6/+41
| | | | Change-Id: Iee923174169d6ba9961a9cee14115c9a4bf7ba09
* add headers to new filesCaolán McNamara2013-02-132-0/+22
| | | | Change-Id: Iaa390e50ed3cfe2ba9770c446869158b758bc48d
* make building help not crashCaolán McNamara2013-02-131-7/+3
| | | | | | | a) subStr is not ours to delete, belongs to the OString b) and anyway subStr points to the buffer of the out-of-scope temporary OString Change-Id: I1689c6626c52ae9d94e0cfa5de4235be3c1f3262
* fdo#41737 syntax highlighting of Basic code examples in offline helpAndras Timar2013-02-134-57/+48
| | | | Change-Id: I7dc5b189e98a0351bac0eab28c1161b5893f5ef1
* WaE: warning C4101: 'ex' : unreferenced local variableAndras Timar2013-02-131-1/+1
| | | | Change-Id: I99a66ac3af8e391b5feaeafbb3abd63dcdd2bb2b
* Basic code syntaxhighlighting added to LibreOffice helpDávid Vastag2013-02-137-9/+359
| | | | Change-Id: Id47172d0386e7aa28d82178f04b5f626f0c441fe
* gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl2013-01-263-3/+3
| | | | Change-Id: I54d8923ad315e8041fd3904da3a29f1a7a8c8b16
* gbuild: do not copy boost headers aroundMichael Stahl2013-01-262-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
* Get rid of (most uses of) GUITor Lillqvist2012-12-251-0/+1
| | | | | | | | | | 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>
* re-base on ALv2 code. Includes:Michael Meeks2012-11-211-1/+1
| | | | | | | | | | | | | | | | | | | | | 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.
* helpcompiler: evidently does not care that it uses UTF16 expatMichael Stahl2012-11-151-1/+1
| | | | | | | ... seeing as there isn't actually a handler in the compileExtensionHelp function; possibly dead code there. Change-Id: I96b3edff6be2d58d0c1852eb1043547c33e97c3a
* loplugin: unused std::stringsCaolán McNamara2012-11-141-4/+0
| | | | Change-Id: I1b1bbed72cf3e54115ce1a10c31f80eb8e3bea28
* fix link errorPeter Foley2012-10-251-1/+1
| | | | Change-Id: Id643fc7bb16a4456dc6821efe44a8bc0e73d88f7
* re-base on ALv2 code. Includes:Michael Meeks2012-10-0210-252/+103
| | | | | | | | | | #i118662# remove berkeleyDB from module l10tools Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1213189 reportdesign: remove extra items from Help menu Patch contributed by Ariel Constenla-Haile http://svn.apache.org/viewvc?view=revision&revision=1201215
* fix system-clucene/-boost build with gcc 4.4Rene Engelhard2012-09-192-0/+9
| | | | Change-Id: I95d23e6728571b3f3a6421a05fec814f7c5d059c
* move help compiler/linker/indexer to a new moduleAndras Timar2012-09-1622-0/+2967
we may want to use syntax highlighter class from svtools later, which is not available for l10ntools Change-Id: I5a06b77cb6935e3ef68015fb608aa26ac7c53fac