[Libreoffice-commits] online.git: 2 commits - docker/Dockerfile docker/.dockerignore docker/l10n-docker-nightly.sh docker/scripts .gitignore loleaflet/po

2017-10-21 Thread Andras Timar
 .gitignore|3 
 docker/.dockerignore  |1 
 docker/Dockerfile |   42 ++
 docker/l10n-docker-nightly.sh |  130 +
 docker/scripts/run-lool.sh|   37 +
 loleaflet/po/ui-sl.po |  260 +-
 6 files changed, 343 insertions(+), 130 deletions(-)

New commits:
commit 7c3d7560c9b2f90048790ff9834a03fe071d4d6c
Author: Andras Timar 
Date:   Sat Oct 21 23:12:44 2017 +0200

Docker bits

Change-Id: I46c64573381ddb8d34817d393967316e0aac8576

diff --git a/.gitignore b/.gitignore
index 7ca272f3..f656512b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -68,3 +68,6 @@ tags
 test/tags
 TAGS
 test/TAGS
+
+docker/instdir
+docker/builddir
diff --git a/docker/.dockerignore b/docker/.dockerignore
new file mode 100644
index ..7d5aaa6f
--- /dev/null
+++ b/docker/.dockerignore
@@ -0,0 +1 @@
+builddir/*
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100644
index ..aea6e73c
--- /dev/null
+++ b/docker/Dockerfile
@@ -0,0 +1,42 @@
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+FROM ubuntu:16.04
+
+# get the latest fixes
+RUN apt-get update && apt-get upgrade -y
+
+# install LibreOffice run-time dependencies
+# install apt-transport-https in order to set up repo for Poco
+# install adduser, findutils and cpio that we need later
+RUN apt-get -y install apt-transport-https locales-all libpng12-0 libxinerama1 
libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 libxcb-shm0 
libxcb-render0 adduser cpio findutils
+
+# set up 3rd party repo of Poco, dependency of loolwsd
+RUN echo "deb https://collaboraoffice.com/repos/Poco/ /" >> 
/etc/apt/sources.list.d/poco.list
+RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0C54D189F4BA284D
+RUN apt-get update
+RUN apt-get -y install libpoco*48
+
+# copy freshly built LibreOffice master and LibreOffice Online master with 
latest translations
+COPY /instdir /
+
+# copy the shell script which can start LibreOffice Online (loolwsd)
+COPY /scripts/run-lool.sh /
+
+# set up LibreOffice Online (normally done by postinstall script of package)
+RUN setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolforkit
+RUN setcap cap_sys_admin=ep /usr/bin/loolmount
+RUN adduser --quiet --system --group --home /opt/lool lool
+RUN mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd
+RUN rm -rf /var/cache/loolwsd/*
+RUN rm -rf /opt/lool
+RUN mkdir -p /opt/lool/child-roots
+RUN chown lool: /opt/lool
+RUN chown lool: /opt/lool/child-roots
+RUN su lool --shell=/bin/sh -c "loolwsd-systemplate-setup 
/opt/lool/systemplate /opt/libreoffice >/dev/null 2>&1"
+RUN touch /var/log/loolwsd.log
+RUN chown lool /var/log/loolwsd.log
+CMD bash /run-lool.sh
diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
new file mode 100755
index ..d6aea13c
--- /dev/null
+++ b/docker/l10n-docker-nightly.sh
@@ -0,0 +1,130 @@
+#! /bin/bash
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# check we can sudo without asking a pwd
+echo "Trying if sudo works without a password"
+echo
+echo "If you get a password prompt now, break, and fix your setup using 'sudo 
visudo'; add something like:"
+echo "yourusername ALL=(ALL) NOPASSWD: ALL"
+echo
+sudo echo "works"
+
+# check if we have jake
+which jake || { cat << EOF
+
+jake is not installed, get it like:
+
+  npm install -g jake
+EOF
+exit 1 ; }
+
+# do everything in the builddir
+SRCDIR=$(realpath `dirname $0`)
+INSTDIR="$SRCDIR/instdir"
+BUILDDIR="$SRCDIR/builddir"
+
+mkdir -p "$BUILDDIR"
+cd "$BUILDDIR"
+
+rm -rf "$INSTDIR"
+mkdir -p "$INSTDIR"
+
+# cloning & updating #
+
+# libreoffice repo
+if test ! -d libreoffice ; then
+git clone git://anongit.freedesktop.org/libreoffice/core libreoffice || 
exit 1
+cat > libreoffice/autogen.input << EOF
+--disable-cups
+--disable-dbus
+--disable-dconf
+--disable-epm
+--disable-evolution2
+--disable-ext-nlpsolver
+--disable-ext-wiki-publisher
+--disable-firebird-sdbc
+--disable-gio
+--disable-gstreamer-0-10
+--disable-gstreamer-1-0
+--disable-gtk
+--disable-gtk3
+--disable-kde4
+--disable-odk
+--disable-online-update
+--disable-pdfimport
+--disable-postgresql-sdbc
+--disable-report-builder
+--disable-scripting-beanshell
+--disable-scripting-javascript
+--disable-sdremote
+--disable-sdremote-bluetooth
+--enable-extension-integration
+--enable-mergelibs
+--enable-python=internal
+--enable-release-build
+--with-external-dict-dir=/usr/share/hunspell
+--with-external-hyph-dir=/usr/share/hyphen

[Libreoffice-bugs] [Bug 112928] LibreOffice 5.4.2.2 installs but will not run on Windows XP SP3 (32-bit)

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112928

V Stuart Foote  changed:

   What|Removed |Added

 CC||kzieb...@cox.net

--- Comment #23 from V Stuart Foote  ---
*** Bug 113341 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113341] After loading 5.4.2.2, upon opening, the LibreOffice logo flashes briefly and program does not load.

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113341

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---
Thank you for posting it is a valid issue, but please do not mark your own
issue as NEW, it disrupts the QA process.

Dupe to bug 112928

*** This bug has been marked as a duplicate of bug 112928 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 110994] FORMATTING: text-to-text alignment ignored when text grid is enabled

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110994

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.0.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 110994] FORMATTING: text-to-text alignment ignored when text grid is enabled

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110994

--- Comment #3 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=2a65ad5708d1013a28fe6c250701c8f385c2083f

tdf#110994 make text-to-text alignment work in standard page mode.

It will be available in 6.0.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sw/source

2017-10-21 Thread Mark Hung
 sw/source/core/text/itrtxt.cxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 2a65ad5708d1013a28fe6c250701c8f385c2083f
Author: Mark Hung 
Date:   Sat Aug 12 18:16:13 2017 +0800

tdf#110994 make text-to-text alignment work in standard page mode.

Allow it to align as if there is no grid at all.

Change-Id: I784284a05c1f1323e050e74a5d574a9b11189298
Reviewed-on: https://gerrit.libreoffice.org/43005
Tested-by: Jenkins 
Reviewed-by: Mark Hung 

diff --git a/sw/source/core/text/itrtxt.cxx b/sw/source/core/text/itrtxt.cxx
index de2f8f6a6546..90301cac9102 100644
--- a/sw/source/core/text/itrtxt.cxx
+++ b/sw/source/core/text/itrtxt.cxx
@@ -226,14 +226,12 @@ sal_uInt16 SwTextCursor::AdjustBaseLine( const 
SwLineLayout& rLine,
 
 SwTextGridItem const*const pGrid(GetGridItem(m_pFrame->FindPageFrame()));
 
-if ( pGrid && GetInfo().SnapToGrid() )
+if ( pGrid && GetInfo().SnapToGrid() && pGrid->IsSquaredMode() )
 {
 const sal_uInt16 nRubyHeight = pGrid->GetRubyHeight();
 const bool bRubyTop = ! pGrid->GetRubyTextBelow();
 
-if ( !pGrid->IsSquaredMode() )
-nOfst += ( rLine.Height() - nPorHeight ) / 2 + nPorAscent;
-else if ( GetInfo().IsMulti() )
+if ( GetInfo().IsMulti() )
 // we are inside the GetCharRect recursion for multi portions
 // we center the portion in its surrounding line
 nOfst = ( m_pCurr->Height() - nPorHeight ) / 2 + nPorAscent;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - include/sfx2 sfx2/classification sfx2/source svx/source sw/source

2017-10-21 Thread Ashod Nakashian
 include/sfx2/classificationhelper.hxx  |4 
 sfx2/classification/baf.xsd|1 +
 sfx2/classification/example.xml|8 
 sfx2/source/view/classificationhelper.cxx  |   24 +++-
 svx/source/dialog/ClassificationDialog.cxx |6 +++---
 sw/source/core/edit/edfcol.cxx |   26 +-
 6 files changed, 48 insertions(+), 21 deletions(-)

New commits:
commit db61ca5b3abbd2df433bcab516f8fa2cfbc01944
Author: Ashod Nakashian 
Date:   Wed Oct 18 13:09:59 2017 +0400

TSCP: support abbreviated classification names

Change-Id: Ib7edc491d2f8a69c48f1515ba29d79e09c88c3b7
Reviewed-on: https://gerrit.libreoffice.org/43627
Tested-by: Jenkins 
Reviewed-by: Ashod Nakashian 

diff --git a/include/sfx2/classificationhelper.hxx 
b/include/sfx2/classificationhelper.hxx
index e83eadfd05e9..036951fa0ab1 100644
--- a/include/sfx2/classificationhelper.hxx
+++ b/include/sfx2/classificationhelper.hxx
@@ -63,6 +63,10 @@ public:
 const OUString& GetBACName(SfxClassificationPolicyType eType);
 /// Return all possible valid category names, based on the policy.
 std::vector GetBACNames();
+/// Get the currently selected category abbreviation for eType. Returns 
full name if no abbreviation defined.
+const OUString& GetAbbreviatedBACName(SfxClassificationPolicyType eType);
+/// Return all possible valid abbreviated category names, based on the 
policy.
+std::vector GetAbbreviatedBACNames();
 /// Setting this sets all the other properties, based on the policy.
 void SetBACName(const OUString& rName, SfxClassificationPolicyType eType);
 /// If GetImpactScale() and GetImpactLevel*() will return something 
meaningful.
diff --git a/sfx2/classification/baf.xsd b/sfx2/classification/baf.xsd
index a0bae6cc9ff1..abf003b38624 100644
--- a/sfx2/classification/baf.xsd
+++ b/sfx2/classification/baf.xsd
@@ -68,6 +68,7 @@
   
   
   
+  
 
   
   
diff --git a/sfx2/classification/example.xml b/sfx2/classification/example.xml
index 82098031ff91..a5065e3d959a 100644
--- a/sfx2/classification/example.xml
+++ b/sfx2/classification/example.xml
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 
 UK-Cabinet
@@ -17,7 +17,7 @@
 
 
 
-
+
 
 
 Document: Header
@@ -31,7 +31,7 @@
 
 
 
-
+
 
 
 Document: Header
@@ -55,7 +55,7 @@
 
 
 
-
+
 
 
 Document: Header
diff --git a/sfx2/source/view/classificationhelper.cxx 
b/sfx2/source/view/classificationhelper.cxx
index 3378ed0df239..77932f4fb260 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -92,6 +92,7 @@ class SfxClassificationCategory
 public:
 /// PROP_BACNAME() is stored separately for easier lookup.
 OUString m_aName;
+OUString m_aAbbreviatedName;
 std::map m_aLabels;
 };
 
@@ -170,7 +171,8 @@ void SAL_CALL SfxClassificationParser::startElement(const 
OUString& rName, const
 }
 else if (rName == "baf:BusinessAuthorizationCategory")
 {
-OUString aName = xAttribs->getValueByName("Name");
+const OUString aName = xAttribs->getValueByName("Name");
+const OUString aAbbreviatedName = 
xAttribs->getValueByName("loextAbbreviatedName");
 if (!m_pCategory && !aName.isEmpty())
 {
 OUString aIdentifier = xAttribs->getValueByName("Identifier");
@@ -179,6 +181,8 @@ void SAL_CALL SfxClassificationParser::startElement(const 
OUString& rName, const
 m_aCategories.emplace_back(SfxClassificationCategory());
 SfxClassificationCategory& rCategory = m_aCategories.back();
 rCategory.m_aName = aName;
+// Set the abbreviated name, if any, otherwise fallback on the 
full name.
+rCategory.m_aAbbreviatedName = !aAbbreviatedName.isEmpty() ? 
aAbbreviatedName : aName;
 rCategory.m_aLabels["PolicyAuthority:Name"] = 
m_aPolicyAuthorityName;
 rCategory.m_aLabels["Policy:Name"] = m_aPolicyName;
 rCategory.m_aLabels["BusinessAuthorization:Identifier"] = 
m_aProgramID;
@@ -587,6 +591,11 @@ const OUString& 
SfxClassificationHelper::GetBACName(SfxClassificationPolicyType
 return m_pImpl->m_aCategory[eType].m_aName;
 }
 
+const OUString& 
SfxClassificationHelper::GetAbbreviatedBACName(SfxClassificationPolicyType 
eType)
+{
+return m_pImpl->m_aCategory[eType].m_aAbbreviatedName;
+}
+
 bool SfxClassificationHelper::HasImpactLevel()
 {
 auto itCategory = 

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - external_deps.lst python/makefile.mk python/prj python/python-2.7.13-mingw.patch python/python-2.7.13-nohardlink.patch python/python-2.7.13-pcbuild

2017-10-21 Thread Pedro Giffuni
 external_deps.lst |6 -
 python/makefile.mk|2 
 python/prj/d.lst  |  108 +--
 python/python-2.7.14-mingw.patch  |  150 +-
 python/python-2.7.14-nohardlink.patch |6 -
 python/python-2.7.14-pcbuild.patch|  190 --
 python/python-2.7.14-sysbase.patch|8 -
 python/python-freebsd.patch   |   46 
 python/python-md5.patch   |6 -
 python/python-solaris.patch   |4 
 python/python-solver-before-std.patch |6 -
 python/python-ssl.patch   |   12 +-
 python/pyversion.mk   |2 
 13 files changed, 270 insertions(+), 276 deletions(-)

New commits:
commit 0b41270b2ea8ad2b328768b0c4103b83f878d6df
Author: Pedro Giffuni 
Date:   Sun Oct 22 00:38:37 2017 +

Update Python to version 2.7.14.

Released on 2017-09-16.
ChangeLog available here:


https://raw.githubusercontent.com/python/cpython/84471935ed2f62b8c5758fd544c7d37076fe0fa5/Misc/NEWS

Tested on:  FreeBSD

diff --git a/external_deps.lst b/external_deps.lst
index ecd9ae58405e..2703e235c294 100644
--- a/external_deps.lst
+++ b/external_deps.lst
@@ -200,9 +200,9 @@ if (ENABLE_MEDIAWIKI == YES)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (SYSTEM_PYTHON != YES)
-MD5 = 17add4bf0ad0ec2f08e0cae6d205c700
-name = Python-2.7.13.tgz
-URL1 = http://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz
+MD5 = cee2e4b33ad3750da77b2e85f2f8b724
+name = Python-2.7.14.tgz
+URL1 = http://www.python.org/ftp/python/2.7.14/Python-2.7.14.tgz
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (SYSTEM_BOOST != YES)
diff --git a/python/makefile.mk b/python/makefile.mk
index 22ab60e75c98..14994b5608e5 100644
--- a/python/makefile.mk
+++ b/python/makefile.mk
@@ -42,7 +42,7 @@ all:
 
 
 TARFILE_NAME=Python-$(PYVERSION)
-TARFILE_MD5=17add4bf0ad0ec2f08e0cae6d205c700
+TARFILE_MD5=cee2e4b33ad3750da77b2e85f2f8b724
 PATCH_FILES=\
 python-solaris.patch \
 python-freebsd.patch \
diff --git a/python/prj/d.lst b/python/prj/d.lst
index b521c1e1c65b..99571b8f2733 100644
--- a/python/prj/d.lst
+++ b/python/prj/d.lst
@@ -36,51 +36,51 @@ mkdir: %_DEST%\lib%_EXT%\python\multiprocessing\dummy
 mkdir: %_DEST%\lib%_EXT%\python\unittest
 mkdir: %_DEST%\lib%_EXT%\python\python2.7\config
 
-..\%__SRC%\misc\build\Python-2.7.13\Lib\* %_DEST%\lib%_EXT%\python\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\lib-old\* 
%_DEST%\lib%_EXT%\python\lib-old\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\lib-tk\* 
%_DEST%\lib%_EXT%\python\lib-tk\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\site-packages\* 
%_DEST%\lib%_EXT%\python\site-packages\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\encodings\* 
%_DEST%\lib%_EXT%\python\encodings\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\email\* 
%_DEST%\lib%_EXT%\python\email\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\email\mime\* 
%_DEST%\lib%_EXT%\python\email\mime\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\compiler\* 
%_DEST%\lib%_EXT%\python\compiler\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\hotshot\* 
%_DEST%\lib%_EXT%\python\hotshot\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\distutils\* 
%_DEST%\lib%_EXT%\python\distutils\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\distutils\command\* 
%_DEST%\lib%_EXT%\python\distutils\command\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\xml\* %_DEST%\lib%_EXT%\python\xml\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\xml\dom\* 
%_DEST%\lib%_EXT%\python\xml\dom\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\xml\parsers\* 
%_DEST%\lib%_EXT%\python\xml\parsers\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\xml\sax\* 
%_DEST%\lib%_EXT%\python\xml\sax\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\curses\* 
%_DEST%\lib%_EXT%\python\curses\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\plat-linux2\* 
%_DEST%\lib%_EXT%\python\plat-linux2\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\config\* 
%_DEST%\lib%_EXT%\python\config\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\bsddb\* 
%_DEST%\lib%_EXT%\python\bsddb\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\logging\* 
%_DEST%\lib%_EXT%\python\logging\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\idlelib\* 
%_DEST%\lib%_EXT%\python\idlelib\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\idlelib\Icons\* 
%_DEST%\lib%_EXT%\python\idlelib\Icons\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\wsgiref\* 
%_DEST%\lib%_EXT%\python\wsgiref\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\json\* %_DEST%\lib%_EXT%\python\json\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\lib2to3\* 
%_DEST%\lib%_EXT%\python\lib2to3\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\lib2to3\fixes\* 
%_DEST%\lib%_EXT%\python\lib2to3\fixes\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\lib2to3\pgen2\* 
%_DEST%\lib%_EXT%\python\lib2to3\pgen2\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\sqlite3\* 
%_DEST%\lib%_EXT%\python\sqlite3\*
-..\%__SRC%\misc\build\Python-2.7.13\Lib\ctypes\* 

[Libreoffice-bugs] [Bug 113274] Void Linux: Installation fails due to libpoppler.so.70

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113274

r...@mail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from r...@mail.com ---
Thank you for whatever you did, because now the xbps-install software
downloaded and installed the linreoffice software without incident. 

Interestingly though, I noticed that the libreofffice binary is now named
libreoffice5.4

Thanks again for your prompt reply and your help. I am marking this bug as
resolved since the installation worked for me.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112228] [META] Desktop environment bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112228
Bug 112228 depends on bug 113274, which changed state.

Bug 113274 Summary: Void Linux: Installation fails due to libpoppler.so.70
https://bugs.documentfoundation.org/show_bug.cgi?id=113274

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80758] TOOLBAR: empty values in button names not respected

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80758

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113342


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113342
[Bug 113342] [META] Toolbar label bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113342] [META] Toolbar label bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113342

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80758


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80758
[Bug 80758] TOOLBAR: empty values in button names not respected
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113342] [META] Toolbar label bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113342

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113342] New: [META] Toolbar label bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113342

Bug ID: 113342
   Summary: [META] Toolbar label bugs and enhancements
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 103239


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113342


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113342
[Bug 113342] [META] Toolbar label bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108400] [META] Toolbar tooltip bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108400

Yousuf Philips (jay)  changed:

   What|Removed |Added

  Alias|Toolbar-Tooltips|Toolbars-Tooltips

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||36486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=36486
[Bug 36486] Replace an existing image in a document with another
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 36486] Replace an existing image in a document with another

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36486

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80725


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80725
[Bug 80725] EDITING: right-click replace image option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80725] EDITING: right-click replace image option

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80725

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85811] [META] Main menu bar bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80716


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80716
[Bug 80716] Adding an icon to the Tools > Options menu entry
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106228] [META] Icon theme issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106228

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80716


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80716
[Bug 80716] Adding an icon to the Tools > Options menu entry
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 80716] Adding an icon to the Tools > Options menu entry

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80716

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||106228, 85811


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85811
[Bug 85811] [META] Main menu bar bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=106228
[Bug 106228] [META] Icon theme issues
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 103270] [META] Image/Picture dialog bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103270

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80681


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80681
[Bug 80681] DIALOG: Picture has extra white spacing in picture dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108804] [META] Print preview bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108804

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80655


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80655
[Bug 80655] VIEWING: 'Page Width' and 'Optimal View' dont work correctly in
print preview
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107923] [META] Zoom issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107923

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80655


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80655
[Bug 80655] VIEWING: 'Page Width' and 'Optimal View' dont work correctly in
print preview
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80655] VIEWING: 'Page Width' and 'Optimal View' dont work correctly in print preview

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80655

Yousuf Philips (jay)  changed:

   What|Removed |Added

  Component|LibreOffice |Writer
 Blocks||107923, 108804
Summary|VIEWING: 'Page Width' and   |VIEWING: 'Page Width' and
   |'Optimal View' dont work|'Optimal View' dont work
   |correctly in Page Preview   |correctly in print preview

--- Comment #4 from Yousuf Philips (jay)  ---
Still present

Version: 6.0.0.0.alpha0+
Build ID: c5a93cad149618bbd43632f1660a558c34bdbf7e
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-10-07_01:12:25
Locale: en-US (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107923
[Bug 107923] [META] Zoom issues
https://bugs.documentfoundation.org/show_bug.cgi?id=108804
[Bug 108804] [META] Print preview bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86066] [META] Improvements to the statusbar

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86066

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80617


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80617
[Bug 80617] UI: Simplification of status bar page numbering
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 111310] [META] Data statistics bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111310

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80601


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80601
[Bug 80601] EDITING: Analysis of Variance dialog doesnt accept typed/pasted
cell info
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80601] EDITING: Analysis of Variance dialog doesnt accept typed/ pasted cell info

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80601

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||111310


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111310
[Bug 111310] [META] Data statistics bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80545] MENU: Moving 'Gallery' from Tools to View

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80545

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||85811


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85811
[Bug 85811] [META] Main menu bar bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85811] [META] Main menu bar bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80545


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80545
[Bug 80545] MENU: Moving 'Gallery' from Tools to View
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113341] After loading 5.4.2.2, upon opening, the LibreOffice logo flashes briefly and program does not load.

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113341

kzieb...@cox.net  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108400] [META] Toolbar tooltip bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108400

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80542


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80542
[Bug 80542] UI: toolbar tooltip for insert image is titled 'from file'
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80542] UI: toolbar tooltip for insert image is titled 'from file'

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80542

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108400


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108400
[Bug 108400] [META] Toolbar tooltip bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113341] New: After loading 5.4.2.2, upon opening, the LibreOffice logo flashes briefly and program does not load.

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113341

Bug ID: 113341
   Summary: After loading 5.4.2.2, upon opening, the LibreOffice
logo flashes briefly and program does not load.
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kzieb...@cox.net

Description:
Updated Ver.5.4.1.2 to Ver. 5.4.2.2, on my Win XP/32 bit machine.  When I try
to open updated version, the LibreOffice logo briefly flashes (<1 second)and
the program does not open.  I tried to repair the new install with the
Installation files "REPAIR Function", but it does nothing to fix the problem. 
I also attempted to fix problem by removing the install completely and
re-installing 5.4.2.2 directly several times. Problem persists.  I've used
LibreOffice for 2-3 years with absolutely no problems.   

Steps to Reproduce:
1.Reloaded and attempted "Repair" several times - no change in behavior.
2.
3.

Actual Results:  
Removed and reloaded 5.4.2.2 several times. Still would not open.

Expected Results:
Opened! 5.4.2.2 will not open on my XP/32 machine..


Reproducible: Always

User Profile Reset: No, I'm the only user on this machine.

Additional Info:
ASUS P8P67/LE motherboard, i7 level 2 processor, 4Gb of memory, Nvidia 560
video card, 12Gb Samsung Solid State hard drive, Windows XP, 32 Bit, Service
Pack 3.


User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85811] [META] Main menu bar bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80536


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80536
[Bug 80536] UI: Menu option for 'Edit File' toolbar entry
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80533] RTL: Arabic UI has increase indent after decrease indent

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80533

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||112810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic language-specific RTL issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112810] [META] Arabic language-specific RTL issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80533


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80533
[Bug 80533] RTL: Arabic UI has increase indent after decrease indent
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80508] PDF: exporting document to pdf crashes LibO [Warning: Difficult to repro]

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80508

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||103378


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80508


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80508
[Bug 80508] PDF: exporting document to pdf crashes LibO [Warning: Difficult to
repro]
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108400] [META] Toolbar tooltip bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108400

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80490


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80490
[Bug 80490] Nonprinting Characters and AutoSpellcheck tooltips
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102345

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80490


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80490
[Bug 80490] Nonprinting Characters and AutoSpellcheck tooltips
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81234] [META] RTF filter issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80486
[Bug 80486] FILEOPEN: RTF file opens with a first blank line
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80468


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80468
[Bug 80468] FILEOPEN: Image background color not retained, defaults to blue
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80461] EDITING: context menu for formula bar input line

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80461

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108660


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108660
[Bug 108660] [META] Formula bar (input line) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108660] [META] Formula bar (input line) bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108660

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80461


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80461
[Bug 80461] EDITING: context menu for formula bar input line
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80346


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80346
[Bug 80346] Preferred default fonts for Asian and CTL documents should be Libre
fonts
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 80346] Preferred default fonts for Asian and CTL documents should be Libre fonts

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80346

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||43808


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 80346] Preferred default fonts for Asian and CTL documents should be Libre fonts

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80346

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||43808


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113340] [META] RTF (text) paragraph-related issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113340

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80167
[Bug 80167] FILESAVE: saving to RTF make it lose page breaks
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: icon-themes/tango officecfg/registry

2017-10-21 Thread Yousuf Philips
 icon-themes/tango/links.txt  |   12 

 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu|3 --
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   15 
++
 3 files changed, 15 insertions(+), 15 deletions(-)

New commits:
commit dc2d133e7953f08f73ef9cd0b40786764b0e2035
Author: Yousuf Philips 
Date:   Thu Oct 5 10:09:20 2017 +0400

tdf#107569 Tango: Fix missing icons in menu bar

Change-Id: I59e2dc441994a6d21df2b446854aec6dae90f290
Reviewed-on: https://gerrit.libreoffice.org/43152
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/tango/links.txt b/icon-themes/tango/links.txt
index 0dc44968636a..9fb8bf94e022 100644
--- a/icon-themes/tango/links.txt
+++ b/icon-themes/tango/links.txt
@@ -609,3 +609,15 @@ cmd/lc_cellprotection.png cmd/lc_protect.png
 cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png
 cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png
 cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png
+
+# menu bar submenus
+cmd/sc_shapesmenu.png cmd/sc_basicshapes.rectangle.png
+cmd/sc_shapeslinemenu.png cmd/sc_line.png
+cmd/sc_formattextmenu.png cmd/sc_text.png
+cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png
+cmd/sc_textalign.png cmd/sc_alignblock.png
+cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png
+cmd/sc_numberformatmenu.png cmd/sc_numberformatdecimal.png
+cmd/sc_formatimagemenu.png cmd/sc_insertgraphic.png
+cmd/sc_formatframemenu.png cmd/sc_inserttextframe.png
+
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index aa0fafd17c5c..c709e396fa85 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -72,9 +72,6 @@
 
   Freeze ~Cells
 
-
-  1
-
   
   
 
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 884afecbd80c..fa8a7a09d8de 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3451,17 +3451,11 @@
 
   ~Frame
 
-
-  1
-
   
   
 
   Footnote and Endno~te
 
-
-  1
-
   
   
 
@@ -3509,9 +3503,6 @@
 
   St~yles
 
-
-  1
-
   
   
 
@@ -3525,9 +3516,6 @@
 
   ~Form
 
-
-  1
-
   
   
 
@@ -6081,6 +6069,9 @@
 
   Alig~n
 
+
+  1
+
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107569] Missing tango icon

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107569

--- Comment #13 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=dc2d133e7953f08f73ef9cd0b40786764b0e2035

tdf#107569 Tango: Fix missing icons in menu bar

It will be available in 6.0.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113340] [META] RTF (text) paragraph-related issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113340

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||7830,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||2682
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112682] [META] DOC (binary) paragraph-related issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112682

Yousuf Philips (jay)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||3340

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107830] [META] DOCX (OOXML) paragraph-related issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830

Yousuf Philips (jay)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||3340

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113340] New: [META] RTF (text) paragraph-related issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113340

Bug ID: 113340
   Summary: [META] RTF (text) paragraph-related issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 81234


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81234
[Bug 81234] [META] RTF filter issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81234] [META] RTF filter issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113340


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113340
[Bug 113340] [META] RTF (text) paragraph-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106228] [META] Icon theme issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106228

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80161


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80161
[Bug 80161] No 'Export As PDF' Icon in File Menu
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112810] [META] Arabic language-specific RTL issues

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80134


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80134
[Bug 80134] START CENTER: 'Base Database' is not being translated to Arabic
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80134] START CENTER: 'Base Database' is not being translated to Arabic

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80134

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||112810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic language-specific RTL issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113339] [META] Updates bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113339

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||80110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80110
[Bug 80110] UPDATE: get 'checking for an update failed' error when checking for
updates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80110

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113339


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113339
[Bug 113339] [META] Updates bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80110

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113339


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113339
[Bug 113339] [META] Updates bug tracker
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 113339] [META] Updates bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113339

--- Comment #1 from Yousuf Philips (jay)  ---
Meta about issues relating to updating libreoffice like

* Help > Check for Updates...
* Tools > Options > Online Updates

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113339] [META] Updates bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113339

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113339] New: [META] Updates bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113339

Bug ID: 113339
   Summary: [META] Updates bug tracker
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 54242


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54242
[Bug 54242] [META] Incremental update support (small partial diff updates)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54242] [META] Incremental update support (small partial diff updates)

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54242

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113339


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113339
[Bug 113339] [META] Updates bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 65353] FILESAVE: LibreOffice embeds fonts defined in styles ( e.g. CJK and CTL fonts) but arent used in the document

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65353

Yousuf Philips (jay)  changed:

   What|Removed |Added

Summary|FILESAVE: LO embeds |FILESAVE: LibreOffice
   |non-used fonts  |embeds fonts defined in
   ||styles (e.g. CJK and CTL
   ||fonts) but arent used in
   ||the document

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 69060] FILEOPEN: Documents with embedded fonts take too long to open or save

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69060

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113338] [META] Embedded fonts bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113338

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77753] FILESAVE: Embedding font does not work for a particular file with emoji and symbols in Unicode 6

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77753

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102985] [META] Font bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102985

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95062] Add more options to embed fonts in documents

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95062

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 70192] FILEOPEN: Fails to open file with embedded font

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70192

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80107] FILEOPEN: embedded fonts dont display when loading from already open LibO on Windows

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80107

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 72456] Font Embedding does not work on MacOS

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72456

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83675] embedded fonts are double and also non-used fonts are embedded - the used font is not embedded

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83675

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95062] Add more options to embed fonts in documents

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95062

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83675] embedded fonts are double and also non-used fonts are embedded - the used font is not embedded

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83675

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 65353] FILESAVE: LO embeds non-used fonts

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65353

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 72456] Font Embedding does not work on MacOS

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72456

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113338


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113338
[Bug 113338] [META] Embedded fonts bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77753] FILESAVE: Embedding font does not work for a particular file with emoji and symbols in Unicode 6

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77753

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80107] FILEOPEN: embedded fonts dont display when loading from already open LibO on Windows

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80107

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113338] New: [META] Embedded fonts bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113338

Bug ID: 113338
   Summary: [META] Embedded fonts bugs and enhancements
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 65353, 69060, 72456, 77753, 83675, 95062, 70192, 80107
Blocks: 102985


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=65353
[Bug 65353] FILESAVE: LO embeds non-used fonts
https://bugs.documentfoundation.org/show_bug.cgi?id=69060
[Bug 69060] FILEOPEN: Documents with embedded fonts take too long to open or
save
https://bugs.documentfoundation.org/show_bug.cgi?id=70192
[Bug 70192] FILEOPEN: Fails to open file with embedded font
https://bugs.documentfoundation.org/show_bug.cgi?id=72456
[Bug 72456] Font Embedding does not work on MacOS
https://bugs.documentfoundation.org/show_bug.cgi?id=77753
[Bug 77753] FILESAVE: Embedding font does not work for a particular file with
emoji and symbols in Unicode 6
https://bugs.documentfoundation.org/show_bug.cgi?id=80107
[Bug 80107] FILEOPEN: embedded fonts dont display when loading from already
open LibO on Windows
https://bugs.documentfoundation.org/show_bug.cgi?id=83675
[Bug 83675] embedded fonts are double and also non-used fonts are embedded -
the used font is not embedded
https://bugs.documentfoundation.org/show_bug.cgi?id=95062
[Bug 95062] Add more options to embed fonts in documents
https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 65353] FILESAVE: LO embeds non-used fonts

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65353

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 69060] FILEOPEN: Documents with embedded fonts take too long to open or save

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69060

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 70192] FILEOPEN: Fails to open file with embedded font

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70192

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|102985  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102985
[Bug 102985] [META] Font bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102985] [META] Font bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102985

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|65353, 69060, 72456, 77753, |
   |83675, 95062, 70192, 80107  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=65353
[Bug 65353] FILESAVE: LO embeds non-used fonts
https://bugs.documentfoundation.org/show_bug.cgi?id=69060
[Bug 69060] FILEOPEN: Documents with embedded fonts take too long to open or
save
https://bugs.documentfoundation.org/show_bug.cgi?id=70192
[Bug 70192] FILEOPEN: Fails to open file with embedded font
https://bugs.documentfoundation.org/show_bug.cgi?id=72456
[Bug 72456] Font Embedding does not work on MacOS
https://bugs.documentfoundation.org/show_bug.cgi?id=77753
[Bug 77753] FILESAVE: Embedding font does not work for a particular file with
emoji and symbols in Unicode 6
https://bugs.documentfoundation.org/show_bug.cgi?id=80107
[Bug 80107] FILEOPEN: embedded fonts dont display when loading from already
open LibO on Windows
https://bugs.documentfoundation.org/show_bug.cgi?id=83675
[Bug 83675] embedded fonts are double and also non-used fonts are embedded -
the used font is not embedded
https://bugs.documentfoundation.org/show_bug.cgi?id=95062
[Bug 95062] Add more options to embed fonts in documents
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80043] EDITING: Insert hyperlink dialog wont use text in highlighted cell as hyperlink text

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80043

Yousuf Philips (jay)  changed:

   What|Removed |Added

Summary|EDITING: dialog to insert   |EDITING: Insert hyperlink
   |hyperlink doesn't use cell  |dialog wont use text in
   |text when the cell -not |highlighted cell as
   |(part of) the content- is   |hyperlink text
   |selected|

--- Comment #3 from Yousuf Philips (jay)  ---
Still present.

steps:
1. open calc
2. type 12 into A1 and press enter
3. press up key to return to A1
4. insert hyperlink
5. 'text' field doesnt show '12'

Version: 6.0.0.0.alpha1+
Build ID: 8ba60ca42d4d1873b8cd85c5d3b5ed2f0e19df60
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113337] New: FILEOPEN: XLSX - Hyperlinks always displayed as blue

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113337

Bug ID: 113337
   Summary: FILEOPEN: XLSX - Hyperlinks always displayed as blue
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 107332, 113335

Created attachment 137197
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137197=edit
sample

steps:
1. open attachment
2. notice that hyperlink is in blue
3. check the 'Excel Built-in Hyperlink' cell style assigned to the cell, which
has it as red

Version: 6.0.0.0.alpha1+
Build ID: 8ba60ca42d4d1873b8cd85c5d3b5ed2f0e19df60
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107332
[Bug 107332] [META] Calc cell styles bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113335
[Bug 113335] [META] XLSX (OOXML) hyperlink bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107332] [META] Calc cell styles bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107332

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113337


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113337
[Bug 113337] FILEOPEN: XLSX - Hyperlinks always displayed as blue
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113335] [META] XLSX (OOXML) hyperlink bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113335

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113337


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113337
[Bug 113337] FILEOPEN: XLSX - Hyperlinks always displayed as blue
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113336] Crash when FILEOPEN .DOT Template

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113336

Richard  changed:

   What|Removed |Added

 Attachment #137194|0   |1
is obsolete||

--- Comment #2 from Richard  ---
Created attachment 137196
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137196=edit
Brochure

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113336] Crash when FILEOPEN .DOT Template

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113336

--- Comment #1 from Richard  ---
Created attachment 137195
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137195=edit
Correct pg2

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113336] New: Crash when FILEOPEN .DOT Template

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113336

Bug ID: 113336
   Summary: Crash when FILEOPEN .DOT Template
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mr.buggy_...@outlook.com

Created attachment 137194
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137194=edit
Brochure

When I open the Business brochure template located at
https://templates.office.com/en-us/Business-brochure-Level-design-TM06087460
and close it, a dialog box opens that says LibreOffice crashed due to an
unexpected error. In addition, the boat on the second page is formatted
incorrectly.

Steps to Reproduce:
1. Download the Document
2. Open in LibreOffice 5.4.2.2 or version 6 alpha.
3. Close the Document or Close and Reopen the document.
4. Make a selection on the Crash Report dialog box

Actual Results:
Boat Covers middle text on pg2, LibreOffice crashes on exit.

http://crashreport.libreoffice.org/stats/crash_details/2156fece-bcc3-4062-b715-842c43896055

Expected Results:
No crashes on exit, middle section on page two carries onto the right side of
the page to leave space for boat.

Locale: en-US
Module: TextDocument
OS: Linux (Lubuntu 17.10 64bit)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


CppCheck Report Update

2017-10-21 Thread cppcheck.libreoff...@gmail.com

A new cppcheck report is available at : 
http://dev-builds.libreoffice.org/cppcheck_reports/master/


Note:
The script generating this report was run at :
2017-22-10_02:13:50 with user buildslave at host vm140 as 
/home/buildslave/source/dev-tools/cppcheck/cppcheck-report.sh -s 
/home/buildslave/source/libo-core -c /home/buildslave/source/cppcheck -w 
/home/buildslave/tmp/www

It can be found and improved here:

https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=cppcheck/cppcheck-report.sh


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 111769] Black is set as New color in Area tab when a table with multiple colors in its cells is selected

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111769

--- Comment #19 from Tamás Zolnai  ---
Ok, then. So as I see, we can agree in not selecting any of the buttons when we
have an ambigous fill. The relevant difference between selecting "None" or none
of the buttons is that in the first case transparent color is applied. So I
guess Jay also happy with the second case.

@Ekansh Jha: If you are still interested in working on this easy hack, that is
the behavior we need to have (selecting none of the buttons on area /
background page).
In SvxAreaTabPage::ActivatePage() method you can see the algorithm which
selects the button based on fill type. When we have ambigous fill properties
you need to skip setting any button. Also make sure that in
SvxAreaTabPage::DeactivatePage() method SfxItemSet is not changed, when no
button is selected.
To find out how to check whether fill properties are ambigous, I suggest to
check what happens on Color page (SvxColorTabPage class). Since it behaves
differently in case of ambigouity, I expect this information is there in some
form.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113335] [META] XLSX (OOXML) hyperlink bug tracker

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113335

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

2017-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|80040   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80040
[Bug 80040] FILESAVE: XLSX - Hyperlinks don't show up in Excel in blue or
underlined
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   >