summaryrefslogtreecommitdiff
path: root/writerfilter/Library_writerfilter.mk
AgeCommit message (Collapse)Author
2012-12-01writerfilter: remove unused WW8AnalyzerMiklos Vajna
Change-Id: I711bc4d6b7100a1b089ed5bfeec7ff14f2727138
2012-11-23split qnametostr up to try and make .o's small enough for ppc64Caolán McNamara
i.e. relocation truncated to fix: R_PPC64_TOC16_DS while I'm at it merge the standalone header/footer files into the .xslt and simplify the makefile. Change-Id: Iee0e9b5dd96868f49f1bed22fb5dc6d28c8cef81
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl
Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl
... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl
Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
2012-09-14Improvement on previous commit, UCB clean upStephan Bergmann
* As UCB is only ever initialized with "Local"/"Office", remove this configuration vector completely. The "create" ctor creates an instance internally initialized with those "Local"/"Office" keys. Special (test) code can still instantiate an uninitialized one via plain createInstance. And for backwards compatilibity process startup still ensures to create an initialized instance early, in case there is still code out there (in extensions) that later calls plain createInstance and expects to get the already-initialized (single) instance. * XInitialization is an "implementation detail" of the UniversalContentBroker service, do not expose in XUniversalContentBroker. * ucbhelper/configurationkeys.hxx is no longer needed and is removed. * ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that requires ucbhelper::Content constructors to take explicit XComponentContext arguments now. * The only remaining code in ucbhelper/source/client/contentbroker.cxx is Android-only InitUCBHelper. Is that relevant still? Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
2012-08-23fix math export/import in docx/rtfLuboš Luňák
For some reason older gcc versions don't manage to dynamic_cast to the necessary cast. I'm not quite sure why, forcing sal/osl/unx/module.cxx to always use RTLD_GLOBAL does not seem to help. Most probably compiler bug. Changing the cast to two simpler ones helps.
2012-08-21n#775899 initial docx import of w:vertAnchor inside w:tblpPrMiklos Vajna
Change-Id: I5c848a8d4c860a83d6729b8db40f744afad906d5
2012-07-04refactor handling of double border widths:Michael Stahl
Word uses a completely different definition of "width" of a double border than OOo and ODF: for Word the width is apparently the largest of the 3 component widths, while OOo and ODF define the width as the total with of all 3 components. The new border implementation in LO 3.4 was apparently inspired by Word's double border definition, which resulted in various import filter regressions, see the previous fixes: 36e43b52992735c622833e923faa63774b9e2f76 e2ffb71305c5f085eec6d396651c76d6daee3406 70a6a4d425558340bb49507975343a3e0a1bdde8 These fixes set the ScaleMetrics, which actually seems sub-optimal as there is a ScaleItemSet function somewhere that apparently re-scales all items in an itemset, which could undo the fixes. Also, one of the fixes actually managed to break RTF/DOCX import of double borders, as that ended up in the same code via the API. This commit now reverses the change, so that the width of a border is now always the total with of all components, which is (imho) much more intutitive, and also leads to a consistent UI where selecting say 3pt width has predictable results, no matter what the border style. The border widths are now converted in the Word format import/export filters (writerfilter and sw/source/filter/ww8), and various tests were adapted to the new handling. Change-Id: I50456c49b1a298569607e6c88f19f18441348ac3
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks
2012-06-14writerfilter: remove unused / unneeded .mk filesMatúš Kukan
Change-Id: Ic64e3e527ced7fcf81f90075bae7d8a646789d4e
2012-06-08targeted gmk4 clean-upNorbert Thiebaud
Change-Id: I029b96e9d30393d6e7f0fe3aa841ac62147808df
2012-05-22remove number of -I directives in writerfilterLuboš Luňák
Windows length path limitations strike again, and this should reduce the total argument length. Change-Id: I76fefabc8201e51494a7003d7ca4f9fd92ffa3b9
2012-05-21add dependency on generated filesMatúš Kukan
Change-Id: Idad4558cfa741f1f2e17b270989a8a96ac80dd06
2012-05-18Merge the libraries in writerfilterTor Lillqvist
Change-Id: If77543855fe34f70d248fe8a4644d293f693f190
2012-04-08gbuild: "use" vs. "add":Michael Stahl
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)
2012-03-10gbuild: remove some more realpathsMatúš Kukan
Where necessary, replace with wildcard, what does not change path.
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-08fold i18npaper into i18nutilCaolán McNamara
It's too small to justify standalone existence. We can accumulate i18n things we link to directly into i18nutil and rework i18npool uno implementions in terms of thin wrappers over i18nutil and prefer linking to i18nutil internally and leave the uno forwarders for use by external components and scripting
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara
2011-08-18Enable the writerfilter-based RTF import in non-experimental modeMiklos Vajna
Disable the unit tests in sw, as that would duplicate the unit test in writerfilter now. Do not remove the old filter yet, so this commit can be reverted later if needed.
2011-08-10prefer makefile-gmake-mode to plain makefile-modeTakeshi Abe
2011-07-30Add consistent Emacs and vim mode linesTor Lillqvist
2011-07-23use gb_Library_use_external in writerfilterBjoern Michaelsen
2011-07-23switch to CostumTarget-based code generation from gnumake4Bjoern Michaelsen
2011-07-23revert to old writerfilter gbuilizationBjoern Michaelsen
* gnumake4's writerfilter gbuildization got pushed in a seperate branch * it might or might not be merged to master later
2011-07-22postmerge fixes for gnumake4Bjoern Michaelsen
2011-07-21resyncing to masterBjoern Michaelsen
2011-06-27Enable rtftok on experimental mode onlyMiklos Vajna
2011-06-26Merge remote-tracking branch 'origin/master'Miklos Vajna
2011-06-20gnumake4: switching gbuildizationBjoern Michaelsen
* mostly switching to gnumake4/writerfilter10 gbuild implementation (thanks mst, hb)
2011-06-18remove all traces of offuh from makefilesDavid Tardon
2011-05-27wip: let RtfFilter::filter call RTFDocument::resolveMiklos Vajna
2011-05-27Use realpath: command not found for the includes in the makefilesCédric Bosdonnat
2011-05-15Use specific DLLPUBLIC for each libraryTor Lillqvist
This avoids exporting the same functions from multiple DLLs. Also don't mark template classes for DLL export/import, I think that is not what we want. Or am I on crack?
2011-05-15The writerfilter library needs the resourcemodel library, it seemsTor Lillqvist
2011-04-20make sure that library in services.rdb is correct for writerfilter servicesNoel Power
2011-04-16include helper by absolute pathBjoern Michaelsen
* otherwise a global gbuild build fails
2011-04-14gbuildize writerfilterDavid Tardon