summaryrefslogtreecommitdiff
path: root/writerfilter
AgeCommit message (Collapse)Author
2012-03-01fix RTF import of drawing objects when there is no shape to sendMiklos Vajna
2012-02-29Related: fdo#46662 fix RTF import of leveltext destinationMiklos Vajna
After leveltext is imported, the levelnumbers group modifies the contents of the previous group, but this modification was lost when the stack was popped.
2012-02-29fdo#46662 fix RTF import of numbering levelnumbersMiklos Vajna
To handle stateful encodings, we process hex characters in one go for a run. Levelnumbers of numberings should be an exception, since there the special characters (here: 0x7, which is table cell end) have no special meaning.
2012-02-28RTFFrame::getSprms: use SAL_N_ELEMENTS()Miklos Vajna
2012-02-27clarify ambiguitiesCaolán McNamara
2012-02-24fdo#45187 revert "writerfilter import, fixed the shapes import"Miklos Vajna
This reverts commit 0e26bd20978cbdd7c59368044c2a21b98ffba164. Sadly without a test document for the original issue there is no better fix for this one. Acked-by: Luboš Luňák <l.lunak@suse.cz> Acked-by: Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>
2012-02-23removed remaining #if DEBUGCédric Bosdonnat
2012-02-22fdo#42465 fix RTF import of unicode characters with backwards compatibilityMiklos Vajna
2012-02-22RTF: clean up border property handlingMiklos Vajna
2012-02-22implement RTF import of non-box paragraph bordersMiklos Vajna
2012-02-21implement import of RTF_DOB{X,Y}{MARGIN,PAGE}Miklos Vajna
2012-02-21implement import of RTF_DPLINEMiklos Vajna
2012-02-20writerfilter: try to silence MacOSX-Intel tinderboxMiklos Vajna
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-20n#695479 fix rtf/docx import of transparent framesMiklos Vajna
Previously all frames were opaque by default, which is the Writer but not the docx/rtf default. Change the default, while keeping the possibility to set an opaque color background for the frame.
2012-02-19Get rid of size() == 0Elton Chung
2012-02-13fdo#45543 fix RTF import of ms932-encoded charactersMiklos Vajna
2012-02-13n#695479 fix RTF import of text frames with exact heightMiklos Vajna
2012-02-13fix RTF import of ffres token for checkboxesMiklos Vajna
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-10n#703032 fix RTF import of page breaks right before text framesMiklos Vajna
2012-02-09rtftok: remove unused variableMiklos Vajna
Leftover from commit 01292f171cc851ba092510f10a97cd293670829e.
2012-02-09fdo#45553 fix RTF import of space-before/after tokensMiklos Vajna
2012-02-08Added and improved READMEs for modules which used to be in filterJosh Heidenreich
2012-02-07rtftok: use m_r prefix for C++ reference members onlyMiklos Vajna
2012-02-07n#192129 fix RTF import of PNG images with bogus width/heightMiklos Vajna
For example Apache FOP generates RTF output where the \picw and \pich values are even negative, SvxRTFParser::ReadBmpData() used the same trick to solve the issue.
2012-02-06RTFSdrImport::resolve: replace 75 in the importer as wellMiklos Vajna
2012-02-06n#228839 an empty table grid can't have implicit mergesMiklos Vajna
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-02dmapper: Switch paragraphs to RTL based on the value of w:BiDi.Muhammad Haggag
This is a fix for 43398: FORMATTING: Documents opened in LibreOffice Writer incorrectly appear as right justified. Cause: dmapper used to treat the presence of a w:BiDi element in a paragraph's properties as an indicator of RTL directionality, which is incorrect. A w:BiDi element may have a value of 0, indicating LTR. Fix: Inspect the integral value of w:BiDi elements before switching to RTL.
2012-01-30fdo#43965 more \page vs \pagebb fixesMiklos Vajna
The previous commit even reset \pagebb at the end of the paragraph, which is not what the spec says.
2012-01-30fdo#43965 fix RTF import of page break symbolMiklos Vajna
This was unnoticed so far as both Writer and Word output \pagebb instead of \page when exporting page breaks.
2012-01-25writerfilter: drop unnecessary includes from DomainMapper.cxxMiklos Vajna
2012-01-23Fix for fdo43460 Part XLV getLength() to isEmpty()Olivier Hallot
Part XLV Modules writerfilter, writerperfect
2012-01-23use $(GPERF) instead of using gperf from pathBapt
2012-01-21fdo#44983 Fix RTF import of \paperh and \paperwMiklos Vajna
These keywords should not only set the *default* paper height/width but also set the current values.
2012-01-20Fix RTF import of dotted and word underlineMiklos Vajna
The problem was that these are flags, not toggles.
2012-01-19writerfilter/documentation: describe what an sprm isMiklos Vajna
2012-01-19a feeble attempt at at least some docs for writerfilterLuboš Luňák
2012-01-19fix reading w:charset, you misdesigned writerfilter monster (fdo#34814)Luboš Luňák
2012-01-18writerfilter: remove empty line before shebangMiklos Vajna
2012-01-18writerfilter: drop exec bit on non-script filesMiklos Vajna
2012-01-15WaE: narrowing conversion from unsigned int to sal_Int32David Tardon
2012-01-15these are not old component files anymoreMatúš Kukan
2012-01-12fdo#41034 improve RTF import of table cell spacingsMiklos Vajna
1) for empty cells, not only paragraph properties, but but character properties should be emitted as well (e.g. font) 2) \sb and \sb is an attribute, not an sprm (it was ignored) 3) \sl was ~ignored due to a typo
2012-01-11fix prefix of command line switches (-- instead of -)Andras Timar
2012-01-11Fix MacOSX buildAugust Sodora
2012-01-11microopt, avoid unnecessary call to Tell()Miklos Vajna
2012-01-11fdo#38057 implement RTF import progressbarMiklos Vajna
2012-01-09Related: fdo#42151 implement cell text flow supportMiklos Vajna