LibreOffice Gerrit News for core on 2014-08-10

2014-08-10 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things! 
+ jurt: Use T T[] toArray(T[] a)
  in https://gerrit.libreoffice.org/10853 from Robert Antoni Buj i Gelonch
  about module jurt
+ javaunohelper: Iterate over each Entry in a Map  Enhanced for-loops
  in https://gerrit.libreoffice.org/10852 from Robert Antoni Buj i Gelonch
  about module javaunohelper
+ javaunohelper: Enhancement loading bootstrap_parameters in Bootstrap_Test
  in https://gerrit.libreoffice.org/10850 from Robert Antoni Buj i Gelonch
  about module javaunohelper
 End of freshness 

+ Code clean-up/consolidation task.
  in https://gerrit.libreoffice.org/5926 from Vishv Brahmbhatt
  about module basic, cui, framework, unotools


* Merged changes on master for project core changed in the last 25 hours:

+ fdo#82278 SfxUInt16Item - SfxInt16Item
  in https://gerrit.libreoffice.org/10823 from Maxim Monastirsky
+ fdo#75757: remove inheritance to std::vector
  in https://gerrit.libreoffice.org/10847 from Takeshi Abe
+ javaunohelper: Iterate over each Entry in a Map
  in https://gerrit.libreoffice.org/10846 from Robert Antoni Buj i Gelonch
+ jurt: Number parsing
  in https://gerrit.libreoffice.org/10845 from Robert Antoni Buj i Gelonch
+ Fixed erroneous comment (by me).
  in https://gerrit.libreoffice.org/10809 from Matthew Pottage
+ VS2013: Prefer it over VS2012 and VS2010
  in https://gerrit.libreoffice.org/10154 from David Ostrovsky
+ Converted RID_XMLSECTP_GENERAL to Widget Layout.
  in https://gerrit.libreoffice.org/10842 from Rachit Gupta


* Abandoned changes on master for project core changed in the last 25 hours:

+ Changes for Wordml
  in https://gerrit.libreoffice.org/9013 from Michel Messak
+ fdo#64945 Remove inconvenient localized symbol code.
  in https://gerrit.libreoffice.org/8696 from Darshana Padmadas
+ javaunohelper: Bootstrap_Test.java needs at least 2 arguments
  in https://gerrit.libreoffice.org/10848 from Robert Antoni Buj i Gelonch
+ fdo#57950 Replace chained append( with operator+)
  in https://gerrit.libreoffice.org/10149 from Petr Vorel
+ VS2013: Add support for new msbuild and Windows SDK 8.1
  in https://gerrit.libreoffice.org/10155 from David Ostrovsky
+ fix make dependencies related issues
  in https://gerrit.libreoffice.org/10841 from Douglas Mencken


* Open changes needing tweaks, but being untouched for more than a week:

+ fdo#79541 :Corrupt: Shape  enclosed within a floating table
  in https://gerrit.libreoffice.org/9914 from Rajashri Udhoji
+ fdo#79422 Fix hang problem After ReplaceAll by closing Search Dialog
  in https://gerrit.libreoffice.org/10643 from Seyeong Kim
+ Rel fdo#48068: fix errors when 2 decimals in svg path position
  in https://gerrit.libreoffice.org/10544 from Joren De Cuyper
+ fdo#80996:Fix for DataLabel not preserved for ColumnChart after RT
  in https://gerrit.libreoffice.org/10169 from Dushyant Bhalgami
+ VS2013: Make 64 bit shell extensions optional
  in https://gerrit.libreoffice.org/10163 from David Ostrovsky
+ fdo#79018: LO hangs while opening file.
  in https://gerrit.libreoffice.org/9564 from Yogesh Bharate
+ Use assert instead of OSL_ASSERT in sal/
  in https://gerrit.libreoffice.org/10113 from Arnaud Versini
+ move OpenGLContext to SAL
  in https://gerrit.libreoffice.org/9429 from David Tardon
+ fdo#77716 : Paragraph spacing is not preserved after RT.
  in https://gerrit.libreoffice.org/9197 from Tushar Bende
+ fdo#77121 Header / Footer positions not preserved after RT
  in https://gerrit.libreoffice.org/9235 from Priyanka Gaikwad


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: javaunohelper/test

2014-08-10 Thread rbuj
 javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java |   17 
+-
 1 file changed, 10 insertions(+), 7 deletions(-)

New commits:
commit aa0e3701aad1a8a955773e869d9a6b59eac51e72
Author: rbuj robert@gmail.com
Date:   Sat Aug 9 17:56:48 2014 +0200

javaunohelper: Enhancement loading bootstrap_parameters in 
Bootstrap_Test.java

Change-Id: I685fc278ec812d766ff83993d234ca3261a71dba
Reviewed-on: https://gerrit.libreoffice.org/10850
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java 
b/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
index 8e8032f..f52ce28 100644
--- a/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
+++ b/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
@@ -92,13 +92,16 @@ public class Bootstrap_Test {
 usage();
 
 java.util.HashMapString,String bootstrap_parameters = new 
java.util.HashMapString,String();
-for ( int nPos = 1; nPos  args.length; ++nPos )
-{
-String arg = args[ nPos ];
-int n = arg.indexOf( '=' );
-if (n  0)
-{
-bootstrap_parameters.put( arg.substring( 0, n ), 
arg.substring( n +1 ) );
+for ( int nPos = 1; nPos  args.length; ++nPos ) {
+if (args[nPos].contains(=)) {
+String bootstrap_parameter[] = args[nPos].split(=);
+if (bootstrap_parameter.length == 2){
+bootstrap_parameters.put( bootstrap_parameter[0], 
bootstrap_parameter[1] );
+} else{
+usage();
+}
+} else{
+usage();
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 8 commits - configure.ac instsetoo_native/CustomTarget_setup.mk jurt/com RepositoryFixes.mk scp2/source solenv/gbuild ure/Package_install.mk ure/source

2014-08-10 Thread Tor Lillqvist
 RepositoryFixes.mk  |2 +
 configure.ac|5 ++--
 instsetoo_native/CustomTarget_setup.mk  |4 +--
 jurt/com/sun/star/lib/util/NativeLibraryLoader.java |   10 
 scp2/source/ooo/common_brand.scp|4 +--
 solenv/gbuild/CppunitTest.mk|2 -
 ure/Package_install.mk  |4 ---
 ure/source/unorc|   23 
 ure/source/unorc.in |   23 
 9 files changed, 44 insertions(+), 33 deletions(-)

New commits:
commit 4625227ed8db6b738f47f193df48d2791fb25246
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Aug 8 17:47:38 2014 +0300

Seems to work now

Change-Id: I59402e2f0503369370cc87017e0c8e01541ccfa0

diff --git a/configure.ac b/configure.ac
index 898bb53..a390444 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1351,7 +1351,7 @@ AC_ARG_ENABLE(macosx-sandbox,
 AC_ARG_ENABLE(canonical-installation-tree-structure,
 AS_HELP_STRING([--enable-canonical-installation-tree-structure],
 [Make the installation tree structure be more canonical for
- the platform. Implemented only for OS X. Experimental and currently 
broken.]),
+ the platform. Implemented only for OS X. Experimental.]),
 ,)
 
 
commit 59622dabdec080c2a720a17987dceba2c03afe90
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Aug 8 11:28:49 2014 +0300

javaldx is not built for WNT or MACOSX so no point in the uno wrapper script

Change-Id: I127205ebf6fb3fe01de6803a989e970f46df22bb

diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk
index cc37c50..6023b04 100644
--- a/RepositoryFixes.mk
+++ b/RepositoryFixes.mk
@@ -22,7 +22,9 @@
 gb_Executable_FILENAMES := $(foreach group,$(gb_Executable_VALIDGROUPS),\
$(foreach 
exe,$(gb_Executable_$(group)),$(exe):$(exe)$(gb_Executable_EXT)))
 
+ifneq (,$(filter-out MACOSX WNT,$(OS)))
 gb_Executable_FILENAMES := $(patsubst 
uno:uno,uno:uno.bin,$(gb_Executable_FILENAMES))
+endif
 gb_Executable_FILENAMES := $(patsubst 
unopkg_bin:unopkg_bin%,unopkg_bin:unopkg.bin,$(gb_Executable_FILENAMES))
 gb_Executable_FILENAMES := $(patsubst 
unopkg_com:unopkg_com%,unopkg_com:unopkg.com,$(gb_Executable_FILENAMES))
 gb_Executable_FILENAMES := $(patsubst 
crashrep_com:crashrep_com%,crashrep_com:crashrep.com,$(gb_Executable_FILENAMES))
diff --git a/ure/Package_install.mk b/ure/Package_install.mk
index 44b5d7c..19f5492 100644
--- a/ure/Package_install.mk
+++ b/ure/Package_install.mk
@@ -9,7 +9,7 @@
 
 $(eval $(call gb_Package_Package,ure_install,$(SRCDIR)/ure/source))
 
-ifneq (WNT,$(OS))
+ifneq (,$(filter-out MACOSX WNT,$(OS)))
 $(eval $(call 
gb_Package_add_file,ure_install,$(LIBO_URE_BIN_FOLDER)/startup.sh,startup.sh))
 $(eval $(call 
gb_Package_add_symbolic_link,ure_install,$(LIBO_URE_BIN_FOLDER)/uno,startup.sh))
 endif
commit 5e5aa9b08a39530b0b117141f0f65d1dc2dad84e
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Aug 8 00:33:26 2014 +0300

Use LIBO_URE_BIN_FOLDER and LIBO_SHARE_JAVA_FOLDER

Needed in case of --enable-canonical-installation-tree-structure.

Change-Id: I965ebd9b89e1b9f7bb6534e3c25d29d3b470acf4

diff --git a/instsetoo_native/CustomTarget_setup.mk 
b/instsetoo_native/CustomTarget_setup.mk
index 0270ec8..48c264b 100644
--- a/instsetoo_native/CustomTarget_setup.mk
+++ b/instsetoo_native/CustomTarget_setup.mk
@@ -60,12 +60,12 @@ $(call 
gb_CustomTarget_get_workdir,instsetoo_native/setup)/$(call gb_Helper_get_
 echo 'UNO_SHARED_PACKAGES_CACHE=$${$$ORIGIN/$(call 
gb_Helper_get_rcfile,uno):UNO_SHARED_PACKAGES_CACHE}' \
 echo 'TMP_EXTENSIONS=$${$$ORIGIN/$(call 
gb_Helper_get_rcfile,uno):TMP_EXTENSIONS}' \
 echo 'UNO_USER_PACKAGES_CACHE=$${$$ORIGIN/$(call 
gb_Helper_get_rcfile,uno):UNO_USER_PACKAGES_CACHE}' \
-echo 'URE_BIN_DIR=$(if $(filter 
WNT,$(OS)),$${.link:$${BRAND_BASE_DIR}/ure-link}/bin,$${BRAND_BASE_DIR}/ure-link/bin)'
 \
+echo 'URE_BIN_DIR=$(if $(filter 
WNT,$(OS)),$${.link:$${BRAND_BASE_DIR}/ure-link}/bin,$${BRAND_BASE_DIR}/$(LIBO_URE_BIN_FOLDER))'
 \
 echo 'URE_MORE_JAVA_CLASSPATH_URLS=$(if 
$(SYSTEM_HSQLDB),$(HSQLDB_JAR))' \
 echo 
'URE_OVERRIDE_JAVA_JFW_SHARED_DATA=$${BRAND_BASE_DIR}/$(LIBO_SHARE_FOLDER)/config/javasettings_$${_OS}_$${_ARCH}.xml'
 \
 echo 
'URE_OVERRIDE_JAVA_JFW_USER_DATA=$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call
 
gb_Helper_get_rcfile,bootstrap):UserInstallation}/user/config/javasettings_$${_OS}_$${_ARCH}.xml'
 \
 echo 'URE_LIB_DIR=$(if $(filter 
WNT,$(OS)),$${.link:$${BRAND_BASE_DIR}/ure-link}/bin,$${BRAND_BASE_DIR}/ure-link/lib)'
 \
-echo 'URE_MORE_JAVA_TYPES=$$ORIGIN/classes/unoil.jar 
$$ORIGIN/classes/ScriptFramework.jar $${$${$$ORIGIN/$(call 

[Libreoffice-commits] core.git: javaunohelper/com

2014-08-10 Thread rbuj
 javaunohelper/com/sun/star/comp/helper/ComponentContext.java |   12 +++
 1 file changed, 4 insertions(+), 8 deletions(-)

New commits:
commit c77e929c4bfa6e9aee3d6103ef3629a9bcf583ae
Author: rbuj robert@gmail.com
Date:   Sat Aug 9 21:15:11 2014 +0200

javaunohelper: Iterate over each Entry in a Map  Enhanced for-loops

Change-Id: I7abd62e0717bfc9c9b36a431092ddd92ef72684a
Reviewed-on: https://gerrit.libreoffice.org/10852
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/javaunohelper/com/sun/star/comp/helper/ComponentContext.java 
b/javaunohelper/com/sun/star/comp/helper/ComponentContext.java
index 30ff8ea..6f2d46a 100644
--- a/javaunohelper/com/sun/star/comp/helper/ComponentContext.java
+++ b/javaunohelper/com/sun/star/comp/helper/ComponentContext.java
@@ -29,7 +29,6 @@ import com.sun.star.lang.XEventListener;
 import com.sun.star.lang.EventObject;
 
 import java.util.Hashtable;
-import java.util.Iterator;
 import java.util.ArrayList;
 
 
@@ -230,23 +229,20 @@ public class ComponentContext implements 
XComponentContext, XComponent
 
 // fire events
 EventObject evt = new EventObject( this );
-IteratorXEventListener eventListener = m_eventListener.iterator();
-while (eventListener.hasNext())
+for (XEventListener listener : m_eventListener)
 {
-XEventListener listener = eventListener.next();
 listener.disposing( evt );
 }
 m_eventListener.clear();
 
 XComponent tdmgr = null;
 // dispose values, then service manager, then typdescription manager
-IteratorString keys = m_table.keySet().iterator();
-while (keys.hasNext())
+for (java.util.Map.EntryString, Object entry : m_table.entrySet())
 {
-String name = keys.next();
+String name = entry.getKey();
 if (! name.equals( SMGR_NAME ))
 {
-Object o = m_table.get( name );
+Object o = entry.getValue();
 if (o instanceof ComponentContextEntry)
 {
 o = ((ComponentContextEntry)o).m_value;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: jurt/com

2014-08-10 Thread rbuj
 jurt/com/sun/star/comp/servicemanager/ServiceManager.java |   15 +-
 1 file changed, 6 insertions(+), 9 deletions(-)

New commits:
commit 85ab4a14c541f3d6c30300d102b97f8564a1c7ee
Author: rbuj robert@gmail.com
Date:   Sun Aug 10 03:10:29 2014 +0200

jurt: Use T T[] toArray(T[] a)


http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Set.html#toArray%28T%5b%5d%29

Change-Id: I601e77db3cc978d81aebddfe6abba1c020671913
Reviewed-on: https://gerrit.libreoffice.org/10853
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/jurt/com/sun/star/comp/servicemanager/ServiceManager.java 
b/jurt/com/sun/star/comp/servicemanager/ServiceManager.java
index a4a5f8d..38e5cb3 100644
--- a/jurt/com/sun/star/comp/servicemanager/ServiceManager.java
+++ b/jurt/com/sun/star/comp/servicemanager/ServiceManager.java
@@ -188,15 +188,12 @@ public class ServiceManager implements 
XMultiServiceFactory,
 public String[] getAvailableServiceNames()
 throws com.sun.star.uno.RuntimeException
 {
-int i = 0;
-String[] availableServiceNames = new 
String[factoriesByServiceNames.size()];
-
-java.util.IteratorString keys = 
factoriesByServiceNames.keySet().iterator();
-
-while (keys.hasNext())
-availableServiceNames[i++] = keys.next();
-
-return availableServiceNames;
+try{
+return factoriesByServiceNames.keySet().toArray(
+new String[ factoriesByServiceNames.size() ] );
+} catch(Exception ex) {
+throw new com.sun.star.uno.RuntimeException(ex.toString());
+}
 }
 
 // XMultiComponentFactory implementation
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Crash test update

2014-08-10 Thread crashtest.libreoff...@gmail.com
New crashtest update available at 
www.dev-builds.libreoffice.org/crashtest/afbbc4cf4ceea9445cbb584b50d511c512e5133f


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: May I know where is intro image and how to link it?

2014-08-10 Thread Wols Lists
On 10/08/14 02:52, LOH KOK HOE wrote:
 
 Thanks for informing, I don't know the source code has been far left
 behind. I could not tell which version I'm building because I get the
 source from LibreOffice development site. According to `git log`, the
 latest commit is on 12-07-2013, May I know how could I update my source
 to the latest version?

In the LO directory, git pull should download all the changes. If
you're on the master branch, that will then make the latest development
version your current version. If you've got a release branch checked
out, then you'll need to update your branch (sorry I can't remember that
off the top of my head).
 
 Regarding the build, since you mention solver has been dead for a year,
 may I know where would be the final executable being place?
 
Cheers,
Wol
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2014-08-10 Thread Maxim Monastirsky
 scp2/source/ooo/file_ooo.scp |2 ++
 scp2/source/ooo/module_hidden_ooo.scp|1 +
 scp2/source/ooo/module_lang_template.scp |1 +
 3 files changed, 4 insertions(+)

New commits:
commit b73ee73da55c5a00acc9adffc825157dd5b375e6
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Sun Aug 10 12:10:00 2014 +0300

fdo#78845 Packaging of fpicker ui files

Change-Id: I5edb560dc511f6f0e47984303ce41488806e9e20

diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp
index 6c75c79..dec9411 100644
--- a/scp2/source/ooo/file_ooo.scp
+++ b/scp2/source/ooo/file_ooo.scp
@@ -499,6 +499,7 @@ UI_FILELIST(dbtdata, UIConfig/modules/dbtdata.filelist)
 UI_FILELIST(desktop, UIConfig/desktop.filelist)
 UI_FILELIST(filter, UIConfig/filter.filelist)
 UI_FILELIST(formula, UIConfig/formula.filelist)
+UI_FILELIST(fps, UIConfig/fps.filelist)
 UI_FILELIST(sabpilot, UIConfig/modules/sabpilot.filelist)
 UI_FILELIST(scanner, UIConfig/modules/scanner.filelist)
 #ifdef DBCONNECTIVITY
@@ -538,6 +539,7 @@ UI_FILELIST_ALL_LANG(spropctrlr, modules/spropctrlr)
 UI_FILELIST_ALL_LANG(desktop, desktop)
 UI_FILELIST_ALL_LANG(filter, filter)
 UI_FILELIST_ALL_LANG(formula, formula)
+UI_FILELIST_ALL_LANG(fps, fps)
 UI_FILELIST_ALL_LANG(sabpilot, modules/sabpilot)
 UI_FILELIST_ALL_LANG(scalc, modules/scalc)
 UI_FILELIST_ALL_LANG(schart, modules/schart)
diff --git a/scp2/source/ooo/module_hidden_ooo.scp 
b/scp2/source/ooo/module_hidden_ooo.scp
index c4db019..9bab7b4 100644
--- a/scp2/source/ooo/module_hidden_ooo.scp
+++ b/scp2/source/ooo/module_hidden_ooo.scp
@@ -239,6 +239,7 @@ Module gid_Module_Root_Files_6
 gid_File_Share_Config_Sofficecfg_uiconfig_desktop,
 gid_File_Share_Config_Sofficecfg_uiconfig_filter,
 gid_File_Share_Config_Sofficecfg_uiconfig_formula,
+gid_File_Share_Config_Sofficecfg_uiconfig_fps,
 #ifdef DBCONNECTIVITY
 gid_File_Share_Config_Sofficecfg_uiconfig_sbibliography,
 #endif
diff --git a/scp2/source/ooo/module_lang_template.scp 
b/scp2/source/ooo/module_lang_template.scp
index 58c8e54..6b2538b 100644
--- a/scp2/source/ooo/module_lang_template.scp
+++ b/scp2/source/ooo/module_lang_template.scp
@@ -33,6 +33,7 @@ Module gid_Module_Langpack_Basis_Template
  gid_File_Share_Config_Sofficecfg_uiconfig_desktop_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_filter_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_formula_Lang,
+ gid_File_Share_Config_Sofficecfg_uiconfig_fps_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_sabpilot_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_scalc_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_schart_Lang,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 75025] LibreOffice 4.3 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75025

Bug 75025 depends on bug 78845, which changed state.

Bug 78845 Summary: UI Icon Create New Folder in dialog File Save (As) closes 
dialog and doesn't show the needed dialog
https://bugs.freedesktop.org/show_bug.cgi?id=78845

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 4 commits - writerfilter/source

2014-08-10 Thread Miklos Vajna
 writerfilter/source/ooxml/model.xml | 1814 
 1 file changed, 854 insertions(+), 960 deletions(-)

New commits:
commit 19ccb678d28dffea57c5d7c3ea623412f7fed236
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Aug 10 11:10:35 2014 +0200

Remove unused group elements

Change-Id: I6ea77279a002179f2dd30bc835bb810c91ee51c4

diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index 225628b..6fbec28 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -151,7 +151,6 @@
   /element
   /define
   define name=CT_OfficeStyleSheet
-group
   element name=themeElements
 ref name=CT_BaseStyles/
   /element
@@ -167,7 +166,6 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
   attribute name=name
 data type=string/
   /attribute
@@ -486,7 +484,6 @@
   /choice
   /define
   define name=CT_Shape3D
-group
 element name=bevelT
   ref name=CT_Bevel/
 /element
@@ -502,7 +499,6 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
   attribute name=z
 ref name=ST_Coordinate/
   /attribute
@@ -809,7 +805,6 @@
   /choice
   /define
   define name=CT_ColorScheme
-group
   element name=dk1
 ref name=CT_Color/
   /element
@@ -849,7 +844,6 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
 attribute name=name
   data type=string
   /data
@@ -905,7 +899,6 @@
   /element
   /define
   define name=CT_FontScheme
-group
   element name=majorFont
 ref name=CT_FontCollection/
   /element
@@ -915,7 +908,6 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
 attribute name=name
   data type=string/
 /attribute
@@ -937,7 +929,6 @@
   ref name=EG_FillProperties/
   /define
   define name=CT_StyleMatrix
-group
   element name=fillStyleLst
 ref name=CT_FillStyleList/
   /element
@@ -950,7 +941,6 @@
   element name=bgFillStyleLst
 ref name=CT_BackgroundFillStyleList/
   /element
-/group
   attribute name=name
 data type=string/
   /attribute
@@ -1166,7 +1156,6 @@
   /choice
   /define
   define name=CT_TextCharacterProperties
-group
 element name=ln
   ref name=CT_LineProperties/
 /element
@@ -1198,7 +1187,6 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
   attribute name=kumimoji
 data type=boolean/
   /attribute
@@ -1347,14 +1335,12 @@
   /attribute
   /define
   define name=CT_ColorChangeEffect
-group
   element name=clrFrom
 ref name=CT_Color/
   /element
   element name=clrTo
 ref name=CT_Color/
   /element
-/group
   attribute name=useA
 data type=boolean/
   /attribute
@@ -1642,7 +1628,6 @@
   /element
   /define
   define name=CT_GradientFillProperties
-group
 element name=gsLst
   ref name=CT_GradientStopList/
 /element
@@ -1650,7 +1635,6 @@
 element name=tileRect
   ref name=CT_RelativeRect/
 /element
-/group
   attribute name=flip
 ref name=ST_TileFlipMode/
   /attribute
@@ -1708,7 +1692,6 @@
   /choice
   /define
   define name=CT_Blip
-group
 choice
   element name=alphaBiLevel
 ref name=CT_AlphaBiLevelEffect/
@@ -1765,14 +1748,12 @@
 element name=extLst
   ref name=CT_OfficeArtExtensionList/
 /element
-/group
 ref name=AG_Blob/
   attribute name=cstate
 ref name=ST_BlipCompression/
   /attribute
   /define
   define name=CT_BlipFillProperties
-group
 element name=blip
   ref name=CT_Blip/
 /element
@@ -1780,7 +1761,6 @@
   ref name=CT_RelativeRect/
 /element
 ref name=EG_FillModeProperties/
-/group
   attribute name=dpi
 data type=unsignedInt/
   /attribute
@@ -1901,14 +1881,12 @@
   /choice
   /define
   define name=CT_PatternFillProperties
-group
 element name=fgClr
   

Re: May I know where is intro image and how to link it?

2014-08-10 Thread David Tardon
Hi,

On Sun, Aug 10, 2014 at 09:52:27AM +0800, LOH KOK HOE wrote:
 Thanks for informing, I don't know the source code has been far left
 behind. I could not tell which version I'm building because I get the
 source from LibreOffice development site. According to `git log`, the
 latest commit is on 12-07-2013, May I know how could I update my source to
 the latest version?

Use

git status

to see what branch you are on. If you are on master, run

git pull -r

to get the changes. If you are on a branch,

git checkout master

will put you on master.

 
 Regarding the build, since you mention solver has been dead for a year, may
 I know where would be the final executable being place?

In instdir/program .

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


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

2014-08-10 Thread Julien Nabet
 svx/source/fmcomp/fmgridcl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c64077a850cf22fa01223fe4ac459bd67de0f009
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Aug 10 11:36:55 2014 +0200

Typo: delet=delete

Change-Id: Ic0f4757fbd416bd7157b414b84a68b2541bc5b34

diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx
index aa5d42b..5a672de 100644
--- a/svx/source/fmcomp/fmgridcl.cxx
+++ b/svx/source/fmcomp/fmgridcl.cxx
@@ -777,7 +777,7 @@ void FmGridHeader::PostExecuteColumnContextMenu(sal_uInt16 
nColId, const PopupMe
 Reference ::com::sun::star::container::XIndexContainer   
xCols(static_castFmGridControl*(GetParent())-GetPeer()-getColumns());
 sal_uInt16 nPos = GetModelColumnPos(nColId);
 
-// remove and delet the menu we inserted in PreExecuteColumnContextMenu
+// remove and delete the menu we inserted in PreExecuteColumnContextMenu
 PopupMenu* pControlMenu = rMenu.GetPopupMenu(SID_FM_CHANGECOL);
 delete pControlMenu;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[GSoC] Weekly Report #11 - Dialog Widget Conversion

2014-08-10 Thread Szymon Kłos
This week I converted:
+ PAGE_MYSQL_NATIVE
+ PAGE_DBWIZARD_MYSQL_NATIVE
+ TAB_WIZ_TYPE_SELECT
+ TAB_WIZ_NAME_MATCHING
+ DLG_MAILMERGE
+ RID_SCDLG_CONFLICTS

Regards

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


Re: Crash test update

2014-08-10 Thread Markus Mohrhard
On Sun, Aug 10, 2014 at 10:27 AM, crashtest.libreoff...@gmail.com
crashtest.libreoff...@gmail.com wrote:
 New crashtest update available at 
 www.dev-builds.libreoffice.org/crashtest/afbbc4cf4ceea9445cbb584b50d511c512e5133f


The correct URL is
dev-builds.libreoffice.org/crashtest/afbbc4cf4ceea9445cbb584b50d511c512e5133f
and is fixed in the script so the next mail should contain the correct
link directly.

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

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


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

2014-08-10 Thread Maxim Monastirsky
 framework/source/services/autorecovery.cxx |   24 +---
 1 file changed, 17 insertions(+), 7 deletions(-)

New commits:
commit 5b9509115bd4adc5ef2618f0d9436cda1c0d9fbe
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Sun Aug 10 14:45:19 2014 +0300

fdo#71625 Don't loop autosave if userautosave fails

Should also fix most of the reports of fdo#46635
(I have no idea regarding the original report,
because it predates the autosave feature.)

Change-Id: I006d62053a159ab3157438a57dee56d6d0a8

diff --git a/framework/source/services/autorecovery.cxx 
b/framework/source/services/autorecovery.cxx
index a28a86b..ac68885 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -3114,6 +3114,23 @@ void AutoRecovery::implts_saveOneDoc(const OUString
 rInfo.DocumentState |= AutoRecovery::E_TRY_SAVE;
 implts_flushConfigItem(rInfo);
 
+// If userautosave is enabled, first try to save the original file.
+// Note that we must do it *before* calling storeToRecoveryFile, so in 
case of failure here
+// we won't remain with the modified flag set to true, even though the 
autorecovery save succeeded.
+try
+{
+// We must check here for an empty URL to avoid a This operation is 
not supported on this operating system.
+// message during autosave.
+if ((m_eJob  AutoRecovery::E_USER_AUTO_SAVE) == 
AutoRecovery::E_USER_AUTO_SAVE  !rInfo.OrgURL.isEmpty())
+{
+Reference XStorable  xDocSave(rInfo.Document, 
css::uno::UNO_QUERY_THROW);
+xDocSave-store();
+}
+}
+catch(const css::uno::Exception)
+{
+}
+
 sal_Int32 nRetry = RETRY_STORE_ON_FULL_DISC_FOREVER;
 bool  bError = false;
 do
@@ -3122,13 +3139,6 @@ void AutoRecovery::implts_saveOneDoc(const OUString
 {
 xDocRecover-storeToRecoveryFile( rInfo.NewTempURL, 
lNewArgs.getAsConstPropertyValueList() );
 
-// if userautosave is enabled, also save to the original file
-if((m_eJob  AutoRecovery::E_USER_AUTO_SAVE) == 
AutoRecovery::E_USER_AUTO_SAVE)
-{
-Reference XStorable  xDocSave(rInfo.Document, 
css::uno::UNO_QUERY_THROW);
-xDocSave-store();
-}
-
 #ifdef TRIGGER_FULL_DISC_CHECK
 throw css::uno::Exception();
 #else  // TRIGGER_FULL_DISC_CHECK
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 71625, which changed state.

Bug 71625 Summary: Endless autosave loop if the document is not linked to a file
https://bugs.freedesktop.org/show_bug.cgi?id=71625

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: May I know where is intro image and how to link it?

2014-08-10 Thread LOH KOK HOE
Thanks for your input. Since the final output has been redirect to
instdir/program, may I know whether ./soffice is still a valid executable
as I couldn't find it, how could I launch LibreOffice then?


On Sun, Aug 10, 2014 at 5:29 PM, David Tardon dtar...@redhat.com wrote:

 Hi,

 On Sun, Aug 10, 2014 at 09:52:27AM +0800, LOH KOK HOE wrote:
  Thanks for informing, I don't know the source code has been far left
  behind. I could not tell which version I'm building because I get the
  source from LibreOffice development site. According to `git log`, the
  latest commit is on 12-07-2013, May I know how could I update my source
 to
  the latest version?

 Use

 git status

 to see what branch you are on. If you are on master, run

 git pull -r

 to get the changes. If you are on a branch,

 git checkout master

 will put you on master.

 
  Regarding the build, since you mention solver has been dead for a year,
 may
  I know where would be the final executable being place?

 In instdir/program .

 D.

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


Re: May I know where is intro image and how to link it?

2014-08-10 Thread julien2412
You should find some answers here:
https://wiki.documentfoundation.org/Development
and more precisely here if you build on Linux:
https://wiki.documentfoundation.org/Development/BuildingOnLinux

To answer your question, when I want to launch LO from built sources, I do:
cd LO root directoryinstdir/program
. ./ooenv (there's a space between the 2 .)
./soffice

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/May-I-know-where-is-intro-image-and-how-to-link-it-tp4118402p4118473.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


RID_TP_GENERAL conversion

2014-08-10 Thread Mihály Palenik
Hello,

I'm making RID_TP_GENERAL TabPage conversion. It can be found in Tools -
Bibliography Database. It has some variable that I don't know what type is
them:
- ::com::sun::star::awt::XWindow
- ::com::sun::star::awt::XControlContainer
- ::com::sun::star::form::XBoundComponent
- ::com::sun::star::sdbc::XRowSetListener
Where can I find their definition? I didn't find with opengrok.

Best regards,
Mihály Palenik
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: RID_TP_GENERAL conversion

2014-08-10 Thread Noel Grandin
Those are UNO types.

They are generated at build-time from IDL files.

So, for example, XWindow is in a file called XWindow.idl here:

http://opengrok.libreoffice.org/xref/core/offapi/com/sun/star/awt/XWindow.idl
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: ure/Module_ure.mk ure/Package_builddir_install.mk ure/Package_install.mk

2014-08-10 Thread Tor Lillqvist
 ure/Module_ure.mk   |1 +
 ure/Package_builddir_install.mk |   16 
 ure/Package_install.mk  |2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit 8e9487cf97d944b202d4406561b88068aaf8e386
Author: Tor Lillqvist t...@collabora.com
Date:   Sun Aug 10 19:41:24 2014 +0300

Ugly hack to fix build when srcdir!=builddir

The problem is that the ure/source/unorc file is now expanded by the 
configure
script, and thus exists only in builddir. But a further complication is that
the uno.ini file is in srcdir. This is one way to handle it. Seems to work 
for
me, let's see what the srcdir!=builddir tinderbox slaves say.

Change-Id: I6fb456cf849ce5077e2c5bd25dc9149096aab241

diff --git a/ure/Module_ure.mk b/ure/Module_ure.mk
index 88cbc71..4d8c2c0 100644
--- a/ure/Module_ure.mk
+++ b/ure/Module_ure.mk
@@ -11,6 +11,7 @@ $(eval $(call gb_Module_Module,ure))
 
 $(eval $(call gb_Module_add_targets,ure,\
Package_install \
+   Package_builddir_install \
Rdb_ure \
 ))
 
diff --git a/ure/Package_builddir_install.mk b/ure/Package_builddir_install.mk
new file mode 100644
index 000..c109bd4
--- /dev/null
+++ b/ure/Package_builddir_install.mk
@@ -0,0 +1,16 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# 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/.
+#
+
+$(eval $(call gb_Package_Package,ure_builddir_install,$(BUILDDIR)/ure/source))
+
+$(eval $(call 
gb_Package_add_files,ure_builddir_install,$(LIBO_URE_ETC_FOLDER),\
+   $(if $(filter unorc,$(call gb_Helper_get_rcfile,uno)),$(call 
gb_Helper_get_rcfile,uno)) \
+))
+
+# vim:set noet sw=4 ts=4:
diff --git a/ure/Package_install.mk b/ure/Package_install.mk
index 19f5492..a5460c9 100644
--- a/ure/Package_install.mk
+++ b/ure/Package_install.mk
@@ -26,7 +26,7 @@ endif
 
 $(eval $(call gb_Package_add_files,ure_install,$(LIBO_URE_ETC_FOLDER),\
$(call gb_Helper_get_rcfile,jvmfwk3) \
-   $(call gb_Helper_get_rcfile,uno) \
+   $(if $(filter unorc,$(call gb_Helper_get_rcfile,uno)),,$(call 
gb_Helper_get_rcfile,uno)) \
 ))
 
 # vim:set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-10 Thread Miklos Vajna
 sw/qa/extras/rtfimport/data/fdo82106.rtf |4 
 sw/qa/extras/rtfimport/rtfimport.cxx |6 
 writerfilter/source/dmapper/DomainMapper.cxx |   82 ++---
 writerfilter/source/dmapper/DomainMapperTableManager.cxx |2 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|7 
 writerfilter/source/dmapper/PageBordersHandler.cxx   |   10 
 writerfilter/source/dmapper/PropertyMap.cxx  |4 
 writerfilter/source/dmapper/SettingsTable.cxx|8 
 writerfilter/source/ooxml/OOXMLDocumentImpl.cxx  |8 
 writerfilter/source/ooxml/OOXMLFastContextHandler.cxx|   14 
 writerfilter/source/ooxml/model.xml  |  234 ++-
 writerfilter/source/rtftok/rtfdocumentimpl.cxx   |   66 ++--
 writerfilter/source/rtftok/rtffly.hxx|   28 -
 13 files changed, 226 insertions(+), 247 deletions(-)

New commits:
commit 656ab07b2924dd2703f31f460c8586c375c7878a
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Aug 10 20:57:27 2014 +0200

Sync oox - writerfilter alias for wordprocessingml

The motivation is that once all the namespace aliases in
writerfilter/source/ooxml/model.xml match the ones in
oox/source/token/namespaces.txt, then the writerfilter copies could be
dropped.

Change-Id: I1f9abb8bb457189997f28c99b0f6b00660252c14

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index bd2c226..78d7ba0 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -408,19 +408,19 @@ void DomainMapper::lcl_attribute(Id nName, Value  val)
 else //NS_ooxml::LN_CT_Spacing_lineRule:
 {
 // exactly, atLeast, auto
-if( sal::static_int_castId(nIntValue) == 
NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_auto)
+if( sal::static_int_castId(nIntValue) == 
NS_ooxml::LN_Value_doc_ST_LineSpacingRule_auto)
 {
 m_pImpl-appendGrabBag(m_pImpl-m_aSubInteropGrabBag, 
lineRule, auto);
 aSpacing.Mode = style::LineSpacingMode::PROP;
 //reinterpret the already set value
 aSpacing.Height = sal_Int16( aSpacing.Height * 100 /  
ConversionHelper::convertTwipToMM100( SINGLE_LINE_SPACING ));
 }
-else if( sal::static_int_castId(nIntValue) == 
NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_atLeast)
+else if( sal::static_int_castId(nIntValue) == 
NS_ooxml::LN_Value_doc_ST_LineSpacingRule_atLeast)
 {
 m_pImpl-appendGrabBag(m_pImpl-m_aSubInteropGrabBag, 
lineRule, atLeast);
 aSpacing.Mode = style::LineSpacingMode::MINIMUM;
 }
-else // 
NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_exact
+else // NS_ooxml::LN_Value_doc_ST_LineSpacingRule_exact
 {
 m_pImpl-appendGrabBag(m_pImpl-m_aSubInteropGrabBag, 
lineRule, exact);
 aSpacing.Mode = style::LineSpacingMode::FIX;
@@ -583,7 +583,7 @@ void DomainMapper::lcl_attribute(Id nName, Value  val)
 {
 // 49 is just the old value that should be removed, once the
 // root cause in SwTabFrm::MakeAll() is fixed.
-if (m_pImpl-GetSettingsTable()-GetView() == 
NS_ooxml::LN_Value_wordprocessingml_ST_View_web)
+if (m_pImpl-GetSettingsTable()-GetView() == 
NS_ooxml::LN_Value_doc_ST_View_web)
 default_spacing = 49;
 else
 default_spacing = 280;
@@ -605,7 +605,7 @@ void DomainMapper::lcl_attribute(Id nName, Value  val)
 
 if 
(!m_pImpl-GetSettingsTable()-GetDoNotUseHTMLParagraphAutoSpacing())
 {
-if (m_pImpl-GetSettingsTable()-GetView() == 
NS_ooxml::LN_Value_wordprocessingml_ST_View_web)
+if (m_pImpl-GetSettingsTable()-GetView() == 
NS_ooxml::LN_Value_doc_ST_View_web)
 default_spacing = 49;
 else
 default_spacing = 280;
@@ -684,10 +684,10 @@ void DomainMapper::lcl_attribute(Id nName, Value  val)
 case NS_ooxml::LN_CT_FramePr_hAnchor:
 switch(nIntValue)
 {
-case  
NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_text:   //relative to column
+case  NS_ooxml::LN_Value_doc_ST_HAnchor_text:   
//relative to column
 nIntValue = text::RelOrientation::FRAME; break;
-case  
NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_margin: nIntValue = 

[Libreoffice-commits] core.git: 8 commits - android/Bootstrap android/experimental desktop/source sd/source

2014-08-10 Thread Tomaž Vajngerl
 android/Bootstrap/src/org/libreoffice/kit/Document.java
   |   24 +
 android/experimental/LOAndroid3/AndroidManifest.xml
   |8 
 android/experimental/LOAndroid3/Makefile   
   |2 
 android/experimental/LOAndroid3/res/layout/activity_main.xml   
   |   38 +-
 android/experimental/LOAndroid3/res/layout/document_part_list_layout.xml   
   |   20 +
 android/experimental/LOAndroid3/res/menu/main.xml  
   |7 
 android/experimental/LOAndroid3/res/values/strings.xml 
   |1 
 android/experimental/LOAndroid3/src/java/org/libreoffice/DocumentPartView.java 
   |   14 
 
android/experimental/LOAndroid3/src/java/org/libreoffice/DocumentPartViewListAdpater.java
 |   41 ++
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java   
   |6 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java  
   |   33 +-
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java 
  |   41 ++
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LibreOfficeMainActivity.java
 |   80 +++--
 android/experimental/LOAndroid3/src/java/org/libreoffice/MockTileProvider.java 
   |   12 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/GeckoEventListener.java
|   44 --
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/WidgetTileLayer.java
   |  160 --
 desktop/source/lib/lokandroid.cxx  
   |   16 +
 sd/source/ui/unoidl/unomodel.cxx   
   |   12 
 18 files changed, 301 insertions(+), 258 deletions(-)

New commits:
commit 310ed3d39936270f085768726277346c325c900f
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Aug 10 22:58:28 2014 +0200

copy android-support-v4 from SDK to libs at build

Change-Id: I3adaf26624ffc46b304d35e0588e7253c20cb5ee

diff --git a/android/experimental/LOAndroid3/Makefile 
b/android/experimental/LOAndroid3/Makefile
index 08e933e..49879c0 100644
--- a/android/experimental/LOAndroid3/Makefile
+++ b/android/experimental/LOAndroid3/Makefile
@@ -19,6 +19,8 @@ build-ant: android_version_setup copy-stuff link-so properties
 #
 # Copy jar files we need
 #
+   cp $(ANDROID_SDK_HOME)/extras/android/support/v4/android-support-v4.jar 
libs
+
for F in java_uno \
 juh \
 jurt \
commit ba7578401b4fed4df7b255cf23bd674f86953436
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Aug 10 22:56:44 2014 +0200

LOKit: ensure DrawViewShell is available (prevent crash)

Change-Id: Id143f5fabdcb8b7451d750563c76b77f9c3787a3

diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index 97de832..79146e9 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -2303,12 +2303,18 @@ void SdXImpressDocument::setPartMode( 
LibreOfficeKitPartMode ePartMode )
 
 Size SdXImpressDocument::getDocumentSize()
 {
-SdrPageView* pCurPageView = 
mpDoc-GetDocSh()-GetViewShell()-GetView()-GetSdrPageView();
+DrawViewShell* pViewSh = 
dynamic_castDrawViewShell*(mpDoc-GetDocSh()-GetViewShell());
+if (!pViewSh)
+{
+SAL_WARN(sd, DrawViewShell not available!);
+return Size();
+}
+
+SdrPageView* pCurPageView = pViewSh-GetView()-GetSdrPageView();
 Size aSize = pCurPageView-GetPageRect().GetSize();
 // Convert the size in 100th mm to TWIP
 // See paintTile above for further info.
-return Size( convertMm100ToTwip( aSize.getWidth() ),
- convertMm100ToTwip( aSize.getHeight() ) );
+return Size(convertMm100ToTwip(aSize.getWidth()), 
convertMm100ToTwip(aSize.getHeight()));
 }
 
 
commit b69f5a1857d2dcad4b234ad84cde98b9fd436f90
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Aug 10 22:53:21 2014 +0200

LOAndroid3: Add a side drawer to show available parts (by name)

Use DrawerLayer to show a side drawer with parts of the loaded
document. The dawer consists of an image (could be changed by a
thumbnail in the future) and the part name.

Change-Id: I27fb6112d9f11e19f3295ace97103b89816591aa

diff --git a/android/experimental/LOAndroid3/res/layout/activity_main.xml 
b/android/experimental/LOAndroid3/res/layout/activity_main.xml
index 7b53d58..1d09af9 100644
--- a/android/experimental/LOAndroid3/res/layout/activity_main.xml
+++ b/android/experimental/LOAndroid3/res/layout/activity_main.xml
@@ -1,15 +1,35 @@
 ?xml version=1.0 encoding=utf-8?
-LinearLayout
+android.support.v4.widget.DrawerLayout
+android:id=@+id/drawer_layout
 xmlns:android=http://schemas.android.com/apk/res/android;
-android:id=@+id/main_layout
-

XControl connect to .ui element

2014-08-10 Thread Mihály Palenik
Hello,

I'm making RID_TP_GENERAL TabPage conversion. It can be found in Tools -
Bibliography Database. It has an XControlContainer that include some
XControl instances. How can I connect an XControl instance with an .ui
element(e.g.: GtkEntry). Is it possible? Or I have to modify class to a
usual way(make a lot of Edit control and connect with .ui element)?

Best regards,
Mihály
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Dialog Widget Conversion - Week 12

2014-08-10 Thread Mihály Palenik
Hello,

In this week I converted the following:

Dialogs:
-DLG_PARAMETERS
-RID_SCDLG_DPSHOWDETAIL
-RID_DLG_FORMLINKS

Tabpages:
-PAGE_CONNECTION
-PAGE_DBASE
-PAGE_MYSQL_JDBC
-PAGE_ORACLE_JDBC
-PAGE_ODBC
-PAGE_LDAP
-PAGE_ADO
-PAGE_MYSQL_ODBC

I deleted an unused dialogs called RID_XMLSECTP_MACROWARN.

Best regards,
Mihály
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

James barrie.willoug...@yahoo.co.uk changed:

   What|Removed |Added

 OS|All |Windows (All)

--- Comment #208 from James barrie.willoug...@yahoo.co.uk ---
My lap top has Windows Vista Home Premium installed (English language). Having
used Libre Office for about 9 months (a 4.1 version?)for no apparent reason an
error message appears The system cannot find the file specified, when I try
to access any file. I have tried upgrading with no improvement and my restore
points don't go back far enough. Would be grateful for some help.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 OS|Windows (All)   |All

--- Comment #209 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to comment #208)
 My lap top has Windows Vista Home Premium installed (English language).
 Having used Libre Office for about 9 months (a 4.1 version?)for no apparent
 reason an error message appears The system cannot find the file specified,
 when I try to access any file. I have tried upgrading with no improvement
 and my restore points don't go back far enough. Would be grateful for some
 help.

@James

Not clear what your issue might be, but this issue is a tracking bug for
established major bugs with all facets of the 4.2 release of LibreOffice.

Please use the Bug Submission Assistant to formulate and submit your issue,
found here:  https://www.libreoffice.org/get-help/bug/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: configure.ac Repository.mk sal/Library_sal.mk

2014-08-10 Thread Tor Lillqvist
 Repository.mk  |1 +
 configure.ac   |3 ++-
 sal/Library_sal.mk |1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit ad85ce18d3939170e5ef7b1a1f8e5dda2c8aeb9c
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Aug 11 08:10:38 2014 +0300

fixes needed because ure/source/unorc is now expanded at configure time

Argh, this is getting even uglier.

We cheerfully ignore for now the theoretical possibility that the URE
unorc used by build-time tools (i.e. the configure-expanded
ure/source/unorc) could be different for HOST and BUILD (in case they
use different --enable-canonical-installation-tree-structure), and use
the HOST one for the BUILD tools.

The right thing would probably be to construct the URE unorc in the
relevant Makefile, like we do for fundamentalrc? Or then to just
re-design the whole mess of rc files into some simpler (good luck).

Change-Id: I654309503d0e696778910acadcbf2f6b90ffa02a

diff --git a/Repository.mk b/Repository.mk
index e642527..7d2cac5 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -739,6 +739,7 @@ endif
 
 $(eval $(call gb_Helper_register_packages_for_install,ure,\
ure_install \
+   ure_builddir_install \
$(if $(ENABLE_JAVA),\
jvmfwk_javavendors \
jvmfwk_jreproperties \
diff --git a/configure.ac b/configure.ac
index a390444..7126012 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4659,7 +4659,8 @@ if test $cross_compiling = yes; then
 instsetoo_native/util/openoffice.lst.in \
 config_host/*.in \
 sysui/desktop/macosx/Info.plist.in \
-ios/lo.xcconfig.in) \
+ios/lo.xcconfig.in \
+ure/source/unorc.in) \
 | (cd CONF-FOR-BUILD  tar xf -)
 cp configure CONF-FOR-BUILD
 test -d config_build  cp -p config_build/*.h CONF-FOR-BUILD/config_host 
2/dev/null
diff --git a/sal/Library_sal.mk b/sal/Library_sal.mk
index 122b95f..16c4876 100644
--- a/sal/Library_sal.mk
+++ b/sal/Library_sal.mk
@@ -36,6 +36,7 @@ $(eval $(call gb_Library_add_defs,sal,\
 # need the ure-link symlink to exist in INSTDIR so it's possible to link sal
 # FIXME: this creates cyclic dependency between ure and sal modules
 $(eval $(call gb_Library_use_package,sal,ure_install))
+$(eval $(call gb_Library_use_package,sal,ure_builddir_install))
 
 $(eval $(call gb_Library_use_libraries,sal,\
$(if $(filter $(OS),ANDROID), \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - scp2/source

2014-08-10 Thread Maxim Monastirsky
 scp2/source/ooo/file_ooo.scp |2 ++
 scp2/source/ooo/module_hidden_ooo.scp|1 +
 scp2/source/ooo/module_lang_template.scp |1 +
 3 files changed, 4 insertions(+)

New commits:
commit 24884b2007a7dc48fa13bd3fd32d36109536403c
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Sun Aug 10 18:08:28 2014 +0300

fdo#78845 Packaging of fpicker ui files

Change-Id: I78e217032af52b365cc2d07909bda68daaf028a1
Reviewed-on: https://gerrit.libreoffice.org/10857
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp
index 6f5d715..9b11d66 100644
--- a/scp2/source/ooo/file_ooo.scp
+++ b/scp2/source/ooo/file_ooo.scp
@@ -498,6 +498,7 @@ UI_FILELIST(dbtdata, UIConfig/modules/dbtdata.filelist)
 #endif
 UI_FILELIST(desktop, UIConfig/desktop.filelist)
 UI_FILELIST(filter, UIConfig/filter.filelist)
+UI_FILELIST(fps, UIConfig/fps.filelist)
 UI_FILELIST(sabpilot, UIConfig/modules/sabpilot.filelist)
 #ifdef DBCONNECTIVITY
 UI_FILELIST(sbibliography, UIConfig/modules/sbibliography.filelist)
@@ -535,6 +536,7 @@ UI_FILELIST_ALL_LANG(spropctrlr, modules/spropctrlr)
 #endif
 UI_FILELIST_ALL_LANG(desktop, desktop)
 UI_FILELIST_ALL_LANG(filter, filter)
+UI_FILELIST_ALL_LANG(fps, fps)
 UI_FILELIST_ALL_LANG(sabpilot, modules/sabpilot)
 UI_FILELIST_ALL_LANG(scalc, modules/scalc)
 UI_FILELIST_ALL_LANG(schart, modules/schart)
diff --git a/scp2/source/ooo/module_hidden_ooo.scp 
b/scp2/source/ooo/module_hidden_ooo.scp
index c269045..d9cc9bd 100644
--- a/scp2/source/ooo/module_hidden_ooo.scp
+++ b/scp2/source/ooo/module_hidden_ooo.scp
@@ -240,6 +240,7 @@ Module gid_Module_Root_Files_6
 #endif
 gid_File_Share_Config_Sofficecfg_uiconfig_desktop,
 gid_File_Share_Config_Sofficecfg_uiconfig_filter,
+gid_File_Share_Config_Sofficecfg_uiconfig_fps,
 #ifdef DBCONNECTIVITY
 gid_File_Share_Config_Sofficecfg_uiconfig_sbibliography,
 #endif
diff --git a/scp2/source/ooo/module_lang_template.scp 
b/scp2/source/ooo/module_lang_template.scp
index 0ac4ea0..8facc54 100644
--- a/scp2/source/ooo/module_lang_template.scp
+++ b/scp2/source/ooo/module_lang_template.scp
@@ -32,6 +32,7 @@ Module gid_Module_Langpack_Basis_Template
 #endif
  gid_File_Share_Config_Sofficecfg_uiconfig_desktop_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_filter_Lang,
+ gid_File_Share_Config_Sofficecfg_uiconfig_fps_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_sabpilot_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_scalc_Lang,
  gid_File_Share_Config_Sofficecfg_uiconfig_schart_Lang,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 82408] New: Slide navigator usability improvements

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82408

  Priority: medium
Bug ID: 82408
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Slide navigator usability improvements
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Drawing
   Product: LibreOffice

There should be 3 options available for Draw slide navigator:
- multiselection
- context menus
- deletion command.

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


[Libreoffice-bugs] [Bug 82409] New: LO open/save file dialogs broken in master

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82409

  Priority: medium
Bug ID: 82409
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LO open/save file dialogs broken in master
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: UI
   Product: LibreOffice

At least since 24.07, nothing happens when this dialogs must be shown.
'File/Export' command displays I/O error message.

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


[Libreoffice-bugs] [Bug 82410] New: SIDEBAR Background color icon shows placeholder color bar

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82410

  Priority: medium
Bug ID: 82410
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: SIDEBAR Background color icon shows placeholder color
bar
  Severity: trivial
Classification: Unclassified
OS: Windows (All)
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 104368
  -- https://bugs.freedesktop.org/attachment.cgi?id=104368action=edit
Screenshot

The icon which is used as a caption for the Background color dropdown usually
have an element which is supposed to indicate the current color.
Unlike in toolbar, that element has the placeholder appearance, in the default
theme it is an ugly red bar.

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


[Libreoffice-bugs] [Bug 82410] SIDEBAR Background color icon shows placeholder color bar

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82410

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Attachment #104368|text/plain  |image/png
  mime type||

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


[Libreoffice-bugs] [Bug 82410] SIDEBAR Background color icon shows placeholder color bar when using the galaxy theme

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82410

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

Summary|SIDEBAR Background color|SIDEBAR Background color
   |icon shows placeholder  |icon shows placeholder
   |color bar   |color bar when using the
   ||galaxy theme

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


[Libreoffice-bugs] [Bug 82411] New: Numeric fields are limited to Integer-Values in Tablecontrols and Databrowser of a Form

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82411

  Priority: medium
Bug ID: 82411
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Numeric fields are limited to Integer-Values in
Tablecontrols and Databrowser of a Form
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: rob...@familiegrosskopf.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: Inherited From OOo
 Component: Database
   Product: LibreOffice

Created attachment 104369
  -- https://bugs.freedesktop.org/attachment.cgi?id=104369action=edit
Different values for the same field in the form, when numeric fields are chosen

Open the attached document.
open the form.
There is a tablecontrol and the same fields are shown in normal controls.
Two fields (one for BigInt, one for Decimal 13 digits) are formatted as numeric
fields and limited by the max value of the field.
The numeric fields in the tablecontrol show the wrong values. Seems to be
limited for Integer values.
The numeric fields outside the tablecontrol show the right values.

I first saw this when I chose in the navigationbar Datasource as Table. Seems
to be the same problem. Datasource as Table seems to work like
tablecontrols.

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


[Libreoffice-bugs] [Bug 82412] New: minimizing the screen option is available without closing the message box.

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82412

  Priority: medium
Bug ID: 82412
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: minimizing the screen option is available without
closing the message box.
  Severity: minor
Classification: Unclassified
OS: Windows (All)
  Reporter: prathap7...@gmail.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 4.3.0.2 rc
 Component: Writer
   Product: LibreOffice

Created attachment 104370
  -- https://bugs.freedesktop.org/attachment.cgi?id=104370action=edit
Minimize,maximize,close options are still available without giving a warning
message to close the message box

I can able to minimize the Window screen without closing the message box.The
minimize,maximize,close options are still available without giving a warning
message to close the message box.

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


[Libreoffice-bugs] [Bug 82412] minimizing the screen option is available without closing the message box.

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82412

Prathapmuruganandam prathap7...@gmail.com 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82324] Can no longer delete file from inside LO file manager

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82324

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 CC||momonas...@gmail.com
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=34170

--- Comment #5 from Maxim Monastirsky momonas...@gmail.com ---
This is an intentional change made in Bug 34170.

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


[Libreoffice-bugs] [Bug 81325] FILEOPEN: 6-pages DOCX shows only the first page in LO

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81325

--- Comment #9 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 104371
  -- https://bugs.freedesktop.org/attachment.cgi?id=104371action=edit
console_bt with master sources

On pc Debian x86-64 with master sources updated today, I had a crash.
Perhaps it's linked to this bug. Indeed,  since I build in dbg mode, asserts
are triggered.

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


[Libreoffice-bugs] [Bug 82413] New: Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

  Priority: medium
Bug ID: 82413
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Formatting of fields in the databrowser of a form
crashes LO immedialtely
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: rob...@familiegrosskopf.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.3.0.3 rc
 Component: Database
   Product: LibreOffice

Created attachment 104372
  -- https://bugs.freedesktop.org/attachment.cgi?id=104372action=edit
Error-Message for the crash, when chosing Column Format of the browsed table.

Open https://bugs.freedesktop.org/attachment.cgi?id=104369.
Open the form.
Chose Datasource as Table in the navigationbar (button in the right down
corner of the form).
Click with the mouse on the header of one field of the shown table. There could
be chosen Column Format.
LO 4.3.0.3 and 4.3.0.4 crash immediately after chosing the dialog.

Haven't installed 4.3.0.2. With 4.3.0.1 the dialog appears. Seems it has been
designed new for 4.3. But: The dialog doesn't work in 4.3.0.1

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


[Libreoffice-bugs] [Bug 82411] Numeric fields are limited to Integer-Values in Tablecontrols and Databrowser of a Form

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82411

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Attachment #104369|text/plain  |application/vnd.oasis.opend
  mime type||ocument.base

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


[Libreoffice-bugs] [Bug 81325] FILEOPEN: 6-pages DOCX shows only the first page in LO

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81325

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||mst...@redhat.com,
   ||serval2...@yahoo.fr,
   ||vmik...@collabora.co.uk
   Keywords||have-backtrace

--- Comment #10 from Julien Nabet serval2...@yahoo.fr ---
Miklos/Michael: one for you?

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


[Libreoffice-bugs] [Bug 71654] LO never remember color settings for my printer

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71654

Thierry Vignaud thierry.vign...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 OS|All |Linux (All)
 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Thierry Vignaud thierry.vign...@gmail.com ---
This was with an HP OfficeJet Pro 8600 on Mageia Linux.
It looks fixed as of LO-4.3

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


[Libreoffice-bugs] [Bug 82413] Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 104374
  -- https://bugs.freedesktop.org/attachment.cgi?id=104374action=edit
console_bt with master sources

On pc Debian x86-64 with master sources updated today, I could reproduce the
crash.

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


[Libreoffice-bugs] [Bug 82413] Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |critical
   Priority|medium  |high
 CC||serval2...@yahoo.fr
   Keywords||have-backtrace, regression
 Ever confirmed|0   |1

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
For the record, it works well with LO Debian package 4.2.6.

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


[Libreoffice-bugs] [Bug 82043] Start Center green sidebar text is too small

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82043

--- Comment #17 from Emir Sarı bitig...@openmailbox.org ---
Created attachment 104375
  -- https://bugs.freedesktop.org/attachment.cgi?id=104375action=edit
After switching to Bold

I think I've changed my mind. Here there is a comparison, Normal weight seems
much better.

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


[Libreoffice-bugs] [Bug 82303] File is not open when Insert Image from file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82303

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 CC||momonas...@gmail.com

--- Comment #3 from Maxim Monastirsky momonas...@gmail.com ---
@sophie: Do you use the generic LO file dialog?

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


[Libreoffice-bugs] [Bug 80927] Win: crash with Quickstarter enabled

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80927

--- Comment #32 from fanfan54 boss.l-s+buglibreoff...@live.fr ---
(In reply to comment #31)
 *** Bug 82381 has been marked as a duplicate of this bug. ***

I confirm that LibreOffice works when the Quickstarter case is not checked at
the installation setup.

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


[Libreoffice-bugs] [Bug 71625] Endless autosave loop if the document is not linked to a file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71625

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 64368] Viewing a DOCX-file created by Converter PDF to DOCX, is displayed not properly

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64368

Alexandr alexpik...@gmail.com changed:

   What|Removed |Added

 Whiteboard||filter:docx
 CC||alexpik...@gmail.com

--- Comment #3 from Alexandr alexpik...@gmail.com ---
I test the document with LibreOffice 4.2.5 and 4.3.1 on Debian. The
representation is much better now. The only problem I see is an additional
page.

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


[Libreoffice-bugs] [Bug 82414] New: FILESAVE: R1C1 notation is not preserved and ranges do not appear to sum as expected

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82414

  Priority: medium
Bug ID: 82414
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: R1C1 notation is not preserved and ranges do
not appear to sum as expected
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: owen.ge...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 104376
  -- https://bugs.freedesktop.org/attachment.cgi?id=104376action=edit
ODS showing before and after cell range notation under LOv4400 2014-08-08

Problem description: This report relies on using Multiplan / Lotus-123 / Excel
R1C1 notation. I am raising the bug to get confirmation / clarification of: 

a) Whether certain cell range references should be preserved as entered or if
it is OK for Calc to change the entered cell range reference between save,
close, and re-open of the ODS.
b) Whether the included cell range references using R1C1 notation are
considered valid.

I am happy to raise a separate bug if it becomes apparent there are two
separate issues. I have raised this report due to this forum thread:

http://en.libreofficeforum.org/node/6199

... where a long-time user of R1C1 notation is indicating problems in recent
versions of Calc. I have included the thread for reference only as it does not
include much in the way of a simple or clear example (hence this report).

The attached ODS contains numbers 1 to 3 in rows 1 to 3 across 4 columns. Each
column of figures is summed using a different type of cell range notation:

R[-3]C:R[-1]C - column 1
R[-1]C:R[-3]C - column 2
R[-3]C:RC - column 3
RC:R[-3]C - column 4

It is not clear to me which are valid forms from the old Multiplan / Lotus-123
/ Excel days, but each would appear at least understandable. For convenience I
have displayed each formula (as entered) on row 5, labelled before. Beneath
this in row 6 (labelled after) is what each cell in row 4 contains after
saving, closing, and re-opening of the ODS.

Steps to reproduce:
1. Tools  Options...  LibreOffice Calc  Formula  set Formula syntax to
Excel R1C1.
2. In a new file enter the numbers 1,2,3 in rows 1,2,3 respectively.
3. Copy these across 4 columns.
4. Beneath each column enter one of the indicated types of cell range reference
in a SUM() function e.g., in R4C1 enter =SUM(R[-3]C:R[-1]C) in R4C2 enter
=SUM(R[-1]C:R[-3]C) and so on.
5. Note values displayed are: 6, 0, Err:522, and 0 (most of which seem
erroneous).
6. Save the file (ODS).
7. Close file.
8. Re-open file.

Current behavior: Contents of R4C2 and R4C4 are altered and resultant sums
displayed are different (6, 6, Err:522, Err:522).

Expected behavior: Entered values are preserved and range references add as
expected.

Tested under Crunchbang 11 x86_64 using v4.4.0.0.alpha0+ Build ID:
4d635dcae4d7275d04a17a0efc11b0531d5d0a82
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-08-08_23:24:32.

Behaviour is the same under these versions also:

- v4.2.6.2 Build ID: 185f2ce4dcc34af9bd97dec29e6d42c39557298f
- v4.3.0.4 Build ID: 62ad5818884a2fc2e5780dd45466868d41009ec0

Under v4.1.6.2 Build ID: 40ff705089295be5be0aae9b15123f687c05b0a the initially
entered cell range still reverts after save, close, re-open, but the initially
displayed values do not change i.e., 6, 6, Err:522, Err:522. This would seem to
indicate at least a change in calculating the resultant value during the v4.2
series.
Operating System: Debian
Version: 4.4.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 82413] Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
With keyId interface, the ui part used here is:
sbagrid.src RID_SBA_GRID_COLCTXMENU ID_BROWSER_COLUMNINFO

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


[Libreoffice-bugs] [Bug 82414] FILESAVE: R1C1 notation is not preserved and ranges do not appear to sum as expected

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82414

--- Comment #1 from Owen Genat owen.ge...@gmail.com ---
Created attachment 104377
  -- https://bugs.freedesktop.org/attachment.cgi?id=104377action=edit
Screenshot (before) of ODS showing displayed values under LOv4400 2014-08-08

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


[Libreoffice-bugs] [Bug 82414] FILESAVE: R1C1 notation is not preserved and ranges do not appear to sum as expected

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82414

--- Comment #2 from Owen Genat owen.ge...@gmail.com ---
Created attachment 104378
  -- https://bugs.freedesktop.org/attachment.cgi?id=104378action=edit
Screenshot (after) of ODS showing displayed values under LOv4400 2014-08-08

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


[Libreoffice-bugs] [Bug 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard||target:4.4.0

--- Comment #25 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to master:

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

fdo#78845 Packaging of fpicker ui files



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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75025] LibreOffice 4.3 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75025

Bug 75025 depends on bug 78845, which changed state.

Bug 78845 Summary: UI Icon Create New Folder in dialog File Save (As) closes 
dialog and doesn't show the needed dialog
https://bugs.freedesktop.org/show_bug.cgi?id=78845

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 82409] LO open/save file dialogs broken in master

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82409

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Maxim Monastirsky momonas...@gmail.com ---
Should be fixed by the same commit as Bug 78845.

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

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


[Libreoffice-bugs] [Bug 82303] File is not open when Insert Image from file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82303

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Maxim Monastirsky momonas...@gmail.com ---
(In reply to comment #3)
 @sophie: Do you use the generic LO file dialog?
Let's assume that it's indeed the generic dialog, since I'm not able to
reproduce with any other. In that case it should be fixed by the same commit as
Bug 78845. Feel free to reopen if that's not the case.

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

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


[Libreoffice-bugs] [Bug 82413] Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
BTW, the bug can be reproduced without choosing Datasource as Table and use
the data already present.

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


[Libreoffice-bugs] [Bug 82415] New: EDITING: Copy and paste results in some text fields

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82415

  Priority: medium
Bug ID: 82415
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Copy and paste results in some text fields
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: i...@andreamoro.co.uk
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.5.2 release
 Component: Writer
   Product: LibreOffice

Problem description: 

Editing a new document while pasting some quotes and text from the
forum.moneysupermarket.com site results in some paragraph break to be converted
in a text field.

There is not a specific document, as I copied and pasted from several sources
and I was able to get this behavior several times.

A URL to test could be 
http://forums.moneysavingexpert.com/showpost.php?p=65745741postcount=2


Operating System: Mac OS X
Version: 4.2.5.2 release

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


[Libreoffice-bugs] [Bug 82383] EDITING: Formula Colors Highlighting disappears after zoom

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82383

ign_christian ign_christ...@yahoo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from ign_christian ign_christ...@yahoo.com ---
Not reproducible with LO 4.3.1.1 - Ubuntu 12.04 x86

zooming using mouse wheel + ctrl still keeps the formula colors highlight

Please reopen  mark UNCONFIRMED if issue still occured with latest stable
release  fresh user profile.

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


[Libreoffice-bugs] [Bug 78001] Web: Format Page loops pegging CPU

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78001

--- Comment #6 from Uwe Wiest uw...@yahoo.de ---
And if you save a page in html-Format, the size of the file ist ten 
times larger. If you open it again with libreoffice, the page background 
ist empty. So in 4.2.5 (windows, ubuntu) and 4.3 (windows).
The last libreoffice version without this mistake ist 4.1.6.
Sincerely, Uwe Wiest

Am 09.08.2014 um 21:30 schrieb bugzilla-dae...@freedesktop.org:
 Terrence Enger mailto:lo_b...@iseries-guru.com changed bug 78001 
 https://bugs.freedesktop.org/show_bug.cgi?id=78001
 What  Removed Added
 StatusNEW RESOLVED
 Resolution--- WORKSFORME

 *Comment # 5 https://bugs.freedesktop.org/show_bug.cgi?id=78001#c5 
 on bug 78001 https://bugs.freedesktop.org/show_bug.cgi?id=78001 from 
 Terrence Enger mailto:lo_b...@iseries-guru.com *
 With my debug build of master f77981e, pulled 2014-08-04, built and
 running on debian-wheezy, I see no problem.  LibreOffice paints the
 dialog Page Style: HTML completely, every tab, over and over again.

 Having no idea what changed the program behaviour, I am setting status
 WORKSFORME.
 
 You are receiving this mail because:

   * You are on the CC list for the bug.


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


[Libreoffice-bugs] [Bug 58567] : Vlookup crash

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58567

--- Comment #16 from p_kongs...@op.pl ---
Still present in Version: 4.3.1.1
Build ID: c4b15cd4d00dec6b266fa830b4ba73e31ae6ce73

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


[Libreoffice-bugs] [Bug 82413] Formatting of fields in the databrowser of a form crashes LO immedialtely

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82413

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
Caolan: I noticed the UI conv (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=3a806d027cb744cde08e0c4472bec5159d5a541d)
but don't see anything wrong so suppose it's elsewhere. Any idea?

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


[Libreoffice-bugs] [Bug 82074] FILEOPEN: RTF spacing above text not retained

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82074

Miklos Vajna vmik...@collabora.co.uk changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
   Assignee|libreoffice-b...@lists.free |mst...@redhat.com
   |desktop.org |
 CC||vmik...@collabora.co.uk

--- Comment #4 from Miklos Vajna vmik...@collabora.co.uk ---
Yes, I can reproduce that with a master build from 2014-08-02.

This has been fixed by f8e8e476aa0a5576234dbb4daac9dc299e044e61 in the
meantime, closing as duplicate.

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

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


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

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81234

Bug 81234 depends on bug 82074, which changed state.

Bug 82074 Summary: FILEOPEN: RTF spacing above text not retained
https://bugs.freedesktop.org/show_bug.cgi?id=82074

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

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


[Libreoffice-bugs] [Bug 78001] Web: Format Page loops pegging CPU

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78001

--- Comment #7 from Julien Nabet serval2...@yahoo.fr ---
Uwe: what you describe is a different problem. You can submit a new bugtracker
by using this link:
https://www.libreoffice.org/get-help/bug/

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


[Libreoffice-bugs] [Bug 82398] EDITING: Text to Columns not applied to selected cells after change 'Format Cells'

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82398

ign_christian ign_christ...@yahoo.com changed:

   What|Removed |Added

Summary|EDITING: Text to columns|EDITING: Text to Columns
   |not applied to selected |not applied to selected
   |cells   |cells after change 'Format
   ||Cells'

--- Comment #1 from ign_christian ign_christ...@yahoo.com ---
Reproduced with 4.2.6.2, 4.0.6.2, 3.3.0.4 - Ubuntu 12.04 x86

Not reproduced with LO 4.3.1.1

Waiting confirmation from dev if fix will backported to 4.2.7

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


[Libreoffice-bugs] [Bug 82398] EDITING: Text to Columns not applied to selected cells after change 'Format Cells'

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82398

--- Comment #2 from ign_christian ign_christ...@yahoo.com ---
Still reproduced in 4.2.7.0.0+ Time: 2014-07-30_13:16:10

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


[Libreoffice-bugs] [Bug 73006] EDITING: Results filled in wrong cells after Text to Columns

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73006

ign_christian ign_christ...@yahoo.com changed:

   What|Removed |Added

 OS|Windows (All)   |All
   Priority|medium  |high
Version|4.1.4.2 release |3.5.7.2 release
   Keywords||regression

--- Comment #2 from ign_christian ign_christ...@yahoo.com ---
(In reply to comment #0)
 3. Execute Text to Columns
Separated by Space must be ticked

Reproduced in LO 4.3.1.1, 4.2.6.2, 4.0.6.2, 3.6.7.2, 3.5.7.2 - Ubuntu 12.04 x86

Not reproduced in 3.3.0.4

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


[Libreoffice-bugs] [Bug 81952] Installing 4.3 does not remove 4.2

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81952

--- Comment #2 from Herbert Post herbert.p...@gmail.com ---
Dear Adolfo,

This is new.
Until the last release the old release were removed.
So this is new and not something people would want.

I’ve never used the ubuntu version of LibreOffice
(it’s the first thing I remove after installing ubuntu and then I manually
install and update LibreOffice. It always removes the old version installed by
me.)

Kind regards,
Herbert

On 10 Aug 2014, at 01:42, bugzilla-dae...@freedesktop.org wrote:

 Adolfo Jayme changed bug 81952 
 What  Removed Added
 StatusUNCONFIRMED RESOLVED
 Resolution--- NOTABUG
 
 Comment # 1 on bug 81952 from Adolfo Jayme
 The automatic removal of old versions happens only with packages from the
 Ubuntu archive. TDF packages are configured to allow people to install and use
 multiple LO (and even AOO) versions. Not gonna change it
 
 You are receiving this mail because:
 You reported the bug.

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


[Libreoffice-bugs] [Bug 81952] Installing 4.3 does not remove 4.2

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81952

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 CC||momonas...@gmail.com

--- Comment #3 from Maxim Monastirsky momonas...@gmail.com ---
(In reply to comment #2)
 This is new.
 Until the last release the old release were removed.
Only for minor releases, for example 4.2.4 - 4.2.5. New major releases *never*
removed the old one, for example 4.2.x didn't remove 4.1.x.

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


[Libreoffice-bugs] [Bug 80147] LibreOffice ignores OS X's region/locale settings

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80147

--- Comment #4 from baksky...@gmail.com ---
There are many languages out there that are not supported by Apple and
LibreOffice, e.g. Icelandic or Faeroese. Therefore people usually set the
system language to English, but set spell checker and regional formats (number,
time, date, currency) according to the local language.

So if LibreOffice differentiate between UI language and locale setting, why not
using OS X's UI locale setting by default?

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


[Libreoffice-bugs] [Bug 82272] New 'Chart' toolbar icon

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82272

--- Comment #4 from Mirek2 maz...@gmail.com ---
I tweaked the pie chart from the Gnome presentation icon --
https://github.com/libodesign/tango-testing/blob/master/exported/cmd/lc_drawchart.png.
I propose to use that.

I'll push it with the next set of icons.

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


[Libreoffice-bugs] [Bug 82383] EDITING: Formula Colors Highlighting disappears after zoom

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82383

besc...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|WORKSFORME  |---

--- Comment #2 from besc...@gmail.com ---
Additional details on ho to reproduce this bug.

Please click on the formula bar (do not press F2) to activate the formula
highlighting.

Then zoom with crtl+mouse wheel. when you release the highlighting disappears.

This is also confirmed on my box with 4.3.1.1.

Regards.

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


[Libreoffice-bugs] [Bug 82416] New: Other: Impress compression damages .odp file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82416

  Priority: medium
Bug ID: 82416
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Impress compression damages .odp file
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: l...@iapp.de
  Hardware: Other
Whiteboard: BSA PossibleRegression
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Presentation
   Product: LibreOffice

Created attachment 104379
  -- https://bugs.freedesktop.org/attachment.cgi?id=104379action=edit
test.opd which shows effect on slide 1 and screenshots on p.2 and 3

When I compress the enclosed file with the built-in compression tool, the
presentation is damaged in two ways:
a) the red line under the title is missing
b) the center figure disappears and is replaced by a square with a small symbol


Operating System: Ubuntu
Version: 4.3.0.4 release
Last worked in: 4.1.0.4 release

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


[Libreoffice-bugs] [Bug 82417] New: FORMATTING: Impress pptx import: Text grossly misplaced

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82417

  Priority: medium
Bug ID: 82417
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Impress pptx import: Text grossly
misplaced
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: l...@iapp.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Presentation
   Product: LibreOffice

Created attachment 104380
  -- https://bugs.freedesktop.org/attachment.cgi?id=104380action=edit
sample file, with screenshots how it shows in Powerpoint 2013 and Libreoffice

When imporint .pptx files, Impress misplaces text grossly, outside the slide
are

Operating System: Ubuntu
Version: 4.3.0.4 release

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


[Libreoffice-bugs] [Bug 82383] EDITING: Formula Colors Highlighting disappears after zoom

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82383

ign_christian ign_christ...@yahoo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |minor
Version|4.3.0.4 release |Inherited From OOo
 Ever confirmed|0   |1

--- Comment #3 from ign_christian ign_christ...@yahoo.com ---
(In reply to comment #2)
 Please click on the formula bar (do not press F2) ...

 ... when you release the highlighting disappears.

Reproduced with LO 4.3.1.1, 4.2.6.2, 4.1.6.2, 3.6.7.2, 3.3.0.4

Also with AOO 4.1.0, seems inherited from OOO

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


[Libreoffice-bugs] [Bug 71654] LO never remember color settings for my printer

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71654

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

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


[Libreoffice-bugs] [Bug 82412] minimizing the screen option is available without closing the message box.

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82412

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Attachment #104370|text/plain  |image/png
  mime type||

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


[Libreoffice-bugs] [Bug 82412] minimizing the screen option is available without closing the message box.

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82412

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
This bug report in a nutshell: the dialog box is not modal.
https://en.wikipedia.org/wiki/Modal_window

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


[Libreoffice-bugs] [Bug 82416] Other: Impress compression damages .odp file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82416

--- Comment #1 from ign_christian ign_christ...@yahoo.com ---
Hi.. Please provide exact reproducible steps to see the problem.

And try again with 4.3.1.1 and fresh user profile

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


[Libreoffice-bugs] [Bug 82416] Other: Impress compression damages .odp file

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82416

--- Comment #2 from l...@iapp.de ---
Very simple:
a) Load the enclosed file
b) go to (in German, I am using the German version) Extras/Präsentation
komprimieren, use the compression parameters given in the bug report
c) open the compressed presentation, slide 1 is damaged as described in the bug
report

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


[Libreoffice-bugs] [Bug 71654] LO never remember color settings for my printer

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71654

Thierry Vignaud thierry.vign...@gmail.com changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

--- Comment #4 from Thierry Vignaud thierry.vign...@gmail.com ---
That's not the proper resolution.
Color settings wasn't remembered in LO-4.1 whereas it got fixed in the mean
time either in 4.2 or in 4.3

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


[Libreoffice-bugs] [Bug 82414] FILESAVE: R1C1 notation is not preserved and ranges do not appear to sum as expected

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82414

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||mari...@miguelangel.mobi
 Ever confirmed|0   |1

--- Comment #3 from m.a.riosv mari...@miguelangel.mobi ---
I think none of both issues has nothing to do with R1C1, both happen with Calc
A1 notation.

1 - Circular reference error is not showed when self reference is at the
beginning D4: =SUM(D4:D1) doesn't show the error, D4: =SUM(D1:D4) yes.

2 - Redo references to always begin with the lower reference after save and
reopen, I think the bug is that is not done when the formula is entered like in
4.3.1.0.0+ and previous.

IMO maybe better, change this for one and open another for the other, or close
this one and open two new.

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


[Libreoffice-bugs] [Bug 82389] Other: email as attachment does not work

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82389

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---


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

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


[Libreoffice-bugs] [Bug 82038] Other: Send as --email error

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82038

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||trevor.m...@gmx.com

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
*** Bug 82389 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82418] New: FILEOPEN: CSV (Text) Import defaults to UTF-16 resulting in garbled text and can freeze LibreOffice

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82418

  Priority: medium
Bug ID: 82418
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: CSV (Text) Import defaults to UTF-16
resulting in garbled text and can freeze LibreOffice
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: blackcat...@gmail.com
  Hardware: Other
Whiteboard: BSA PossibleRegression
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 104381
  -- https://bugs.freedesktop.org/attachment.cgi?id=104381action=edit
screenshots, bash scripts to generate CSV samples, gdbtrace.log

Problem description: 

CSV/Text data import on fresh installation defaults to UTF-16 (at least in my
case) resulting in a garbled text in the data preview. This is a change to the
behaviour of LibreOffice (LO) from previous releases and can be rather
confusing to less savvy users. Also, if you accidentally okay the dialogue LO
will try to import the file this way, small files will freeze the LO for
considerable amount of time, large files may freeze it indefinitely.

Steps to reproduce:
1. Create some test csv files (see attachment, you can use gensample1.sh,
gensample2.sh scripts to create 100 row and 10k row files)
2. Open samplecsv-100.csv (2.4K) with LO
3. If the character set is UTF-16 then fields preview will be garbled (see
attachment)
4. Change character set to UTF-8: fields preview will be as expected
5. Change back to UTF-16 and press OK: the file will be imported, but it will
take at least couple of seconds (2.4K file), imported data will be cramped into
a single cell of 'random' string
6. Now try to open the samplecsv-10k.csv (253K) file
7. Check the field preview with UTF-16 and UTF-8
8. Change back to UTF-16 and press OK
9. Have some tea, go out, go on holiday, alternatively pkill -15 soffice.bin ;)

Does it mean that there is no sanity check on what LO is trying to import? Is
LO attempting to import the whole 253K file as a single cell?

Expected behaviour:
- Default 'Character set' should be set to UTF-8, maybe 'System'?
- Text import should do some (more) sanity checks before trying to actually
import the data
- There should be a progress bar and there must be a possibility to abort the
import (if the import freezes, all currently opened LO windows/documents will
freeze too)

Problem impairs:
usability / user experience, may freeze LibreOffice


Operating System: Linux (Other)
Version: 4.3.0.4 release
Last worked in: 4.1.3.2 release

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


[Libreoffice-bugs] [Bug 82038] Other: Send as --email error

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82038

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
Some gdb + adding some message in catch exception, I got this:
component context fails to supply service
'com.sun.star.system.SimpleCommandMail' of type
'com.sun.star.system.XSimpleMailClientSupplier'

from this part:
744 if ( ! xSimpleMailClientSupplier.is() )
745 {
746 try {
747 xSimpleMailClientSupplier = SimpleCommandMail::create(
xContext );
748 }
749 catch ( const uno::Exception  )
750 {}
751 }
See
http://opengrok.libreoffice.org/xref/core/sfx2/source/dialog/mailmodel.cxx#744

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


[Libreoffice-bugs] [Bug 82414] FILESAVE: R1C1 notation is not preserved and ranges do not appear to sum as expected

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82414

--- Comment #4 from m.a.riosv mari...@miguelangel.mobi ---
Rethinking about it, if the second is solved the first can't happen. So maybe
only this one can serve, changed the title with a description for the second.

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


[Libreoffice-bugs] [Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 71625, which changed state.

Bug 71625 Summary: Endless autosave loop if the document is not linked to a file
https://bugs.freedesktop.org/show_bug.cgi?id=71625

   What|Removed |Added

 Status|ASSIGNED|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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77999] [META] Autosave/Autorecovery issues

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77999

Bug 77999 depends on bug 71625, which changed state.

Bug 71625 Summary: Endless autosave loop if the document is not linked to a file
https://bugs.freedesktop.org/show_bug.cgi?id=71625

   What|Removed |Added

 Status|ASSIGNED|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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82038] Other: Send as --email error

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82038

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

   Severity|normal  |major
 CC||sberg...@redhat.com
   Keywords||regression

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
Stephan: This problem isn't present on Linux, any idea if it could be related
with Uno part?

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


[Libreoffice-bugs] [Bug 46635] FILESAVE Endless loop during autorecovery if format not writable

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46635

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #57 from Maxim Monastirsky momonas...@gmail.com ---
I commited a fix in Bug 71625 which may fix this one as well. Please test with
a daily build that contains that fix, and close the bug if it's fixed. Thanks!

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


[Libreoffice-bugs] [Bug 82038] Other: Send as --email error

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82038

--- Comment #7 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 104382
  -- https://bugs.freedesktop.org/attachment.cgi?id=104382action=edit
SimpleCommandMail.hpp generated with master sources

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


[Libreoffice-bugs] [Bug 78001] Web: Format Page loops pegging CPU

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78001

--- Comment #8 from Uwe Wiest uw...@yahoo.de ---
Thank you :)

Am 10.08.2014 um 12:40 schrieb bugzilla-dae...@freedesktop.org:

 *Comment # 7 https://bugs.freedesktop.org/show_bug.cgi?id=78001#c7 
 on bug 78001 https://bugs.freedesktop.org/show_bug.cgi?id=78001 from 
 Julien Nabet mailto:serval2...@yahoo.fr *
 Uwe: what you describe is a different problem. You can submit a new bugtracker
 by using this link:
 https://www.libreoffice.org/get-help/bug/
 
 You are receiving this mail because:

   * You are on the CC list for the bug.


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


[Libreoffice-bugs] [Bug 79927] LibreOffice Calc very slow to plot xy line graphic

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79927

--- Comment #4 from Tom blackcat...@gmail.com ---
Hi,

Just to confirm - I was able to reproduce giovanni's problem in LO 4.1 and 4.3.
And I have been experiencing poor performance with graphs for large data sets
(around 10k rows and more) in both LibreOffice/OpenOffice. What is rendered in
Excel in a snap, can take minutes in LO, to the point that it becomes unusable.

Also, I believe this should be merged with at least the following two:

Bug 70872 - Calc very slow with charts with large numbers
https://bugs.freedesktop.org/show_bug.cgi?id=70872

Whis was marked as a duplicate of:
Bug 80677 - UI: Very sluggish with larger data sets
https://bugs.freedesktop.org/show_bug.cgi?id=80677

Is there anyone looking at resolving this issue, please?

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


[Libreoffice-bugs] [Bug 82409] LO open/save file dialogs broken in master

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82409

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
Confirmed on Windows only when the Tools -- Options -- General Open/Save
dialogs check-box Use LibreOfficeDev dialogs is checked.

With it unchecked, all Windows system file dialogs function as expected.

Version: 4.4.0.0.alpha0+
Build ID: c2fd8c4492e9eb12375f78ceb188c87d8fac41b7
TinderBox: Win-x86@39, Branch:master, Time: 2014-07-27_03:39:57

and through today's build.

Version: 4.4.0.0.alpha0+
Build ID: aa0e3701aad1a8a955773e869d9a6b59eac51e72
TinderBox: Win-x86@39, Branch:master, Time: 2014-08-10_07:00:24


Will check things again when Maxim M's commit
http://cgit.freedesktop.org/libreoffice/core/commit/?id=b73ee73da55c5a00acc9adffc825157dd5b375e6
for bug 78845 rolls through.

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


[Libreoffice-bugs] [Bug 79303] Page Numbering restarts when paragraph width is adjusted

2014-08-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79303

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #8 from tommy27 ba...@quipo.it ---
I copypaste here bibisect infos from Bug 80852

---

Xisco Faulí  2014-08-06 16:11:03 UTC 
bibisected:

commit 6e1586198f281b174861c93be569ca613e1b0aae
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Wed Nov 27 07:39:25 2013 +

source-hash-1aae6f6087214f143886dd4c18d226fb1657b5c3

commit 1aae6f6087214f143886dd4c18d226fb1657b5c3
Author: Michael Stahl mst...@redhat.com
AuthorDate: Sat Oct 26 21:35:32 2013 +0200
Commit: Michael Stahl mst...@redhat.com
CommitDate: Sat Oct 26 21:39:19 2013 +0200

nss: fix build breakage of postgresql

Somehow postgresql needs to link both openssl and NSS (yay) ... and it
turns out that NSS builds a libssl.a on MacOSX and Linux, and of
course OpenSSL does too... so avoid that by removing *.a in NSS tree,
which are not needed anyway (some of these are named the same as the
corresponding .so/.dylib to...).

Change-Id: I5c9718e655d350c2e7d0ae05596f8e3130e9bfe1

:100644 100644 7a87ab85fe0e5733eb159141053c7fc9edad4f70
4e339258b1182fd1d3ab540a012a4144eb1f74ee Mccache.log
:100644 100644 9603946f88ddc98c86ef82d62fb28b0f987fb699
4d589f0b009f533221d5e57b52dafb28ca6985aa Mcommitmsg
:100644 100644 4fd8c5d0c72b21ef0b64d31565c1b90add86f339
79a16303ad9a3514d31a0ac6d2a0be68ee6e98bd Mmake.log
:04 04 dde5b8c597f5e78fe6ba49dbf39babfda4bcb110
aba6f4edb64dec00f7d9f1c6d356d83e2e7c6997 Mopt

# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# good: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect good e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [4850941efe43ae800be5c76e1102ab80ac2c085d]
source-hash-980a6e552502f02f12c15bfb1c9f8e6269499f4b
git bisect bad 4850941efe43ae800be5c76e1102ab80ac2c085d
# skip: [a043626b542eb8314218d7439534dce2fc325304]
source-hash-9379a922c07df3cdb7d567cc88dfaaa39ead3681
git bisect skip a043626b542eb8314218d7439534dce2fc325304
# skip: [aba65c3e4c0df07e4909aeefb758cdb688242bf6]
source-hash-827524abfb4b577d08276fde40929a9adfb7ff1a
git bisect skip aba65c3e4c0df07e4909aeefb758cdb688242bf6
# skip: [aba65c3e4c0df07e4909aeefb758cdb688242bf6]
source-hash-827524abfb4b577d08276fde40929a9adfb7ff1a
git bisect skip aba65c3e4c0df07e4909aeefb758cdb688242bf6
# bad: [c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31]
source-hash-c69ed33628ec0b7abf6296539cf280d6c4265930
git bisect bad c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31
# bad: [c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31]
source-hash-c69ed33628ec0b7abf6296539cf280d6c4265930
git bisect bad c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31
# good: [1d4980621741d3050a5fe61b247c157d769988f2]
source-hash-89d01a7d8028ddb765e02c116d202a2435894217
git bisect good 1d4980621741d3050a5fe61b247c157d769988f2
# skip: [89110ca258fa7a15dfc546acfb39e76fc3eb2a44]
source-hash-e450a2c506ac7cd4433b0f93fc750a89919bc03c
git bisect skip 89110ca258fa7a15dfc546acfb39e76fc3eb2a44
# good: [1cca92a409385d9288c28a54d5e3008e56728bc0]
source-hash-7be7824bbbdeee6fa998b950e6046ab37fe690cb
git bisect good 1cca92a409385d9288c28a54d5e3008e56728bc0
# skip: [5fa28ce2931a35ae64ae08d3904cfb76d24459d8]
source-hash-2304beaca33c63b94df99cb827716f00ce259f9a
git bisect skip 5fa28ce2931a35ae64ae08d3904cfb76d24459d8
# good: [2a9ff869c5638dc5c3aa387d0fe55c3291c86288]
source-hash-01b7e04172889cbc9e4ac404b105e18ddc062d6f
git bisect good 2a9ff869c5638dc5c3aa387d0fe55c3291c86288
# bad: [387dd1052972d27a3065a249b357e50e0a29829b]
source-hash-35836f350861b33a0c28307a413eff76d0433d1e
git bisect bad 387dd1052972d27a3065a249b357e50e0a29829b
# good: [5b0bc0b6253d7572470c6a3058d5fff68c93897f]
source-hash-bdf2b506c38b38af531d8c8aa14dd51d89386899
git bisect good 5b0bc0b6253d7572470c6a3058d5fff68c93897f
# good: [288796dca516e779d45513775be7c7bc3ff291f7]
source-hash-5d0051efb99c6cbd0dc4dd655a71e7435159f6bc
git bisect good 288796dca516e779d45513775be7c7bc3ff291f7
# bad: [6e1586198f281b174861c93be569ca613e1b0aae]
source-hash-1aae6f6087214f143886dd4c18d226fb1657b5c3
git bisect bad 6e1586198f281b174861c93be569ca613e1b0aae
# good: [e371c174576801a7865420008f494c0d3f153f1b]
source-hash-01a13519e2a12e1e9b61bab1437d340e389e44bf
git bisect good e371c174576801a7865420008f494c0d3f153f1b
# first bad commit: [6e1586198f281b174861c93be569ca613e1b0aae]
source-hash-1aae6f6087214f143886dd4c18d226fb1657b5c3

-- 
You are receiving this mail because:
You are the assignee for the bug.
___

  1   2   3   >