summaryrefslogtreecommitdiff
path: root/officecfg
AgeCommit message (Collapse)AuthorFilesLines
2019-06-03[cp] sw HTML import: change config default to always ignore commentsMiklos Vajna1-1/+1
Change-Id: Iae6191fbcf1d02e9e5dd29613eaf5c36646afccc Reviewed-on: https://gerrit.libreoffice.org/73084 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2019-06-03sw HTML import: add an option to ignore comments by defaultMiklos Vajna1-0/+12
No function change, default behavior is still mapping them to postits. (cherry picked from commit 256107622c252afdce35d1c77fe70eb4e4bc57ce) Conflicts: sw/source/filter/html/swhtml.cxx Change-Id: I55041452909e9f0b83d6c5d113af3067b3c0afdb Reviewed-on: https://gerrit.libreoffice.org/73083 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Miklos Vajna <vmiklos@collabora.com>
2019-04-18Switch redacted export optionsMuhammet Kara1-1/+1
Bring White option to the first place, to save toner on print as users tend to click on the first option. Change-Id: Id63c4402f8dc07a83eef69c3dfde3dd086c899b8 Reviewed-on: https://gerrit.libreoffice.org/70831 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> (cherry picked from commit d5b59b8d9d798b884dbcf0c97f403d739b01e1cc) Reviewed-on: https://gerrit.libreoffice.org/70868 Tested-by: Muhammet Kara <muhammet.kara@collabora.com>
2019-04-18[cp] ViewPDFAfterExport default trueAndras Timar1-1/+1
Change-Id: I2c054ba672c7ab52a6e3f3f085823fd5015f0d62
2019-03-27Generate MSO lock files when the related MSO compat. option is setTamás Zolnai1-0/+8
Added a new compatibility option to the Tools -> Load / Save -> Microsoft. When this option is set on the UI or or set in the configuration files LO generates lock files for MSO supported file formats, similar to the lock files MSO generates itself. Reviewed-on: https://gerrit.libreoffice.org/69678 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 41dc917b9b55b8c0c4307ffc58a1fb7257df2b69) Change-Id: I2f882723841162add01be9d3f7285a5162a60331 Reviewed-on: https://gerrit.libreoffice.org/69843 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Temp icons for the redactedexport commandsMuhammet Kara1-1/+1
Just put some links for now for the icons, and replace the two buttons on the redaction toolbar with the new redactedexporttoolbox Change-Id: Ic1df62d56c965869135ceca97bbeb87efd3aaa0d Reviewed-on: https://gerrit.libreoffice.org/68281 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69838 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Add style options to redaction exportMuhammet Kara3-0/+58
* Add 2 new uno command aliases to handle 2 different styles of redaction export/sanitization: * .uno:RedactedExportBlack & .uno:RedactedExportWhite * Replace the single export button with the 2 new buttons * Add a new toolbox names .uno:RedactedExportToolbox which consists of the new 2 commands. It will be added to the Redaction toolbar after we solve the icon issue. * Now new redaction shapes are named as RectangleRedactionShape or FreeformRedactionShape based on their type. * While exporting to PDF, a seamless step of "Sanitization" takes place, in which, all shapes in the Draw doc are traversed and turned into opaq black or white (with black border) shapes, then the whole doc is converted into bitmap (page by page). * After the export operation is completed. All shapes are converted back to the usual redaction style (gray and transparent). * Icon issue: * We need 2 new icons for our new commands, one for black redaction shapes without border, and one for white redaction shapes with black border. * I tried adding links to a current icon, but it didn't work, so they are iconless for now. * Next to do: Handle icon issue, and take the redaction implementation into a separate helper class because it is growing fast. Change-Id: I9b2b7716289b800cdbe7bf3ffa4a442fe5afc474 Reviewed-on: https://gerrit.libreoffice.org/68072 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69836 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Use named shapes for redactionMuhammet Kara1-2/+2
Change-Id: Ibb55bd503d264b618c3fbebfdbcf3fe9958c6783 Reviewed-on: https://gerrit.libreoffice.org/68031 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69835 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Support bitmap PDF export for RedactionMuhammet Kara1-0/+14
* Add a new parameter IsRedactMode (SID_IS_REDACT_MODE) to .uno:ExportDirectToPDF * Make sure the new param makes it into PDFExport as part of FilterData * Hijack the metafile before being sent to ImplExportPage(), convert to bitmap, and replace the original * Add a new entry to GenericCommands.xcu to make our button with param visible * Nitpick: For things to be included in the bitmap conversion, they need to be added to the metafile before the conversion in PDFExport::ExportSelection(). Things added after that point (inside ImplExportPage() for example) will not be bitmapped/pixelized Change-Id: Iec7020917da920a968ea969b98e53f17eadaa275 Reviewed-on: https://gerrit.libreoffice.org/67108 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69833 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Make the text on Redaction toolbar buttons visibleMuhammet Kara1-0/+22
Change-Id: I3d6bc2adb91fbe16da008797b7b7e5189726c500 Reviewed-on: https://gerrit.libreoffice.org/66968 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69818 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Add Redaction ToolbarMuhammet Kara1-0/+11
* Consists of .uno:Rect, .uno:LineToolbox, and .uno:ExportDirectToPDF * Automatically shown when we are in the redaction process * Customizes the rectangle tool for our needs Also: * Adds new parameters to the SID_DRAW_RECT (.uno:Rect) to be able to set transparancy, fill color, and line/border style, and to make our button sticky/permanent Known problem: Button's icon is not shown after adding the parameters Change-Id: I7928264415769f7e0a4ded171b864adb99aed442 Reviewed-on: https://gerrit.libreoffice.org/66706 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69816 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27Redaction: First stepsMuhammet Kara1-0/+14
- Add an uno command to create an empty draw document - Create a meta file from the first page of a Writer document - Insert meta file to the draw page - Doesn't work with normal/default view on big/high-res screens because of a bug in the MapModes. Manually setting zoom level to %200 or "Page Width" (to get rid of the extra space around the actual page) works for now as workaround. Change-Id: I05a987617efdda6690400ef550b81b58b21aa27e Reviewed-on: https://gerrit.libreoffice.org/64858 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/69728 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-12Move the Help URL to a different config pathAshod Nakashian1-6/+7
This partially reverts e5a0bafa330c58d6c9352d3acbe4e97fafa1ad56 and simplifies the Help URL configuration. Change-Id: Icc7c31b8955f3df978b57dbd8aa8816a9e1f98ad Reviewed-on: https://gerrit.libreoffice.org/69106 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-12Make the Help URL configurableAshod Nakashian1-0/+6
When the Help URL is blank, the Help buttons are hidden LOK (but not desktop). Change-Id: Ibd76452108d1e3a92fb43f2c0af0586b0cbed073 Reviewed-on: https://gerrit.libreoffice.org/69071 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-02-17MSForms: Rework the MS compatible Forms menu a bitTamás Zolnai2-10/+15
* DateField is saved as a content control in MSO file formats so let have it under content controls submenu * The MS compatible forms menu is a Writer specific thing so better to have the related commands as Writer commands. Reviewed-on: https://gerrit.libreoffice.org/67912 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 6a4653ed1b24a161950a9cd84caabdd5ad4fe536) Change-Id: I2d66130f54c055a422f56b18ff2c98667e4f6469 Reviewed-on: https://gerrit.libreoffice.org/67927 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-02-17MSForms: Insert Legacy Form Fields from MS compatible Forms menuTamás Zolnai1-0/+29
I added a new submenu under MS compatible Forms menu called Legacy Forms. Under this submenu user can insert the three legacy form fields. These fields were already supported by DOC / DOCX filters, but were missing from the UI. When inserting text form field we insert 5 enspace to make the field visible, otherwise we use the same insertion methods what is called by DOC import. Reviewed-on: https://gerrit.libreoffice.org/67907 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 5a94be3e677e4b7ccb2990a3a79fbf2219322f80) Change-Id: I1fb8c03d969b4c547ca92e783ac5e216767685d5 Reviewed-on: https://gerrit.libreoffice.org/67922 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-02-17MSForms: Introduce a new Forms menu which is compatible with MS WordTamás Zolnai1-0/+5
* It's a Writer only menu by now * Displayed when the compatibility option is set * The menubar is changed during creation, so the option has an effect only after a restart. * MS compatible Forms menu contains only some ActiveX controls now Reviewed-on: https://gerrit.libreoffice.org/67904 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit dc3a2546bd0ad0afe20cba9940934405174fd593) Change-Id: I459f489c15ea7a25514f379b1800b926cc2087ce Reviewed-on: https://gerrit.libreoffice.org/67920 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-02-17MSForms: Introduce a new compatibility flag to enable MS compatible Forms menuTamás Zolnai1-0/+13
* It's a global option not a document level setting (like other compatibility options) so I created a separate section on the GUI for this option on the same tab page. * In the configuration the option is placed under Compatibility/View since the existing Compatibility/FormattingOptions seems related to document formating and not the GUI. * Since it was added with a new configuration root I needed to add also a new ConfigItem derviative class to handle this option. Reviewed-on: https://gerrit.libreoffice.org/67902 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 11669b9cf970d953d41b8dd2c5ce85d6fa7e31ef) Change-Id: I54668ae9808a1ca3c3b7fe81f2f201720257b3fb Reviewed-on: https://gerrit.libreoffice.org/67918 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-01-17tdf#107416 Revert "tdf#103703 Turn on single print jobs for collated prints"Gabor Kelemen1-3/+0
Turns out this was a wrong solution to the problem, also causing printout mixups on busy printers for the users This reverts commit 37c3e57c788fb5ad931126ea233093d87ac3dbc3. Change-Id: I8a456f4c90f48854c1f5e92dc39ed4ec8a17cf75 Reviewed-on: https://gerrit.libreoffice.org/65993 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit 2117257eafac507b6af0be86ae62261fd192089a) Reviewed-on: https://gerrit.libreoffice.org/66152 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org> (cherry picked from commit d8d148c96d7cdd96948240ac30b3aeacfb5aa7ca)
2019-01-17Related: tdf#103884 remove dangling menubar commandCaolán McNamara1-5/+0
since... commit 08a43cc97ccf88faa9d3a04afc3aacd2c885a2d1 Date: Sat Oct 28 02:28:18 2017 +0200 related: tdf#103884 remove gltf/collada feature Change-Id: I7671746f2b33f8d4eae207448267d0284a3f9804 Reviewed-on: https://gerrit.libreoffice.org/65338 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit c1bff09047624898320767921f3bf01d95b8e0e2)
2019-01-09[cp] Revert rename of Master Slide DesignAron Budea1-1/+1
Change-Id: I50ee049317c5d16b8ab00bb340357dea34fb36c4
2018-12-16tdf#121779: extend TWo CApitals list to also ignore sMALL iNITIALSMike Kaganski1-4/+5
Now this list is used also in rules for capitalizing first letter of every sentence, and for correcting accidental use of Caps Lock key. Change-Id: I4fbdbccbae32743d5e9a6757344361eefd88e167 Reviewed-on: https://gerrit.libreoffice.org/64759 Tested-by: Jenkins Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Reviewed-by: Sophie Gautier <gautier.sophie@gmail.com> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/65087 Tested-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2018-11-28tdf#90333 Dictionaries Path Cannot Be ChangedCaolán McNamara1-1/+1
PathSettings::impl_storePath wants to be able to nil the Dictionaries path in the old copy of properties Change-Id: Id579914cfa8b459efce962d304e2f9d6185bd55f Reviewed-on: https://gerrit.libreoffice.org/64115 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit f913bdf712b9e03506b1278e1142283af92125b1)
2018-10-26tdf#116342 Allow selecting text boxes anywhere by defaultSamuel Mehrbrodt2-2/+2
Not only by hitting the (invisble) frame or the text content. Change-Id: I125f76a102611b628411d8c5acf70e3ed9e5e8fe Reviewed-on: https://gerrit.libreoffice.org/51276 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> (cherry picked from commit d799436414ab7e28b6bf9a918fd3779b3fc85008)
2018-08-29tdf#119425 - Use Ctrl+Tab to switch between sheets on macOSheiko tietze1-0/+24
macOS used MOD3 now Reviewed-on: https://gerrit.libreoffice.org/59459 Tested-by: Jenkins Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> (cherry picked from commit fcb8ee70824acace8fbe2357eaeba52ad9b7332f) Reviewed-on: https://gerrit.libreoffice.org/59537 (cherry picked from commit cb7b687a152d9ab71eaeb9efd5e936339bdf91e5) Change-Id: I6bec6a8311335ea0eb3decb0e0c2adc2fa9b03f7
2018-08-08Menubar icons: add icon to Help -> SendFeedbackandreas kainz1-0/+3
Change-Id: If88c59e6beddfdfcca95448334cc558ae5720366 Reviewed-on: https://gerrit.libreoffice.org/57042 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08Menubar Impress: add missing icons to menubarandreas kainz1-0/+27
Change-Id: I5116e214ab64923c28dda4d10feab1193b5d9d31 Reviewed-on: https://gerrit.libreoffice.org/56978 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08Calc Menubar: add icons to some menubar entriesandreas kainz2-0/+21
Change-Id: Iad8334c3e0f27c39cdab54a06ca8e54de263d26b Reviewed-on: https://gerrit.libreoffice.org/56885 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08Colibre icons: add icons for Common Align actionsandreas kainz1-0/+24
Change-Id: Ia234b76039759d6f71ec6578e7ffa4ff4236dae2 Reviewed-on: https://gerrit.libreoffice.org/56797 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08writer: add icons for menubar actionsandreas kainz2-3/+54
Change-Id: Ib222936295c4815f9d87a0da4c2c7a93c929391c Reviewed-on: https://gerrit.libreoffice.org/56604 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Icons: add icons for impress slide tabandreas kainz1-0/+9
Change-Id: I9c546cce9830f94f00f5cd8cbea3a491d368b9a4 Reviewed-on: https://gerrit.libreoffice.org/53464 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: Calc data tabandreas kainz1-6/+9
Change-Id: Ib84ee30c21a0b9ac09d80cf4aa8898ad5d1d12e5 Reviewed-on: https://gerrit.libreoffice.org/53367 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: calc data tabandreas kainz1-0/+24
Change-Id: Ia1c0ba09b683501093065045163c406b1187b050 Reviewed-on: https://gerrit.libreoffice.org/53134 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons to impressandreas kainz2-0/+12
Change-Id: I0192a431f79a46fa17b214fb9c978ec0215f061c Reviewed-on: https://gerrit.libreoffice.org/53123 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08Colibre Icons: missing add view tab icons calc and impressandreas kainz2-0/+15
Change-Id: I5905cea12f5a9df3b485e71d112ae994c5474eea Reviewed-on: https://gerrit.libreoffice.org/52751 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Calc: needed icons for Layout Tabandreas kainz1-0/+3
Change-Id: I9b9567664df919e418ac519930c907198ba2b728 Reviewed-on: https://gerrit.libreoffice.org/52482 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Calc: needed icons for Insert Tabandreas kainz2-0/+9
Change-Id: I3a622a4b658c314bfac6f89a12ffedd09b44bb3b Reviewed-on: https://gerrit.libreoffice.org/52481 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Calc: needed icons for Review Tabandreas kainz1-0/+6
Change-Id: I57869f80def8c92c92d957adc79d1dc34a320dc9 Reviewed-on: https://gerrit.libreoffice.org/52413 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Calc: needed icons for View Tabandreas kainz1-0/+15
Change-Id: Icace3901d87ba74ca45f4a9f68a2d348697209b6 Reviewed-on: https://gerrit.libreoffice.org/52412 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB implementation: fix some tabbedtoolbar icon stuffandreas kainz1-0/+3
Change-Id: Ib7a639539df57c84befa7ee9fb605b1deb9448b1 Reviewed-on: https://gerrit.libreoffice.org/52176 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons to tools tabandreas kainz2-0/+6
Change-Id: I4abbd4ce131eeff63e1f04c6662dc1b46f2c70d2 Reviewed-on: https://gerrit.libreoffice.org/51888 Reviewed-by: andreas_kainz <kainz.a@gmail.com> Tested-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icon to page layout action tabandreas kainz1-0/+9
Change-Id: I196280447b08f6da9608a9dbd15adb079df368f8 Reviewed-on: https://gerrit.libreoffice.org/51875 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons for image tabandreas kainz1-0/+6
Change-Id: Ie5c0bca52a85b3addd86090d3fa4293ef1faff93 Reviewed-on: https://gerrit.libreoffice.org/51894 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons to view tabandreas kainz2-0/+9
Change-Id: Iff3cd093a98bdba692d5233b4a3c30b8bf672c07 Reviewed-on: https://gerrit.libreoffice.org/51887 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons for review tabandreas kainz1-0/+3
Change-Id: I7071d17c4b29f805b768803fa71dd0ea3a1ac84f Reviewed-on: https://gerrit.libreoffice.org/51880 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-08-08NB Implementation: add icons to references tabandreas kainz1-0/+3
Change-Id: If4f4792192871fb1fda6b7ab3cbf2907dffc38fb Reviewed-on: https://gerrit.libreoffice.org/51879 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2018-07-13Change merge cell defaults for Collabora OfficeAndras Timar1-2/+2
Change-Id: Ib0f96e52f268df999fde34ea7bcf9ea9706ea11a Reviewed-on: https://gerrit.libreoffice.org/57399 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com>
2018-06-25tdf#107649: cp-specific: Try system credentials first by defaultMike Kaganski1-1/+1
Change-Id: I39f3cd85153f939c1a5ebd7c6830c0175328a966 Reviewed-on: https://gerrit.libreoffice.org/37335 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 0be936f739752ce773f1c77f2c1dab022af785f5)
2018-06-11Migrate user profile from Collabora GovOffice 5.xAndras Timar1-2/+2
Change-Id: I3c49b307991eb7765afae70efeaadeda7f141850 Reviewed-on: https://gerrit.libreoffice.org/55627 Reviewed-by: Aron Budea <aron.budea@collabora.com> Tested-by: Aron Budea <aron.budea@collabora.com>
2018-05-28tdf#35798: Hide empty Database fields' paragraphs (+ compat option)Mike Kaganski1-0/+6
With this change, Database fields that expand to empty values behave as if they are "Hidden Paragraph" fields. A compatibility option to enable this behaviour is added. The option is enabled by default, and for any non-native documents (for compatibility with other office suites). For existing (F)ODT documents, the option is disabled for those documents that don't have this setting set, to keep the layout of legacy documents. Change-Id: Ic5e8cb15a3a7d1a765a984eef4b0d97666df7dfd Reviewed-on: https://gerrit.libreoffice.org/54552 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/54929 Tested-by: Mike Kaganski <mike.kaganski@collabora.com>