- 12 Şub, 2014 40 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: Ied87e18f8297fb8e85fdbcab38d719664e3ed066
-
Vort yazdı
Change-Id: I4b09cd7b970d5aca4500ae333edef0e4c2f618b9 Reviewed-on: https://gerrit.libreoffice.org/8009Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Mihkel Tõnnov yazdı
Namely: Estonian has several sets of correct quote mark glyphs for double quotes („”, „“, «» are all common), however the Institute of Estonian Language [1] recommends using the first of these, i.e. „” (99 low, 99 high) [2]. As for single quotes, Estonian texts rarely use them, except in a few fields such as linguistics and biology -- and both ‘’ (9-9) and ’’ (6-9) are considered correct [2, 3]. However, apostrophe in the beginning of a word (which is effectively the same as a starting single quote) can also be used to indicate omitted character(s) -- but there, only ’ (9) is correct [3]. [1] Eesti Keele Instituut, the main official body which maintains and studies the usage of Estonian language; http://en.eki.ee/index.php [2] The last page of https://docs.google.com/viewer?url=http://keeleabi.eki.ee/pdf/164.pdf (in Estonian) [3] Handbook of Estonian Language, http://www.eki.ee/books/ekk09/index.php?p=2&p1=11&id=86 (in Estonian) Change-Id: If88e6e03e3e4aa1919a25dbe2fa2ffc8c9a04f4a
-
Miklos Vajna yazdı
The z-order can be any number, Word uses kind of random 32bit integers, we count from 0. It turns out 0 and 1 may have some special meaning, as counting from 2 (instead of 0) fixes the visibility the problems in the bugdoc. Change-Id: I695a625fc0ab8206cc09896bcf02ff7689f1defc
-
Jan-Marek Glogowski yazdı
If you start a mail merge jobs via UNO, there is no way to cancel it. But the functionality is already implemented and used by the LO internal mail merge dialogs. This patch adds an optional XCancellable interface to the MailMerge service and implements it in the SwXMailMerge class. As the XJob::execute function already uses the SolarMutex to prevent parallel runs, XCancellable::cancel can be implemented by storing the SwNewDBMgr in the private variable m_pMgr, protected by a mutex. The bCancel member has to be converted from a bitfield value to a real boolean, because otherwise all bitfield values would have to be protected by a mutex. Bitfield assignments aren't atomic as you always have to replace at least a byte. Change-Id: I007cc23fdf04ccfca7d3cd6180b0e17e99f53061 Reviewed-on: https://gerrit.libreoffice.org/7190Reviewed-by:
Michael Stahl <mstahl@redhat.com> Tested-by:
Michael Stahl <mstahl@redhat.com>
-
Adam Co yazdı
Added unit-tests to make sure that 'table cell redlines' (e.g. - table cell was inserted \ removed) are being round tripped correctly from a DOCX file. Change-Id: I773cb51a39654d2640200489d5199361b56396c7 Reviewed-on: https://gerrit.libreoffice.org/7878Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
This patch adds support in the DOCX exporter for exporting the 'table cell redlines', such as 'inserted a table cell', or 'removed a table cell'. Change-Id: Ic37d2550691f1090a580dae57d597c8fd09c7ad9 Reviewed-on: https://gerrit.libreoffice.org/7877Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Change-Id: I4072130ff0ce712f02d1dd8f12003170116216a2 Reviewed-on: https://gerrit.libreoffice.org/7876Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
This patch adds support in the DOCX importer for the 'table cell redline' to be sent from the DOCX importer, using UNO (as a property of the table cell) to the SW core. Once it reaches the 'table cell' - the 'set property' detects this property - and creates an 'SwTableCellRedline' object for it, and adds it to the 'SwExtraRedlineTbl' object. Change-Id: Iba038f4109d5505b94cea548e73c614b5cc1b637 Reviewed-on: https://gerrit.libreoffice.org/7875Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Change-Id: Ic1e2cb1873dc696311382108868abc4aee00baef Reviewed-on: https://gerrit.libreoffice.org/7872Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Change-Id: I257ef3cc360c74fb83c65e4be9967e9f84ba9af3 Reviewed-on: https://gerrit.libreoffice.org/7874Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
This patch adds support for 'Table Cell Redlines' (such as 'table cell inserted' or 'table cell deleted' in SW core). It adds the 'SwTableCellRedline' object, and adds a function for adding objects of that type to the 'SwExtraRedlineTbl', which is the object that holds all the redlines which are not 'Ranged' redlines. Change-Id: Ic2e410be58683f171ea07d430b7544600780711e Reviewed-on: https://gerrit.libreoffice.org/7873Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Add appropriate tokens for importing the 'table cell insert' and 'table cell delete' token in the DOCX's model.xml file. Change-Id: I328dfde1cef42f1c61ea0c481552f07ea7683def Reviewed-on: https://gerrit.libreoffice.org/7871Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Change-Id: I54cfe0faac1fd3d75fb6931863008b9db86191d1 Reviewed-on: https://gerrit.libreoffice.org/7870Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
This patch adds 2 tokens for future patche's use of table cell redline preservation. Change-Id: Ic0ec4122eeaf66c6f0ebff9251fbc38596877541 Reviewed-on: https://gerrit.libreoffice.org/7869Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
Added unit-tests to make sure that 'table row redlines' (e.g. - table row was inserted \ removed) are being round tripped correctly from a DOCX file. Change-Id: I369dd32e7372d0cf0add19197f07d0ad604e9ef0 Reviewed-on: https://gerrit.libreoffice.org/7849Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Michael Stahl yazdı
Change-Id: I656e90024d35ef8189727e6a39815ef4e4fb330b
-
Michael Stahl yazdı
Change-Id: Ia6adb8ae07ec80e83bc67084dfbd0bc6136ed8b7
-
Michael Stahl yazdı
Change-Id: I8034b6fdf85697b6b409143396983ef3170257b2
-
Michael Stahl yazdı
Change-Id: I166de66dd8cd58a05e1a9e8d2f25bf95b98297fb
-
Michael Stahl yazdı
Change-Id: Ie61f6a0e572dcc3cdc4cbca698fb90d67f9a87ad
-
Michael Stahl yazdı
Change-Id: Ib11dcf94263aefc68ae2e831baeeb957231793ae
-
Michael Stahl yazdı
Change-Id: I7f1153e4a07a4116417a7734d867f2d0feda1ee4
-
Michael Stahl yazdı
Change-Id: I913c38878a110625747fbf32ad9c43ad0dab30d3
-
Michael Stahl yazdı
Change-Id: Idc28f8be610aae57477f18c26ffcb97a24a2ab82
-
Michael Stahl yazdı
Change-Id: Ia29a173ab6bb3442f98cd6db4db67ad27e7fa9a1
-
Michael Stahl yazdı
Change-Id: I2fce6545d7f279e0e2d6f3ff53eee1ab82314135
-
Michael Stahl yazdı
Change-Id: I7ba86a2606d585b7b4351bc1fcd6d8ceebca5fd7
-
Michael Stahl yazdı
Change-Id: I8932febdd39c35f23fb3a89703b69e25302f5678
-
Michael Stahl yazdı
Change-Id: Iffcc671ca41c5880579effe0786a3b4d3be0dab0
-
Michael Stahl yazdı
Change-Id: I343dae79b01e1369722c7bbd1ab2c36e2bfa96ac
-
Michael Stahl yazdı
Change-Id: I7530cb9d0797df5fc86695b0379cc44c159d2ab5
-
Michael Stahl yazdı
Change-Id: I89802da0ad7f7bf838a8937430825b0adf42a6ee
-
Michael Stahl yazdı
The assumption that all configure variables had been normalized to TRUE/<empty> turned out not to hold; convert a bit more in that direction. (regression from 4af38b09) Change-Id: I2127c515e8a833a07c9b26ed9d693ce5a1853fe4
-
Adam Co yazdı
This patch adds support in the DOCX exporter for exporting the 'table row redlines', such as 'inserted a table row', or 'removed a table row'. Change-Id: If07e3496d8cab8b93b10c6ae3bcaec49369a8c2d Reviewed-on: https://gerrit.libreoffice.org/7825Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
These notes are to make sure if logic needs to be added for the 'SwExtraRedlineTbl' in these functions, in addition to the 'SwRedlineTbl' that is already there. Change-Id: I7778b4e20f5323a925d05a7df0c727f443566662 Reviewed-on: https://gerrit.libreoffice.org/7823Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Adam Co yazdı
This patch adds support in the DOCX importer for the 'table row redline' to be sent from the DOCX importer, using UNO (as a property of the table row) to the SW core. Once it reaches the 'table row' - the 'set property' detects this property - and creates an 'SwTableRowRedline' object for it, and adds it to the 'SwExtraRedlineTbl' object. Change-Id: Ifd9ba680a722b54116b07dca54841dcba599c517 Reviewed-on: https://gerrit.libreoffice.org/7822Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
Noel Grandin yazdı
Change-Id: I20a5a0bd859b0df40a051dbb1894a9d8adfa521d
-
Noel Grandin yazdı
Change-Id: I132527f5e403721988ae8e1d60f181f3d3241810
-
Noel Grandin yazdı
Change-Id: I5a15a1410426ad0941dbb2b73aaf31f78db19362
-