summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml
AgeCommit message (Collapse)AuthorFilesLines
2012-11-27String=>OUString in svl's inettype and fall-outNorbert Thiebaud1-8/+5
Change-Id: I7d64d117183738b86d1869ed629d73675de9c679
2012-11-22AllSettings with LanguageTagEike Rathke1-1/+1
Change-Id: I710ae66e51139662eb442b681fdf9cc9d158551d
2012-11-19re-base on ALv2 code. Includes:Michael Meeks4-93/+56
Patch contributed by: Jurgen Schmidt remove onlineregistration with dependencies http://svn.apache.org/viewvc?view=revision&revision=1240245 imported patch package_eventlistener.patch http://svn.apache.org/viewvc?view=revision&revision=1172103 Patch contributed by Pedro Giffuni Accept Google Chrome OS fonts as equivalent to MS fonts. http://svn.apache.org/viewvc?view=revision&revision=1233155 http://svn.apache.org/viewvc?view=revision&revision=1233408 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i114600#: remove forbidden characters from list of unencoded characters http://svn.apache.org/viewvc?view=revision&revision=1172370 Patches contributed by Oliver Rainer-Wittman some clean up in JPEGReader due to memory constraints http://svn.apache.org/viewvc?view=revision&revision=1299729 119114 - method <UpdateDialog::addSpecificError(..)> - create entry with correct type http://svn.apache.org/viewvc?view=revision&revision=1305265 Patches contributed by Ariel Constenla-Haile i118707 - make toolbar control's popup window grab focus http://svn.apache.org/viewvc?view=revision&revision=1225846 Patches contributed by Herbert Duerr #i118662# remove usage of BerkeleyDB in desktop module http://svn.apache.org/viewvc?view=revision&revision=1213171 minor cleanups in dp_persmap.* http://svn.apache.org/viewvc?view=revision&revision=1215064 flush early to prevent problem with extension manager not cleaning up its objects http://svn.apache.org/viewvc?view=revision&revision=1228147 i118726 do not flush *pmap file while reading it http://svn.apache.org/viewvc?view=revision&revision=1230614 #i119048# migrate BDB extension entries using a simple heuristic http://svn.apache.org/viewvc?view=revision&revision=1300972 #i119048# handle edge cases when importing BDB hash files http://svn.apache.org/viewvc?view=revision&revision=1301428 #i119113# fix of-by-one when importing BDB files http://svn.apache.org/viewvc?view=revision&revision=1305420 restore our encryption settings, icon themes, and dictionaries. removed wrapper hacks, kill obsolete bundled extension blob / pre-registration handling, remove duplicated quickstart code. remove OS/2 conditionals.
2012-11-02Fix bug 50931 : Cannot import HTML <br/> and <hr/>Louis Possoz1-1/+1
Change-Id: Ia4932c2e1f451ae45675a32de42a5cf971224211 Reviewed-on: https://gerrit.libreoffice.org/915 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2012-10-12mark lcl_ functions static or rename them if they are not local at allLuboš Luňák1-3/+3
http://lists.freedesktop.org/archives/libreoffice/2012-October/039639.html Change-Id: I37b2c7b7acd31437f4be74b0163f4dac2279655b
2012-08-29String::Expand -> string::padToLengthCaolán McNamara1-3/+7
Change-Id: I684e371c31ba76d2e9b563eed70449764346161b
2012-06-19death to some UniStringsCaolán McNamara1-6/+4
Change-Id: I0fa0c60e12c418d25f8bd96cc04c6abd74b1a608
2012-06-19remove some UniString ctorsCaolán McNamara1-1/+1
Change-Id: Ic2e712f4447b733b79d980e178d9d6d9d8bf0e40
2012-06-11remove EraseLeadingChars and EraseTrailingCharsCaolán McNamara1-4/+2
Change-Id: Ib9797fe97cd008cc6508ce8cec47dc5373416892
2012-05-20Some cppcheck cleaningJulien Nabet1-2/+1
Change-Id: Ic30cdeffabec1eb1a6c153ac450a3d28064ef534
2012-05-11removed unused static dataTakeshi Abe1-1/+0
Change-Id: I76d0aaaee472e1ce114b98c22a7e8e570d5f45c5
2012-05-09remove comment, it'll only confuse mattersCaolán McNamara1-6/+1
Change-Id: I3268dd37834b4a2ece084e4d0843e7c38cc39c83
2012-05-09Incorrect character written out when saved in HTML formatGordon Lack1-2/+7
Change-Id: I0ac19bf724be64004aeaecad67e95627a098975f
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin1-1/+1
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-02-15Various string function clean upStephan Bergmann1-2/+1
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-09Replaced String by rtl::OUString in SvxMacroTakeshi Abe1-1/+1
2012-01-30refactor ConvertLineEndCaolán McNamara1-1/+1
2012-01-13Fix for fdo43460 Part XXXVII getLength() to isEmpty()Olivier Hallot1-1/+1
Part XXXVII Modules svtools
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara1-1/+1
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2011-12-11Remove ByteStringJulien Nabet1-1/+1
2011-12-11Remove ByteStringJulien Nabet1-3/+2
2011-11-28ByteString->rtl::OUStringToOStringCaolán McNamara1-1/+1
2011-11-27remove include of pch header from svtoolsNorbert Thiebaud4-8/+0
2011-11-23add stripStart, can replace EraseTrailingCharsCaolán McNamara1-3/+3
2011-11-23_SVSTDARR_ULONGS not used hereCaolán McNamara1-4/+0
2011-11-22ByteString->rtl::OStringCaolán McNamara1-14/+14
2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara1-2/+3
2011-11-07ByteString->rtl::OStringCaolán McNamara2-5/+6
2011-09-29Replace SvULongs with std::vector in sfx2Maciej Rumianowski1-14/+7
Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools
2011-09-23deugly HTMLOutFuncs::ConvertStringToHTMLCaolán McNamara1-8/+8
2011-09-22ByteString->rtl::OString[Buffer]Caolán McNamara1-20/+23
2011-09-19ByteString->rtl::OStringBufferCaolán McNamara1-52/+58
2011-08-29merge together 5 or ascii isalpha/isalnum/isdigit implementationsCaolán McNamara1-4/+4
2011-08-22gsl_getSystemTextEncoding->osl_getThreadTextEncodingCaolán McNamara1-3/+3
2011-08-08dont need FLUSH afaicsCaolán McNamara1-2/+1
2011-08-08ByteString::ConvertToUnicode->rtl::OUString::ctor::toCharCaolán McNamara1-5/+10
2011-07-31simply this and return a new stringCaolán McNamara1-14/+18
2011-07-22Converted HTMLOptions to boost::ptr_vector.Kohei Yoshida2-39/+30
2011-07-22Initialize members in the initializer of the ctor.Kohei Yoshida1-8/+15
2011-07-22sal_Bool to bool.Kohei Yoshida1-118/+117
2011-07-21ByteString::CreateFromInt32->rtl::OStringBuffer::appendCaolán McNamara1-15/+27
2011-06-29remove deprecated ByteString::CreateFromInt64Caolán McNamara1-1/+1
2011-06-23remove parse ByteString variantCaolán McNamara1-4/+3
2011-06-05Changed return type of GetHTMLColorChristina Rossmanith1-2/+2
2011-06-04Removed lines from merge conflictsChristina Rossmanith1-16/+0
2011-06-04Use SAL_CALL / refurbish #include's (IWYU) / sal_Bool->boolChristina Rossmanith1-20/+24
2011-06-04Changed HTML_ColorEntry.nColor to sal_uInt32Christina Rossmanith1-3/+3
2011-06-04Added HTML_TOKEN_ONOFF testChristina Rossmanith1-2/+3