[Libreoffice-commits] .: 2 commits - sc/source sd/source svx/source sw/source vbahelper/source xmloff/source

2012-05-19 Thread Julien Nabet
 sc/source/core/data/dpdimsave.cxx |2 +-
 sc/source/core/data/dpgroup.cxx   |   18 +-
 sd/source/core/CustomAnimationEffect.cxx  |   18 +-
 sd/source/core/CustomAnimationPreset.cxx  |2 +-
 sd/source/core/shapelist.cxx  |2 +-
 sd/source/core/stlpool.cxx|8 
 sd/source/ui/animations/CustomAnimationPane.cxx   |2 +-
 sd/source/ui/slideshow/slideshowimpl.cxx  |5 -
 sd/source/ui/slideshow/slideshowviewimpl.cxx  |2 +-
 sd/source/ui/view/ViewShellManager.cxx|2 +-
 sd/source/ui/view/viewshel.cxx|2 +-
 svx/source/sdr/overlay/overlaymanager.cxx |8 
 svx/source/sdr/overlay/overlayobjectlist.cxx  |6 +++---
 sw/source/core/doc/acmplwrd.cxx   |2 +-
 vbahelper/source/vbahelper/vbaapplicationbase.cxx |2 +-
 xmloff/source/chart/SchXMLExport.cxx  |2 +-
 xmloff/source/table/XMLTableImport.cxx|4 ++--
 xmloff/source/text/txtimp.cxx |2 +-
 18 files changed, 42 insertions(+), 47 deletions(-)

New commits:
commit 2b657f5844f9362660c253322e4c4059d5875062
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat May 19 15:09:08 2012 +0200

Fix Prefer prefix ++/-- operators for non-primitive types

Change-Id: I4ebb1027151c3bc34f81fb1e13de6c4c5cfed54d

diff --git a/sc/source/core/data/dpdimsave.cxx 
b/sc/source/core/data/dpdimsave.cxx
index 80257be..b9ce099 100644
--- a/sc/source/core/data/dpdimsave.cxx
+++ b/sc/source/core/data/dpdimsave.cxx
@@ -185,7 +185,7 @@ rtl::OUString ScDPSaveGroupDimension::CreateGroupName(const 
rtl::OUString rPref
 
 // look for existing groups
 for ( ScDPSaveGroupItemVec::const_iterator aIter(aGroups.begin());
-aIter != aGroups.end()  !bExists; 
aIter++ )
+aIter != aGroups.end()  !bExists; 
++aIter )
 if (aIter-GetGroupName().equals(aGroupName)) //! ignore 
case
 bExists = true;
 
diff --git a/sc/source/core/data/dpgroup.cxx b/sc/source/core/data/dpgroup.cxx
index a0bb5d9..9b5bf9b 100644
--- a/sc/source/core/data/dpgroup.cxx
+++ b/sc/source/core/data/dpgroup.cxx
@@ -298,7 +298,7 @@ void ScDPGroupItem::AddElement( const ScDPItemData rName )
 
 bool ScDPGroupItem::HasElement( const ScDPItemData rData ) const
 {
-for ( ScDPItemDataVec::const_iterator aIter(aElements.begin()); aIter != 
aElements.end(); aIter++ )
+for ( ScDPItemDataVec::const_iterator aIter(aElements.begin()); aIter != 
aElements.end(); ++aIter )
 if ( aIter-IsCaseInsEqual( rData ) )
 return true;
 
@@ -307,7 +307,7 @@ bool ScDPGroupItem::HasElement( const ScDPItemData rData ) 
const
 
 bool ScDPGroupItem::HasCommonElement( const ScDPGroupItem rOther ) const
 {
-for ( ScDPItemDataVec::const_iterator aIter(aElements.begin()); aIter != 
aElements.end(); aIter++ )
+for ( ScDPItemDataVec::const_iterator aIter(aElements.begin()); aIter != 
aElements.end(); ++aIter )
 if ( rOther.HasElement( *aIter ) )
 return true;
 
@@ -388,7 +388,7 @@ const ScDPGroupItem* ScDPGroupDimension::GetGroupForData( 
const ScDPItemData rD
 
 const ScDPGroupItem* ScDPGroupDimension::GetGroupForName( const ScDPItemData 
rName ) const
 {
-for ( ScDPGroupItemVec::const_iterator aIter(aItems.begin()); aIter != 
aItems.end(); aIter++ )
+for ( ScDPGroupItemVec::const_iterator aIter(aItems.begin()); aIter != 
aItems.end(); ++aIter )
 if ( aIter-GetName().IsCaseInsEqual( rName ) )
 return *aIter;
 
@@ -609,7 +609,7 @@ sal_uLong ScDPGroupTableData::GetNumberFormat(long nDim)
 
 void ScDPGroupTableData::DisposeData()
 {
-for ( ScDPGroupDimensionVec::iterator aIter(aGroups.begin()); aIter != 
aGroups.end(); aIter++ )
+for ( ScDPGroupDimensionVec::iterator aIter(aGroups.begin()); aIter != 
aGroups.end(); ++aIter )
 aIter-DisposeData();
 
 for ( long i=0; inSourceCount; i++ )
@@ -862,7 +862,7 @@ void ScDPGroupTableData::FillGroupValues(vectorSCROW 
rItems, const vectorlon
 
 sal_Bool ScDPGroupTableData::IsBaseForGroup(long nDim) const
 {
-for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter 
!= aGroups.end(); aIter++ )
+for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter 
!= aGroups.end(); ++aIter )
 {
 const ScDPGroupDimension rDim = *aIter;
 if ( rDim.GetSourceDim() == nDim )
@@ -874,7 +874,7 @@ sal_Bool ScDPGroupTableData::IsBaseForGroup(long nDim) const
 
 long ScDPGroupTableData::GetGroupBase(long nGroupDim) const
 {
-for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter 
!= aGroups.end(); aIter++ )
+for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter 
!= aGroups.end(); ++aIter )
 {
 const 

[Bug 44446] LibreOffice 3.6 most annoying bugs

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

--- Comment #8 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 07:22:00 PDT ---
CC'ing dev list as it seems to be missing

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44446] LibreOffice 3.6 most annoying bugs

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Depends on||49806, 48243

--- Comment #9 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 07:29:47 PDT ---
Adding:
* bug 49806 as it is a pptx import regression in windows
* bug 48243 as it is a regression - sdext/ extensions not work in windows

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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


Blanket License Statement

2012-05-19 Thread jgraeme
All of my past  future contributions to LibreOffice may be licensed
under the MPL/LGPLv3+ dual license.

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


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - vcl/unx

2012-05-19 Thread Caolán McNamara
 vcl/unx/generic/printer/cupsmgr.cxx |   76 +++-
 1 file changed, 15 insertions(+), 61 deletions(-)

New commits:
commit 14f078cd52b1471811871bd61cdb0b3ab4f26e1a
Author: Stephan Bergmann sberg...@redhat.com
Date:   Fri May 18 20:52:15 2012 +0200

Revert fix for #i86306# prepare against really broken CUPS 
installations...

...from 8046a87ecc879651ee9cf344211cdd198a419cab.  At least sometimes in
sw_complex test (with various bundled Java extensions enabled) under load, 
this
code reports Signal 11 during cups initialization called, ignoring cups 
and
in-process JVM aborts in panic.  Looks like a legitimate SIGSEGV (to be
translated into java.lang.NullPointerException) from JVM code is erroneously
caught by the temporary lcl_signal_action in cupsmgr.cxx instead.  As there 
is
no non-cooperative way to have different signal handlers for different 
threads
(at least under POSIX), and
https://issues.apache.org/ooo/show_bug.cgi?id=86306 office crashes at 
startup
on Solaris Intel suggests this signal-catching business is only there to 
work
around a completely broken machine, I think it is best to simply remove it
again.

(cherry picked from commit ef48b58387fdc04050c3362440ffe3ca0037d8d0)

Conflicts:

vcl/unx/generic/printer/cupsmgr.cxx

Change-Id: I55b95a71d622f83c975989a4ffb1d95ef5737075

Signed-off-by: Caolán McNamara caol...@redhat.com

diff --git a/vcl/unx/generic/printer/cupsmgr.cxx 
b/vcl/unx/generic/printer/cupsmgr.cxx
index 381478d..3278d3d 100644
--- a/vcl/unx/generic/printer/cupsmgr.cxx
+++ b/vcl/unx/generic/printer/cupsmgr.cxx
@@ -43,8 +43,6 @@
 #include rtl/ustrbuf.hxx
 
 #include algorithm
-#include setjmp.h
-#include signal.h
 
 #define CUPS_LIB_NAME libcups.so.2
 
@@ -442,17 +440,6 @@ void CUPSManager::runDestThread( void* pThis )
 ((CUPSManager*)pThis)-runDests();
 }
 
-static sigjmp_buf aViolationBuffer;
-
-extern C
-{
-static void lcl_signal_action(int nSignal)
-{
-fprintf( stderr, Signal %d during cups initialization called, 
ignoring cups\n, nSignal );
-siglongjmp( aViolationBuffer, 1 );
-}
-}
-
 void CUPSManager::runDests()
 {
 #if OSL_DEBUG_LEVEL  1
@@ -460,62 +447,29 @@ void CUPSManager::runDests()
 #endif
 cups_dest_t* pDests = NULL;
 
-// #i86306# prepare against really broken CUPS installations / missing 
servers
-
-// install signal handler for SEGV, BUS and ABRT
-struct sigaction act;
-struct sigaction oact[3];
-
-act.sa_handler = lcl_signal_action;
-act.sa_flags   = 0;
-sigemptyset((act.sa_mask));
-
-int nSegvSignalInstalled = sigaction(SIGSEGV, act, oact[0]);
-int nBusSignalInstalled = sigaction(SIGBUS, act, oact[1]);
-int nAbortSignalInstalled = sigaction(SIGABRT, act, oact[2]);
-
-// prepare against a signal during FcInit or FcConfigGetCurrent
-if( sigsetjmp( aViolationBuffer, ~0 ) == 0 )
+// n#722902 - do a fast-failing check for cups working *at all* first
+http_t* p_http;
+if( (p_http=m_pCUPSWrapper-httpConnectEncrypt(
+ m_pCUPSWrapper-cupsServer(),
+ m_pCUPSWrapper-ippPort(),
+ m_pCUPSWrapper-cupsEncryption())) != NULL )
 {
-// n#722902 - do a fast-failing check for cups working *at
-// all* first
-http_t* p_http;
-if( (p_http=m_pCUPSWrapper-httpConnectEncrypt(
- m_pCUPSWrapper-cupsServer(), 
- m_pCUPSWrapper-ippPort(),
- m_pCUPSWrapper-cupsEncryption())) != NULL )
-{
-// neat, cups is up, clean up the canary
-m_pCUPSWrapper-httpClose(p_http);
+// neat, cups is up, clean up the canary
+m_pCUPSWrapper-httpClose(p_http);
 
-int nDests = m_pCUPSWrapper-cupsGetDests( pDests );
+int nDests = m_pCUPSWrapper-cupsGetDests( pDests );
 #if OSL_DEBUG_LEVEL  1
-fprintf( stderr, came out of cupsGetDests\n );
+fprintf( stderr, came out of cupsGetDests\n );
 #endif
 
-osl::MutexGuard aGuard( m_aCUPSMutex );
-m_nDests = nDests;
-m_pDests = pDests;
-m_bNewDests = true;
+osl::MutexGuard aGuard( m_aCUPSMutex );
+m_nDests = nDests;
+m_pDests = pDests;
+m_bNewDests = true;
 #if OSL_DEBUG_LEVEL  1
-fprintf( stderr, finished cupsGetDests\n );
+fprintf( stderr, finished cupsGetDests\n );
 #endif
-}
 }
-else
-{
-#if OSL_DEBUG_LEVEL  1
-fprintf( stderr, cupsGetDests crashed, not using CUPS\n );
-#endif
-}
-
-// restore old signal handlers
-if( nSegvSignalInstalled == 0 )
-sigaction( SIGSEGV, oact[0], NULL );
-if( nBusSignalInstalled == 0 )
-sigaction( SIGBUS, oact[1], NULL );
-if( nAbortSignalInstalled == 0 )
-sigaction( SIGABRT, oact[2], NULL );
 }
 
 void CUPSManager::initialize()

Re: [PUSHED][REVIEW-3-5] Revert fix for #i86306# prepare against really broken CUPS installations...

2012-05-19 Thread Caolán McNamara
On Fri, 2012-05-18 at 23:08 +0200, Stephan Bergmann wrote:
 Please review the below master fix for backporting to libreoffice-3-5. 
 (I actually first encountered the problem on the LO 3.5 codeline.)
 
 The below master commit will not cleanly apply to libreoffice-3-5 (at 
 least not to libreoffice-3-5-4, where I tried it), so find attached an 
 adapted 0001-Revert-fix-for-i86306-prepare-against-really-broken-.patch.

ah good, that code always really bugged me and it bit me recently in its
ability to make a simple crash complicated if it happens while the cups
printer discovery is underway so I'd planned to remove it myself.
Pushed.

C.

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


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - binaryurp/source cppu/source

2012-05-19 Thread Caolán McNamara
 binaryurp/source/bridge.cxx   |   46 ++
 binaryurp/source/bridge.hxx   |4 +-
 cppu/source/threadpool/threadpool.cxx |   24 -
 cppu/source/threadpool/threadpool.hxx |4 +-
 4 files changed, 52 insertions(+), 26 deletions(-)

New commits:
commit c4b4ab993b93e57de816d2ca47b0e1be8e24eaab
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed May 16 22:09:21 2012 +0200

Fixed ThreadPool (and dependent ORequestThread) life cycle

At least with sw_complex test under load, it happened that an ORequestThread
could still process a remote release request while the main thread was 
already
in exit(3).  This was because (a) ThreadPool never joined with the spawned
worker threads (which has been rectified by calling 
uno_threadpool_dispose(0)
from the final uno_threadpool_destroy), and (b) binaryurp::Bridge called
uno_threadpool_destroy only from its destructor (which could go as late as
exit(3)) instead of from terminate.

Additional clean up:
* Access to Bridge's threadPool_ is now cleanly controlled by mutex_ (even
  though that might not be necessary in every case).
* ThreadPool's stopDisposing got renamed to destroy, to make meaning 
clearer.

(cherry picked from commit d015384e1d98fe77fd59339044f58efb1ab9fb25)

Conflicts:

binaryurp/source/bridge.cxx

Change-Id: I45fa76e80e790a11065e7bf8ac9d92af2e62f262

Signed-off-by: Caolán McNamara caol...@redhat.com

diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index b491a2a..f591fe0 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -234,16 +234,28 @@ Bridge::Bridge(
 }
 
 void Bridge::start() {
-assert(threadPool_ == 0  !writer_.is()  !reader_.is());
-threadPool_ = uno_threadpool_create();
-assert(threadPool_ != 0);
-writer_.set(new Writer(this));
-writer_-create();
-reader_.set(new Reader(this));
-reader_-create();
+rtl::Reference Reader  r(new Reader(this));
+rtl::Reference Writer  w(new Writer(this));
+{
+osl::MutexGuard g(mutex_);
+assert(threadPool_ == 0  !writer_.is()  !reader_.is());
+threadPool_ = uno_threadpool_create();
+assert(threadPool_ != 0);
+reader_ = r;
+writer_ = w;
+}
+// It is important to call reader_-create() last here; both
+// Writer::execute and Reader::execute can call Bridge::terminate, but
+// Writer::execute is initially blocked in unblocked_.wait() until
+// Reader::execute has called bridge_-sendRequestChangeRequest(), so
+// effectively only reader_-create() can lead to an early call to
+// Bridge::terminate
+w-create();
+r-create();
 }
 
 void Bridge::terminate() {
+uno_ThreadPool tp;
 rtl::Reference Reader  r;
 rtl::Reference Writer  w;
 Listeners ls;
@@ -252,6 +264,7 @@ void Bridge::terminate() {
 if (terminated_) {
 return;
 }
+tp = threadPool_;
 std::swap(reader_, r);
 std::swap(writer_, w);
 ls.swap(listeners_);
@@ -266,8 +279,8 @@ void Bridge::terminate() {
 w-stop();
 joinThread(r.get());
 joinThread(w.get());
-assert(threadPool_ != 0);
-uno_threadpool_dispose(threadPool_);
+assert(tp != 0);
+uno_threadpool_dispose(tp);
 Stubs s;
 {
 osl::MutexGuard g(mutex_);
@@ -294,6 +307,7 @@ void Bridge::terminate() {
 binaryurp, caught runtime exception '  e.Message  
'\'');
 }
 }
+uno_threadpool_destroy(tp);
 }
 
 css::uno::Reference css::connection::XConnection  Bridge::getConnection()
@@ -323,7 +337,8 @@ BinaryAny Bridge::mapCppToBinaryAny(css::uno::Any const  
cppAny) {
 return out;
 }
 
-uno_ThreadPool Bridge::getThreadPool() const {
+uno_ThreadPool Bridge::getThreadPool() {
+osl::MutexGuard g(mutex_);
 assert(threadPool_ != 0);
 return threadPool_;
 }
@@ -564,7 +579,8 @@ bool Bridge::makeCall(
 {
 std::auto_ptr IncomingReply  resp;
 {
-AttachThread att(threadPool_);
+uno_ThreadPool tp = getThreadPool();
+AttachThread att(tp);
 PopOutgoingRequest pop(
 outgoingRequests_, att.getTid(),
 OutgoingRequest(OutgoingRequest::KIND_NORMAL, member, setter));
@@ -575,7 +591,7 @@ bool Bridge::makeCall(
 incrementCalls(true);
 incrementActiveCalls();
 void * job;
-uno_threadpool_enter(threadPool_, job);
+uno_threadpool_enter(tp, job);
 resp.reset(static_cast IncomingReply * (job));
 decrementActiveCalls();
 decrementCalls();
@@ -806,8 +822,8 @@ bool Bridge::isCurrentContextMode() {
 }
 
 Bridge::~Bridge() {
-if (threadPool_ != 0) {
-uno_threadpool_destroy(threadPool_);
+if (getThreadPool() != 0) {
+terminate();
 }
 }
 
@@ -934,7 +950,7 @@ void Bridge::sendProtPropRequest(
 void 

Re: [PUSHED][REVIEW-3-5] Fixed ThreadPool (and dependent ORequestThread) life cycle

2012-05-19 Thread Caolán McNamara
On Fri, 2012-05-18 at 23:04 +0200, Stephan Bergmann wrote:
 I'd like to get this reviewed and backported to libreoffice-3-5.  As
 the commit message explains, only part of it is strictly necessary to
 fix the bug, so 

fair enough, won't pretend to understand area fully, but pushed anyway.
I do recall there was some semi-reproducible crash/hang scenario in the
past which could be replicated by effectively
for (i = 0; i  1; ++i) unopkg add XXX, unopkg remove XXX;

 I would also be fine if reviewers insisted on only
 backporting the two parts that are really necessary and leaving out the
 two cleanup topics. 

sounds like *way* too much effort :-)

C.

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


[Libreoffice-commits] .: Branch 'feature/gbuild_testtools' - Repository.mk testtools/Library_bridgetest.mk testtools/Library_constructors.mk testtools/Library_cppobj.mk testtools/StaticLibrary_bridget

2012-05-19 Thread David Ostrovsky
 Repository.mk |8 
 testtools/Library_bridgetest.mk   |   18 +-
 testtools/Library_constructors.mk |   14 +++---
 testtools/Library_cppobj.mk   |   18 +-
 testtools/StaticLibrary_bridgetest.mk |   13 -
 5 files changed, 33 insertions(+), 38 deletions(-)

New commits:
commit c40a1fe0bcadee60de84d6bba6a1b2a1d5be212c
Author: David Ostrovsky david.ostrov...@gmx.de
Date:   Sat May 19 22:10:41 2012 +0200

prefix testtools libraries with testtools_ in Repository.mk

Change-Id: I0894b073b5263a45c9026ec55049ebeaf0770535

diff --git a/Repository.mk b/Repository.mk
index 72efae3..d3b198c 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -540,9 +540,6 @@ $(eval $(call gb_Helper_register_libraries,UNOLIBS_OOO, \
 endif
 
 $(eval $(call gb_Helper_register_libraries,UNOLIBS_URE, \
-cppobj \
-bridgetest \
-constructors \
 acceptor \
 binaryurp \
 bootstrap \
@@ -557,6 +554,9 @@ $(eval $(call gb_Helper_register_libraries,UNOLIBS_URE, \
 reflection \
 stocservices \
 streams \
+testtools_cppobj \
+testtools_bridgetest \
+testtools_constructors \
 textinstream \
 textoutstream \
 ))
@@ -591,7 +591,7 @@ $(eval $(call 
gb_Helper_register_static_libraries,PLAINLIBS, \
 ooopathutils \
 sample \
 salcpprt \
-testtools_bridgetest \
+testtools_bridgetest_s \
 transex \
 ulingu \
 vclmain \
diff --git a/testtools/Library_bridgetest.mk b/testtools/Library_bridgetest.mk
index b2765f6..a8f8fa5 100644
--- a/testtools/Library_bridgetest.mk
+++ b/testtools/Library_bridgetest.mk
@@ -24,34 +24,34 @@
 # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
 # instead of those above.
 
-$(eval $(call gb_Library_Library,bridgetest))
+$(eval $(call gb_Library_Library,testtools_bridgetest))
 
-$(eval $(call 
gb_Library_set_componentfile,bridgetest,testtools/source/bridgetest/bridgetest))
+$(eval $(call 
gb_Library_set_componentfile,testtools_bridgetest,testtools/source/bridgetest/bridgetest))
 
-$(eval $(call gb_Executable_set_include,bridgetest,\
+$(eval $(call gb_Executable_set_include,testtools_bridgetest,\
 -I$(SRCDIR)/testtools/source/bridgetest \
 $$(INCLUDE) \
 ))
 
-$(eval $(call gb_Library_use_internal_api,bridgetest,\
+$(eval $(call gb_Library_use_internal_api,testtools_bridgetest,\
 bridgetest \
 ))
 
-$(eval $(call gb_Library_use_api,bridgetest,\
+$(eval $(call gb_Library_use_api,testtools_bridgetest,\
 udkapi \
 ))
 
-$(eval $(call gb_Library_use_static_libraries,bridgetest,\
-testtools_bridgetest \
+$(eval $(call gb_Library_use_static_libraries,testtools_bridgetest,\
+testtools_bridgetest_s \
 ))
 
-$(eval $(call gb_Library_use_libraries,bridgetest,\
+$(eval $(call gb_Library_use_libraries,testtools_bridgetest,\
 cppu \
 cppuhelper \
 sal \
 ))
 
-$(eval $(call gb_Library_add_exception_objects,bridgetest,\
+$(eval $(call gb_Library_add_exception_objects,testtools_bridgetest,\
 testtools/source/bridgetest/bridgetest \
 ))
 
diff --git a/testtools/Library_constructors.mk 
b/testtools/Library_constructors.mk
index abf273b..3de7008 100644
--- a/testtools/Library_constructors.mk
+++ b/testtools/Library_constructors.mk
@@ -24,30 +24,30 @@
 # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
 # instead of those above.
 
-$(eval $(call gb_Library_Library,constructors))
+$(eval $(call gb_Library_Library,testtools_constructors))
 
-$(eval $(call 
gb_Library_set_componentfile,constructors,testtools/source/bridgetest/constructors))
+$(eval $(call 
gb_Library_set_componentfile,testtools_constructors,testtools/source/bridgetest/constructors))
 
-$(eval $(call gb_Executable_set_include,constructors,\
+$(eval $(call gb_Executable_set_include,testtools_constructors,\
 -I$(SRCDIR)/testtools/source/bridgetest \
 $$(INCLUDE) \
 ))
 
-$(eval $(call gb_Library_use_internal_api,constructors,\
+$(eval $(call gb_Library_use_internal_api,testtools_constructors,\
 bridgetest \
 ))
 
-$(eval $(call gb_Library_use_api,constructors,\
+$(eval $(call gb_Library_use_api,testtools_constructors,\
 udkapi \
 ))
 
-$(eval $(call gb_Library_use_libraries,constructors,\
+$(eval $(call gb_Library_use_libraries,testtools_constructors,\
 cppu \
 cppuhelper \
 sal \
 ))
 
-$(eval $(call gb_Library_add_exception_objects,constructors,\
+$(eval $(call gb_Library_add_exception_objects,testtools_constructors,\
 testtools/source/bridgetest/constructors \
 ))
 
diff --git a/testtools/Library_cppobj.mk b/testtools/Library_cppobj.mk
index 649f71a..0bbdf23 100644
--- a/testtools/Library_cppobj.mk
+++ b/testtools/Library_cppobj.mk
@@ -24,34 +24,34 @@
 # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
 # instead of those above.
 
-$(eval $(call gb_Library_Library,cppobj))
+$(eval $(call gb_Library_Library,testtools_cppobj))
 
-$(eval $(call 

[Libreoffice-commits] .: Branch 'feature/gbuild_testtools' - testtools/inc testtools/prj testtools/source

2012-05-19 Thread David Ostrovsky
 testtools/inc/makefile.mk   |   39 
 testtools/prj/build.lst |9 -
 testtools/source/bridgetest/cli/makefile.mk |  202 ---
 testtools/source/bridgetest/idl/makefile.mk |   73 
 testtools/source/bridgetest/makefile.mk |  238 
 5 files changed, 2 insertions(+), 559 deletions(-)

New commits:
commit 89715825116bba84c572767c89f031956e44e7ea
Author: David Ostrovsky david.ostrov...@gmx.de
Date:   Sat May 19 22:29:46 2012 +0200

cleaning up dmake stuff

Change-Id: I85d1ffef06028f8781a0406ea6e43b0e0406413c

diff --git a/testtools/inc/makefile.mk b/testtools/inc/makefile.mk
deleted file mode 100644
index 26dc958..000
--- a/testtools/inc/makefile.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-#*
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-# 
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org.  If not, see
-# http://www.openoffice.org/license.html
-# for a copy of the LGPLv3 License.
-#
-#*
-PRJ=..
-
-PRJNAME=testtools
-TARGET=inc
-
-# --- Settings -
-
-.INCLUDE :  settings.mk
-
-# --- Files 
-# --- Targets ---
-
-.INCLUDE :  target.mk
diff --git a/testtools/prj/build.lst b/testtools/prj/build.lst
index 0b8f340..76da8aa 100644
--- a/testtools/prj/build.lst
+++ b/testtools/prj/build.lst
@@ -1,8 +1,3 @@
 tt testtools : cpputools io remotebridges stoc javaunohelper PYUNO:pyuno 
cli_ure offapi ure LIBXSLT:libxslt NULL
-tt testtools\inc nmake - all tt_inc NULL
-tt testtools\source\bridgetest nmake - all tt_bridgetest tt_bridgetest_idl 
tt_inc NULL
-tt testtools\source\bridgetest\cli nmake - w,vc7 tt_cli tt_bridgetest 
tt_bridgetest_idl tt_inc NULL
-tt testtools\source\bridgetest\idl nmake - all tt_bridgetest_idl tt_inc NULL
-tt testtools\com\sun\star\comp\bridge nmake - all tt_javaTestObjs 
tt_bridgetest_idl tt_inc NULL
-tt testtools\source\bridgetest\pyuno nmake - all tt_pyuno tt_bridgetest tt_inc 
NULL
-tt testtools\source\cliversioning nmake - all tt_cliver NULL
+tt testtoolsusr1   
 -   alltt_mkout NULL
+tt testtools\prjnmake   -  
 alltt_prj NULL
diff --git a/testtools/source/bridgetest/cli/makefile.mk 
b/testtools/source/bridgetest/cli/makefile.mk
deleted file mode 100644
index 8965f1d..000
--- a/testtools/source/bridgetest/cli/makefile.mk
+++ /dev/null
@@ -1,202 +0,0 @@
-#*
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-# 
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org.  If not, see
-# http://www.openoffice.org/license.html
-# for a copy of the LGPLv3 License.
-#
-#*
-
-PRJ=..$/..$/..
-
-PRJNAME=testtools
-TARGET=$(ENFORCEDSHLPREFIX)cli_cpp_bridgetest.uno
-USE_DEFFILE=TRUE
-ENABLE_EXCEPTIONS=TRUE
-LIBTARGET=NO
-
-# disable caching to avoid stale objects
-# on version changes
-CCACHE_DISABLE=TRUE
-.EXPORT : CCACHE_DISABLE
-
-# --- Settings 

Re: How to get values for rtlbootstrap.mk in configure?

2012-05-19 Thread Matúš Kukan
On 18 May 2012 12:24, David Tardon dtar...@redhat.com wrote:
 On Fri, May 11, 2012 at 10:40:19PM +0200, Matúš Kukan wrote:
 There is a comment that the variables (RTL_OS RTL_ARCH) should be set
 by configure
 http://cgit.freedesktop.org/libreoffice/core/tree/sdext/platform.mk#n28

 Yeah, that comment was written by me. Because the obvious next step
 would be to set platform ID for extensions in configure too (platform ID
 is $(RTL_OS)_$(RTL_ARCH) converted to lower case. There is no handy
 function for lower case conversion of a string in GNU make).


 How could I do that ?
 Well, it's easy to get the values for my platform but how to do it for all ?

 The values are determined by sal/source/rtl/macro.hxx . So what is
 needed is to map the possible configurations from here on the platform
 specific settings in configure.in at line 2975.

 Somebody wants to do it as an easy hack ;-) ?

 I wanted to create one at that time, but then I was too lazy to check
 what it would involve :-)

So, are you going to create one now ? :-)
Since Tor's fix f5ea2b5fa85660844daf092e84db45a759bf126d
I am not really interested in doing this.

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


Licensing

2012-05-19 Thread Ed Dean
Sorry if this is noise, but Michael Meeks asked for it!  Blame him! :-P

All of my past/existing contributions to LibreOffice may be licensed
under the MPL/LGPLv3+ dual license.


Hate to use future tense since that requires predictive skill which
I'm horrible at.  Hope that at least sets things straight.  All I did
was remove dead code I think, so it probably wont matter in any case.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


lo-commit-stat: why lowercase the first letter?

2012-05-19 Thread Korrawit Pruegsanusak
Hello Petr, all,

Seeing a fix in wiki [1], IIUC this is generated by lo-commit-stat,
which is intended to lowercase the first letter [2].

By git annotate, this part of code is there since the start, so I
would like to ask:
* why lowercase the first letter?
* could this behavior be removed? If yes, I can push the patch to master.

Sorry if this mail sounds offensive, it is not intended, of course :-)

[1] 
http://wiki.documentfoundation.org/index.php?title=Releases/3.5.3/RC1diff=47782oldid=47775
[2] http://opengrok.libreoffice.org/xref/core/bin/lo-commit-stat#64

Best Regards,
-- 
Korrawit Pruegsanusak
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-commits] .: 2 commits - configure.in README.cross

2012-05-19 Thread Norbert Thiebaud
On Fri, May 18, 2012 at 4:39 AM, David Tardon dtar...@redhat.com wrote:
 On Fri, May 18, 2012 at 11:59:40AM +0300, Tor Lillqvist wrote:
  Why not? Changing the inner configure call to
 
  ./configure `cat configure.lastrun.build`

 Sure, but then there would be a discrepancy with how autogen.lastrun
 works. Or should we realize already that autogen.lastrun isn't
 actually valued by developers as a backup copy of their last
 autogen.sh parameters, but it is seen as a precious input file, edited
 and certainly not intended to get over-written... and remove the code
 to (re)write it from autogen.sh?

 TBH, I already forgot it _is_ overwritten :-/ I cannot even remember the
 last time I run autogen.sh with options... So I am all for treating it
 as input file unchangeable by autogen.sh.

 Anyway, I am not opposed to this
 idea. I would perhaps call it configure.args.build (and
 configure.args.host, if we remove the backup copy aspect)?

 I like that.

Advance notice would be appreciated so that I can find a way to adapt
tinderbuild2

Right know I use autogen.lastrun to set each profile autogen.sh
variable by copying a reference file into autogen.lastrun,
before running autogen.sh

iow: I need a way to detect, before autogen.sh, that autogen.lastrun
is not used anymore and add the code to deal with whatever the
replacement is, in tinbuild2, before the change is committed,
otherwise that will break most tinderboxes...

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


Re: [Libreoffice-qa] live issues ticker (was: minutes of ESC call ...)

2012-05-19 Thread Rainer Bielefeld

M

I think the idea was to have a ticker for live sysadmin issues,



Yes,

that's a part of an idea, I will follow up that soon when some other 
actions with higher priority will have been finished.


Best regards

Rainer
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] minutes of the LibreOffice QA call 2012-05-18 14:00 UTC

2012-05-19 Thread Rainer Bielefeld

Bjoern Michaelsen schrieb:


AA+ add yourself on openhatch.org (all)


Hi,

I think it is a good idea to do some networking, offer help and 
contribution, ask for volunteers. And may be openhatch.org can be a 
platform for that.


But for all people who have a brain working similar to mine that website 
is a terrible mess, for me every step was painful, to find where I can 
do a click announcing that I am interested in LibreOffice was more or 
less impossible. I clicked want to help and now I am listed as Want 
to contribute. The projects selector is unsorted, show all projects 
is at a completely different place than show more projects.


That might mean
a) if Rainer does not understand that we have a good chance that
   everybody else will be happy with openhatch.org
b) we can't recommend that platform for everybody's use

openhatch.org might be a good platform for geeks (Widgetize yourself - 
good grief!), but I believe it's completely useless to bring normal 
users in contact with LibreOffice contribution.


Best regards

Rainer


___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] minutes of the LibreOffice QA call 2012-05-18 14:00 UTC

2012-05-19 Thread Bjoern Michaelsen
On Sat, May 19, 2012 at 10:15:30AM +0200, Rainer Bielefeld wrote:
 But for all people who have a brain working similar to mine that
 website is a terrible mess, for me every step was painful, to find
 where I can do a click announcing that I am interested in
 LibreOffice was more or less impossible. I clicked want to help
 and now I am listed as Want to contribute. The projects selector
 is unsorted, show all projects is at a completely different place
 than show more projects.

;)

Im not saying we should use it as primary infra -- just let us be visible there
and pick up everyone else who gets lost in it. That being said, they are rather
young and might improve still.

Best,

Bjoern
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] minutes of the LibreOffice QA call 2012-05-18 14:00 UTC

2012-05-19 Thread Bjoern Michaelsen
Hi,

On Sat, May 19, 2012 at 10:15:30AM +0200, Rainer Bielefeld wrote:
 
 But for all people who have a brain working similar to mine that
 website is a terrible mess, for me every step was painful, to find
 where I can do a click announcing that I am interested in
 LibreOffice was more or less impossible. I clicked want to help
 and now I am listed as Want to contribute. The projects selector
 is unsorted, show all projects is at a completely different place
 than show more projects.

How To OpenHatch

1) Login
2) Click on your Nickname in the top-right left of settings
3) Click on Add/edit projects - add libreoffice
4) Check the Receive maintainer updates checkbox for LibreOffice
4) Click on your Nickname in the top-right left of settings
5) Click on edit in the Info box
6) Add at least libreoffice in Can mentor in
7) Add some way to contact you in How to contact me

...like that we should be able to pick up anyone who is careless enough to
click on the I want to help button (and maybe lead him directly onto our
mailing lists and IRC).

Best,

Bjoern
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-bugs] [Bug 49043] Inserting External Data in Table problem

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49043

Nicola Ricciarelli ricci...@libero.it changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

--- Comment #4 from Nicola Ricciarelli ricci...@libero.it 2012-05-18 23:28:32 
PDT ---
I've just tested the new libreoffice 3.5.4RC1 and the problem is back again.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48136] FORMATTING: Subtract objects (Shapes - Subtract) are modified after loading file

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48136

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Resolution|WONTFIX |WORKSFORME

--- Comment #13 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-18 23:29:51 PDT ---
I was able to reproduce a wrong looking shape with LibreOffice 3.5.1.2 German
UI/Locale [Build-ID: dc9775d-05ecbee-0851ad3-1586698-727bf66] on German WIN7
Home Premium (64bit) and attachment 61814: The eyelet is 25mm too far to the
right and 10mm too far to the top of the page. That matches with Rainer
Matischek's observations.

With 3.5.3 everything looks fine, so I still can't see any problem with a
current Version and set Status back to WFM

(In reply to comment #12)
 So I hope I can help with this information to reproduce the issue...

Currently I can't see any problem in a current version, but may be this issue
is one of those what comes and goes? Please keep on checking with attachment
61814, and if you see the problem for that document reappearing with 3.5.4 or
later, please submit a new bug with a reference to this bug here and add me to
CC.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50107] UI: Full screen mode on and off removes window decorations.

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50107

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-18 23:32:00 PDT ---
Clone of Bug 50106

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50106] UI: Full screen mode on and off removes window decorations.

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50106

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 OS/Version|All |Linux (All)
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-18 23:36:55 PDT ---
@reporter:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
  8I have no Idea what window decoratins might be)
- Contribute a step by step instruction containing every key press and every 
  mouse click how to reproduce your problem (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC (video card, ...)
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO version (with Build ID if it's not a public release)
 and localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
(video hardware acceleration ...)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even if you can not provide all demanded information, every little new
information might bring the breakthrough.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49944] FILEOPEN: File Corruption

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49944

--- Comment #7 from wasg...@gmail.com 2012-05-18 23:39:41 PDT ---
(In reply to comment #6)
 About removing an attachment, I don't know if it's possible for a simple user
 like us. Perhaps it's possible to ask this to an admin but I don't know how it
 works.
 
 About the problem, i sent you in private a file which opens ok on Linux (with
 3.5 branch updated yesterday).

i opened the file ok. It must be a problem with Mac saving .doc files and the
way libreoffice opens them

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50108] Broken compatibility

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50108

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 00:02:35 PDT ---
No idea what reporter wants to tell us, seems to be a continuation of barren
discussion in Bug 47406.

@ski...@alum.mit.edu
Please feel free to reopen this bug if you know a bug in current LibreOffice
and if you can provide useful NEW information. Repeating old arguments and
whining is not new and not useful.

If you need a converter making old buggy documents readable with current LibO
versions so that they can be saved as correct ODF documents, submit a new Bug
for that request with concrete and complete information due to
http://wiki.documentfoundation.org/BugReport  and add me to CC, we will try
to find a solution. 

Anything else will be time wasting.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49031] TDF Site outdated, broken links of LibreOffice portable 3.5

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49031

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49154] : draw crashes when try to open

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49154

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 00:12:23 PDT ---
https://bugs.freedesktop.org/page.cgi?id=fields.html#status
we should used FIXED only if a known fix has solved the problem; if the problem
only disappeared without known reason, please use WORKSFORME.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50055] EDITING: copy paste wrong cell

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50055

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 00:41:33 UTC ---
This is not a valid bug report, any useful information is missing.

NOT [Reproducible] with LibreOffice 3.5.4.1 (RC1) German UI/Locale [Build-ID:
7306755-f4f605c-738527d-1cf4bc1-9930dc8] on German WIN7 Home Premium (64bit)
and Seamonkey 2.9.1. 
I selected copy text from mozilla on this page, prssed control+c, did a
single click on a cell in CALC, and control+v pasted the text to the expected
cell. 

Same result with 3.4.4 on Ubuntu12 (VirtualBox) and Firefox.

Of course I know the described effect, but that's not a CALC bug, but a
hidden TAB (or similar) in the text selected on the web page.

@reporter:
Please feel free to reopen this bug if you find out that the problem still
exists with the current stable LibreOffice version and if you can contribute
requested additional information due to
http://wiki.documentfoundation.org/BugReport (especially BugReport Details)
(and after you have read
https://wiki.documentfoundation.org/BugReport_Details#How_to_reopen_Bugs!)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49944] FILEOPEN: File Corruption

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49944

--- Comment #8 from Julien Nabet serval2...@yahoo.fr 2012-05-19 01:36:28 PDT 
---
Created attachment 61825
  -- https://bugs.freedesktop.org/attachment.cgi?id=61825
console logs with master

I noticed this with your file :
if you say no when LO asks you if you want to repair the file, it shows you
another dialog box where there's only OK (The file filename could not be
repaired and therefore cannot be opened)
If you click OK, it comes back to the first dialog box, etc.

If you do the same about less that ten times (I haven't counted), the file
opens !

I've got the same behaviour with 3.5 and master, so I attached the console logs
from master compiled sources.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50110] New: FILEOPEN, EDITING

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50110

 Bug #: 50110
   Summary: FILEOPEN, EDITING
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: IA64 (Itanium)
OS/Version: other
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mi...@il-cogite.net


FILE OPEN 1) There are several files wich whth Writer close it after a few
seconds, even i don't stroke any keys.
I can work with trhis file with OpenOffice 3.4 writer.
EDITING  2) I use documents  in A5 format with 4 fonts. Often, Writer stops
when i'm working. BUt I use OOo 3.4 I have no problems
It seems instability was in LO writer.
I can send you the files If necessary.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49944] FILEOPEN: File Corruption

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49944

--- Comment #9 from Julien Nabet serval2...@yahoo.fr 2012-05-19 01:52:42 PDT 
---
Finally, I also tested with Windows, it opens without problem.
I also made a last test :
- remove the extension .doc of the file, Linux LO opens it ok (with the same
console messages)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #7 from Allards allard.schm...@gmail.com 2012-05-19 01:54:51 PDT 
---
Created attachment 61826
  -- https://bugs.freedesktop.org/attachment.cgi?id=61826
Test .ods file used

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #8 from Allards allard.schm...@gmail.com 2012-05-19 01:55:23 PDT 
---
I ran an mdls on a .ods 


mdls test.ods
kMDItemContentCreationDate = 2012-05-19 08:53:52 +
kMDItemContentModificationDate = 2012-05-19 08:53:52 +
kMDItemContentType = org.oasis-open.opendocument.spreadsheet
kMDItemContentTypeTree = (
org.oasis-open.opendocument.spreadsheet,
public.data,
public.item,
public.content
)
kMDItemDateAdded   = 2012-05-19 08:53:52 +
kMDItemDisplayName = test.ods
kMDItemFSContentChangeDate = 2012-05-19 08:53:52 +
kMDItemFSCreationDate  = 2012-05-19 08:53:52 +
kMDItemFSCreatorCode   = 
kMDItemFSFinderFlags   = 0
kMDItemFSHasCustomIcon = 0
kMDItemFSInvisible = 0
kMDItemFSIsExtensionHidden = 0
kMDItemFSIsStationery  = 0
kMDItemFSLabel = 0
kMDItemFSName  = test.ods
kMDItemFSNodeCount = 7271
kMDItemFSOwnerGroupID  = 20
kMDItemFSOwnerUserID   = 501
kMDItemFSSize  = 7271
kMDItemFSTypeCode  = 
kMDItemKind= OpenDocument Spreadsheet
kMDItemLastUsedDate= 2012-05-19 08:53:53 +
kMDItemLogicalSize = 7271
kMDItemPhysicalSize= 8192
kMDItemUseCount= 2
kMDItemUsedDates   = (
2012-05-18 22:00:00 +
)
Allards-MacBook-Pro:desktop Allards$

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

Allards allard.schm...@gmail.com changed:

   What|Removed |Added

  Attachment #61810|Test file used. |Test .odt file used.
description||

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #9 from Allards allard.schm...@gmail.com 2012-05-19 01:59:46 PDT 
---
ODF

mdls test.odf
kMDItemContentCreationDate = 2012-05-19 08:57:50 +
kMDItemContentModificationDate = 2012-05-19 08:57:53 +
kMDItemContentType = org.oasis-open.opendocument.formula
kMDItemContentTypeTree = (
org.oasis-open.opendocument.formula,
public.data,
public.item,
public.content
)
kMDItemDateAdded   = 2012-05-19 08:58:12 +
kMDItemDisplayName = test.odf
kMDItemFSContentChangeDate = 2012-05-19 08:57:53 +
kMDItemFSCreationDate  = 2012-05-19 08:57:50 +
kMDItemFSCreatorCode   = 
kMDItemFSFinderFlags   = 0
kMDItemFSHasCustomIcon = 0
kMDItemFSInvisible = 0
kMDItemFSIsExtensionHidden = 0
kMDItemFSIsStationery  = 0
kMDItemFSLabel = 0
kMDItemFSName  = test.odf
kMDItemFSNodeCount = 4610
kMDItemFSOwnerGroupID  = 20
kMDItemFSOwnerUserID   = 501
kMDItemFSSize  = 4610
kMDItemFSTypeCode  = 
kMDItemKind= OpenDocument Formula
kMDItemLastUsedDate= 2012-05-19 08:57:54 +
kMDItemLogicalSize = 4610
kMDItemPhysicalSize= 8192
kMDItemUseCount= 3
kMDItemUsedDates   = (
2012-05-18 22:00:00 +
)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #10 from Allards allard.schm...@gmail.com 2012-05-19 02:00:08 PDT 
---
Created attachment 61827
  -- https://bugs.freedesktop.org/attachment.cgi?id=61827
Test .odf file used

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #11 from Allards allard.schm...@gmail.com 2012-05-19 02:00:37 PDT 
---
Created attachment 61828
  -- https://bugs.freedesktop.org/attachment.cgi?id=61828
Test .odg file used

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49939] .Odf files not showing in Document search!

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49939

--- Comment #12 from Allards allard.schm...@gmail.com 2012-05-19 02:01:02 PDT 
---
Created attachment 61829
  -- https://bugs.freedesktop.org/attachment.cgi?id=61829
Test .odp file used

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41748] LO crashes while opening Word doc

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41748

--- Comment #6 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 02:26:45 PDT 
---
Verified with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64. No crash.


But: 1 page instead of 16 (MS Word 2007), text and tables missing.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44991] FILEOPEN: [docx] Open MS_Word document ends in LO3.4 has stopped working

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44991

s-joyemuseq...@vf.uni-konstanz.de changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #7 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 02:31:44 PDT 
---
Verified with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 45190] FILEOPEN Shifted and invisible content in table in rtf document

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45190

--- Comment #8 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 02:38:00 PDT 
---
Verified with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64. Content is visible and not shifted.

But: table formatting

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46028] [RFE, FORMATTING] Permit associating an image/symbol/text label to a paragraph style

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46028

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

   Platform|Other   |All

--- Comment #3 from sasha.libreoff...@gmail.com 2012-05-19 02:39:32 PDT ---
Thanks for additional information. Another important thing: ODF format. If it
not allow such thing, then we can not save such thing into document.

PS: IMHO this functionality resembles Drop Caps, but with ability to use image
instead of character.
(I just tried to place image into paragraph as character, and the enabled
dropcaps. But Writer not count image-anchored-as-character as character for
Drop Caps. May be it is a bug?)
May be we should ask developers to improve Drop Caps? It may be more easy to
implement and for users more understandable how to use and where to search for
such functionality.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46721] docx triggers crash in Windows (unknown reason) (file attached)

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46721

--- Comment #7 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 02:41:18 PDT 
---
Verified with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64. No crash.

But: Formatting issues, text garbled. (Seems to be OK with LibO 3.4.5.)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44282] [FORMATING] [TOC] space missing between text and ouline numbering

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44282

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

   Platform|Other   |All
   Severity|normal  |enhancement

--- Comment #5 from sasha.libreoff...@gmail.com 2012-05-19 02:56:13 PDT ---
Thanks for attachment, workaround, and additional information.
It is enhancement request because Writer works correctly, at least formally.
But productivity may be increased.
Another question: what to add, space or tab? If space, then how much? If tab
then on which distance? 0.5 cm looks reasonable for me.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44282] [FORMATING] [TOC] space missing between text and ouline numbering

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44282

--- Comment #6 from Alexandr olexandr.dmitr...@gmail.com 2012-05-19 03:07:46 
UTC ---
I have inserted one space - and it looks very well. 

But there is a small problem with this workaround: I have two chapters in the
beginning without numbers (anтotation and introduction) if I insert a space it
also affects them - they start not from the beginning of the line, but after
the space. Of course it is much more better, than it was before without space
but does not look perfectly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 45528] Open all files is *.* and should be *

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45528

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

Version|unspecified |LibO 3.3.4 release

--- Comment #3 from sasha.libreoff...@gmail.com 2012-05-19 03:08:16 PDT ---
Thanks for additional information.
reproduced in 3.3.4 on Fedora 64 bit KDE, installed from repo
NOT reproducible on Fedora 64 bit KDE, installed from libreoffice.org (*.*
shown, but files without dot opened correctly)

Changing version to 3.3.4 as most early reproducible

@ ffs
Please, provide distro name and version where reproducible (files without dot
not opened), LO version and from where installed

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44282] [FORMATING] [TOC] space missing between text and ouline numbering

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44282

--- Comment #7 from Alexandr olexandr.dmitr...@gmail.com 2012-05-19 03:08:26 
PDT ---
Created attachment 61834
  -- https://bugs.freedesktop.org/attachment.cgi?id=61834
Example with space

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46469] : Menu displays on dual-monitor systems too far to the left

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46469

--- Comment #6 from sasha.libreoff...@gmail.com 2012-05-19 03:12:47 PDT ---
Thanks for additional information. May be someone can try in another desktop?
For determine that it is not Gnome specific.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46081] improper formatting when creating timelines

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46081

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #3 from sasha.libreoff...@gmail.com 2012-05-19 03:15:13 PDT ---
Thanks for additional testing
Due to last comment, changing status to WorksForMe

If problem will appear again, please, change status to Reopened

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44282] [FORMATING] [TOC] space missing between text and ouline numbering

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44282

--- Comment #8 from sasha.libreoff...@gmail.com 2012-05-19 03:21:22 PDT ---
Created attachment 61835
  -- https://bugs.freedesktop.org/attachment.cgi?id=61835
The same example, but with tab 0,5 cm instead of space

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47563] Drop-down arrows for borders, background color and font color non functional

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47563

daniel.ma...@umb.no changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44282] [FORMATING] [TOC] space missing between text and ouline numbering

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44282

--- Comment #9 from Alexandr olexandr.dmitr...@gmail.com 2012-05-19 03:31:58 
PDT ---
Looks much more better with tab! 

But shouldn't be lines without numbers left aligned as the numbered lines? I
think this variant will be correct. But your with tab is also very good.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50110] FILEOPEN, EDITING

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50110

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 04:10:22 PDT ---
NOT reproducible with LibreOffice 3.5.4.1 (RC1) German UI/Locale [Build-ID:
7306755-f4f605c-738527d-1cf4bc1-9930dc8] on German WIN7 Home Premium (64bit) 

@Michel Scifo:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a document related step by step instruction containing 
  every key press and every 
  mouse click how to reproduce your problem (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected (Crash? Closes document? 
 With or without changes?
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC (video card, ...)
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO version and localization (UI language, Locale
setting)
  –- Libo settings that might be related to your problems 
(video hardware acceleration ...)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even if you can not provide all demanded information, every little new
information might bring the breakthrough.

May be you can test https://www.libreoffice.org/get-help/bug/ for submitting
bug reports?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50100] [Task] Verify a Bugfix

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50100

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Verify a Bugfix |[Task] Verify a Bugfix

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49515] PRINTING from back tray does not work

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49515

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||INVALID

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 04:12:57 PDT ---
Closing Bug due to reporter's inactivity as INVALID.

@reporter:
Please feel free to reopen this bug if you find out that the problem still
exists with the current stable LibreOffice version and if you can contribute
requested additional information due to
http://wiki.documentfoundation.org/BugReport (especially BugReport Details)!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49536] CRASH when open document 'Help - Credits'

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49536

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||DUPLICATE

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 04:35:28 PDT ---
Crash or simple close? I can reproduce close when I open the document from LibO
Start Center, but not when I open it from an other document.

DUP of Bug 30920 - Closing Credits or License (WRITER-) document closes
LibreOffice for now.

@reporter:
Please feel free to reopen this bug if you find out that the problem still
exists with LibreOffice version after Fix for Bug 30920

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49350] freeze when saving new entry to a large autocorrect replacement table

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49350

--- Comment #8 from Michael Meeks michael.me...@novell.com 2012-05-19 
05:12:52 PDT ---
Please - install a Linux virtual machine, install a build with debug symbols,
and run it under callgrind.

Post the callgrind.out.12235 file, and then we can trivially fix it.

The video is not useful - no-one doubts that this operation is slow; the big
piece of the work is replicating your system to the point that we can do the
profiling to get the above: that is most-likely 95% of the work to fix it - and
all of it can be done by a motivated user.

As/when a profile is there, made vs. a build with debug info - I will
personally fix it for you.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50114] New: Bad inserted simple SVG

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50114

 Bug #: 50114
   Summary: Bad inserted simple SVG
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: borneq.spamt...@gmail.com


Created attachment 61839
  -- https://bugs.freedesktop.org/attachment.cgi?id=61839
inserted svg has no text and has black rectangle

I make simple SVG in Inkscape and insert it. In writer .svg has not texts and
show black rectangle.
I attach original SVG and printscreen from writer

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50115] New: FILESAVE: Frames saved in docx are not saved correctly

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50115

 Bug #: 50115
   Summary: FILESAVE: Frames saved in docx are not saved correctly
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: liamria@lycos.com


Created attachment 61840
  -- https://bugs.freedesktop.org/attachment.cgi?id=61840
Test file with frames

Problem description: 

I have a odt document created with text frames put text to certain positions.
When I save this document as docx and re-open it in writer the frames are not
there anymore.

Steps to reproduce:
1. open test.odt in writer
2. save as Window 2007/2010 xml .docx
3. re-open that file (now test.docx)
4. frames screwed up

Current behavior:

Expected behavior:

Frames should should be shown as in odt

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101
Firefox/12.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50116] New: System Regional Settings (date format) not reflected in Libre Office

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50116

 Bug #: 50116
   Summary: System Regional Settings (date format) not reflected
in Libre Office
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.2 Release
  Platform: All
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mco...@yahoo.com


modifying system regional settings - changing the date format - has no effect
on libre office's spreadsheet. in input line (after restarting) there is still
format as defaulted for particular locale. 
that makes serious difficulties when entering dates.
Milan

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49350] freeze when saving new entry to a large autocorrect replacement table

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49350

--- Comment #9 from tommy27 ba...@quipo.it 2012-05-19 06:12:04 PDT ---
Ok Micheal, I'll try my best... I have no experience at all with Linux but I
have to start from somewhere...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 39981] automatic correctioin of two capital letters in word initial position does not work anymore

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39981

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com

--- Comment #6 from manj_k courrier.oou.fr@googlemail.com 2012-05-19 
06:25:23 PDT ---
Corrected status:
RESOLVED WORKSFORME

@Cor Nouws:
Your consenting smile?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47648] [EasyHack] Create VirtualBox for bibisecting

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47648

--- Comment #8 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 06:44:53 PDT ---
I finished uploading to Elton's layerjet server (thanks Elton), and now Elton
has publicized the files:

OVA:
http://mirror.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.ova
http://mirror2.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.ova
http://mirror3.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.ova
MD5: e85d8ea0650b6d9a0e21d19ba7ecd837

ZIP:
http://mirror.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.zip
http://mirror2.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.zip
http://mirror3.layerjet.com/libreoffice-qa/Ubuntu_12.04_Bibisect.zip
MD5: a14395d5ad20689c0b00b97a2b348480

Thanks everyone involved! :-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA Contact for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 44446] LibreOffice 3.6 most annoying bugs

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

--- Comment #8 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 07:22:00 PDT ---
CC'ing dev list as it seems to be missing

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50117] New: Hebrew text displays the letter a instead of ש during installation

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50117

 Bug #: 50117
   Summary: Hebrew text displays the letter a instead of ש during
installation
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Localisation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sha...@venera.com


Created attachment 61845
  -- https://bugs.freedesktop.org/attachment.cgi?id=61845
Hebrew text displays the letter a instead of ש during installation

Hebrew text displays the letter a instead of ש during installation - see
attached image

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44446] LibreOffice 3.6 most annoying bugs

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Depends on||49806, 48243

--- Comment #9 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 07:29:47 PDT ---
Adding:
* bug 49806 as it is a pptx import regression in windows
* bug 48243 as it is a regression - sdext/ extensions not work in windows

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49806] FILEOPEN pptx font messed

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49806

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Blocks||6

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50036] Transparent Menu Bar

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50036

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 CC||detective.conan.1412@gmail.
   ||com

--- Comment #2 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 07:44:23 PDT ---
This is intended, a change from Jan Holesovsky:
http://cgit.freedesktop.org/libreoffice/core/commit/?id=64c696fc92a860fdbbe490ca503391b964dd646f

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50118] New: calc UI Use English function names not as it should be

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50118

 Bug #: 50118
   Summary: calc UI Use English function names not as it should
be
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: narebeest...@yahoo.com


In LibreOffice you can activate this feature under the preferences for
LibreOffice Calc -- Forumule 

I noticed that apparently this feature is not implemented or working
completely?

In a sheet using YEARFRAC it shows JAAR.DEEL with a Dutch locale and this
setting activated.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46112] Formatting Cell Border

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46112

--- Comment #3 from Ian~G grayl...@orange.net 2012-05-19 08:12:21 PDT ---
Created attachment 61846
  -- https://bugs.freedesktop.org/attachment.cgi?id=61846
ods spreadsheet with some double border cells

the first two lines of totals are as imported from openoffice 3.2.1 These look
right on screen in 3.2.1, look a bit fat and funky in preview, but print pretty
well ok. Though they do look a bit boldface.

In 3.5.3 they look like great thick bars on normal screen view, and in print
preview. They also print like great thick bars.

The Third line of totals has been modded to look good on normal screen view and
is what things should look like in this view. But in preview they come out
boldface (too thick) and they print the same.

The last line of totals looks wrong on normal screen view (like a single
underline), but looks ok once you have zoomed well in on a print preview and
prints correctly. Viz: a thin overline and double thin underlines.

Note that I also had to alter the spacing to contents to get the numbers to sit
right within the borders (not too high)

It would be nice to be able to also do a boldface version of both over and
double underlines - maybe 0.1pt thick? - for final bottom-line totals. This
sort of thing is very common in financial spreadsheets, annual accounts, all
that kind of stuff.

Many thanks for your help with this.

Regards, Ian

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47119] CONFIGURATION: assign F3 to Edit-Repeat Search as default, at least for Calc

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47119

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Status Whiteboard|BSA |BSA target:3.6.0
 Resolution||FIXED
 CC||detective.conan.1412@gmail.
   ||com

--- Comment #1 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 08:18:06 PDT ---
This is already implemented by Jan Holesovsky:
http://cgit.freedesktop.org/libreoffice/core/commit/?id=c6ec7ed43b0861e1c96d62aa75b594b1dd81e315

It will be available in LibreOffice 3.6.0, at least.

Note that *currently*:
* it can be used only when the cursor is in the findbar
* we also have Ctrl+G to do this (bug 46438)
* it is hardcoded, so it isn't configure-able

More info:
http://nabble.documentfoundation.org/Libreoffice-ux-advise-Find-Next-Find-Previous-context-shortcut-keys-show-or-not-td3973838.html

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48686] Export as SVG in Math

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48686

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement
 CC||detective.conan.1412@gmail.
   ||com
Summary|Export as SVG   |Export as SVG in Math
Version|LibO Master |unspecified
  Component|Drawing |Formula Editor

--- Comment #1 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-05-19 08:31:28 PDT ---
Draw: already there. See File  Export  select SVG as file type.
Math: not yet, so I am changing this bug to an enchantment request. Thanks!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50036] Transparent Menu Bar

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50036

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 08:35:41 UTC ---
It would be more than understated to say that I dislike that. That design costs
1% productivity for me. 
And BTW LibO 3.6 the only software on my WIN7 PC with a transparent menu bar.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 34940] Start on click does not work with movies

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34940

smwilso...@gmail.com changed:

   What|Removed |Added

   Platform|x86 (IA32)  |x86-64 (AMD64)
   Severity|normal  |major
   Priority|medium  |high
Version|LibO 3.3.1 release  |LibO 3.5.3 release

--- Comment #6 from smwilso...@gmail.com 2012-05-19 08:49:54 PDT ---
I experience this bug: any inserted movies start when the slide starts, no
matter what I set in the custom animation settings.

This bug prevents me from using Impress, so I am really hoping it will be fixed
soon.

LibreOffice 3.5.3.2
Build ID: 350m1(Build:2)
ArchLinux

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50119] New: FILEOPEN: Bullets and numbering font import

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50119

 Bug #: 50119
   Summary: FILEOPEN: Bullets and numbering font import
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.4 RC1
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: digitalant@gmail.com


Created attachment 61850
  -- https://bugs.freedesktop.org/attachment.cgi?id=61850
zip file contains a screenshot from MSO2010, a screen shot from LibO354rc1, and
part of the document in question. I could not include the entire original
document due to its content, I hope the document is testable.

Problem description: Reported by one of our users yesterday on 3.5.3 - I
verified on Windows XP/LibO 3.5.3, Windows 7/LibO 3.5.3, and both 3.5.3 and
later 3.5.4rc1 on my Mac OS X intel 10.6.8. All US English.

User received multiple contracts (in .doc format) via email that contain
multiple numbering levels and bullet levels. The document import starts out
fine properly formatting items 1.1 thru 3.4 as Times new Roman and as a
numbered list. For some reason, numbered items 4.1, 4.2, 4.3 and 4.4 actually
show up as symbols instead of 4.1 etc. When you click on the symbols, you see
that they are being interpreted as a numbered list, but that the font is
interpreted Wingding instead of Times New Roman.

After seeing this, I checked the bug list and found a similar bug (34814) was
patched in 3.5.4rc1, so I tested it in 3.5.4rc1, but my document still imported
incompletely.

I can apply a font substitution rule for Wingdings to Symbol and the document
is readable - BUT that is not a fix because it is still interpreted as
Wingdings. So if the document is modified, saved and emailed back, the user on
the other end now sees wingding symbols.

FYI, I opened this on a VM running MSO2010 and noticed that it has its own font
substitution issues in the document. Trying to find some reason or pattern that
might cause the font issue, I noticed in MSO that the numbering for 3.1, 3.2,
3.3, and 3.4 are in Garamond and the item text is in Times new Roman. On 4.1
the numbering and the item text is in Times new Roman, on 4.2 and 4.3 the
numbering is in TNR and the item text is in Garamond. It seems that the
document switches from TNR and Garamond throughout the document and LibO picks
up all of the font changes EXCEPT for the numbering.

Another example in the document is in section 10.2 - the subpoints are supposed
to be numbered as (a), (b), (c), etc. It is all Times New Roman as well, but
imports as Wingdings

Steps to reproduce:
1. Open imported document 
2. Check on numbered lists buy clicking on them to test font substitution

Current behavior: Numbered lists do not format correctly throughout entire
document - turn into symbols

Expected behavior: 

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/536.5
(KHTML, like Gecko) Chrome/19.0.1084.46 Safari/536.5

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50120] New: Problems with search

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50120

 Bug #: 50120
   Summary: Problems with search
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: borneq.spamt...@gmail.com


^F - not shows search dialog, caret disappear.
Not key (for example F3) for Find next

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47436] FILEOPEN: Writer crashes when it opens an odt file produced by JasperReport

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47436

s-joyemuseq...@vf.uni-konstanz.de changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #11 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 09:25:58 PDT 
---
Verified with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50122] New: : LibO not responding when inserting text field.

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50122

 Bug #: 50122
   Summary: : LibO not responding when inserting text field.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sasha.chern...@gmail.com


Created attachment 61853
  -- https://bugs.freedesktop.org/attachment.cgi?id=61853
This is a screenshot that I get when trying to insert a text field.

Problem description: 
When I try to insert information about the number of pages in a text field,
LIbO hangs.

Steps to reproduce:
1. Create text field: In drawning panel press insert text.
2. Try to insert some what field: Insert  Field  Date

Current behavior:
Freezing,then Out of memory

dmesg | tail
[11702.543588] [16577]  1000 16577106577   1   0 0
gvfsd-http
[11702.543592] [16612]  1000 1661288867 2315   0   0 0
evolution
[11702.543596] [16842]  1000 16842 89175   0   0 0
oosplash
[11702.543599] [16861]  1000 16861   675990   327513   1   0 0
soffice.bin
[11702.543603] [17138]  1000 17138 2943 1405   0   0 0
bash
[11702.543607] Out of memory: Kill process 16861 (soffice.bin) score 649 or
sacrifice child
[11702.546967] Killed process 16861 (soffice.bin) total-vm:2703960kB,
anon-rss:1310052kB, file-rss:0kB
[11712.587900] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[11761.325578] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[11833.321696] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id


Expected behavior:
Normal insert Current date in this field

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:12.0) Gecko/20100101
Firefox/12.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50123] New: Crashes throwing an instance of 'com::sun::star::uno::RuntimeException'

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50123

 Bug #: 50123
   Summary: Crashes throwing an instance of
'com::sun::star::uno::RuntimeException'
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: marken...@gmail.com


Created attachment 61854
  -- https://bugs.freedesktop.org/attachment.cgi?id=61854
the 3 logs compressed with bzip2

Fresh installation from Ubuntu 12.04 repository after removing OpenOffice and
moving ~/.config/libreoffice. Running /usr/bin/soffice from terminal or by
Nautilus or by Application in Unity leads to a brief appearance of the splash
window followed by a crash. Recommended logs attached. Googled for an answer on
similar reports without success. Installation went without errors. French
installation of Ubuntu. More than 16 hours on it.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50120] Problems with search

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50120

s-joyemuseq...@vf.uni-konstanz.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

--- Comment #1 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 10:12:53 PDT 
---
Tested with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64. No problems. Ctrl+F and F3 do work.

Tested with LibO 3.5.4 RC1 under Windows XP: Ctrl+F works, F3 does not work, up
and down arrow has to be clicked.

So partly confirmed, probably regression too.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50094] FILESAVE: Wrong font size for links when saving as Office97 .doc

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50094

s-joyemuseq...@vf.uni-konstanz.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||s-joyemuseq...@vf.uni-konst
   ||anz.de
 Ever Confirmed|0   |1
   Keywords||regression

--- Comment #2 from s-joyemuseq...@vf.uni-konstanz.de 2012-05-19 10:37:02 PDT 
---
Confirmed with LOdev 3.6 (master - 18-May-2012 02h44 x86@6-fast; Build ID:
8b1d29b) under Windows Vista 64.

Works fine in LibO 3.3.4 = REGRESSION

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47832] FILESAFE: Pictures on buttons, created in forms, gone after reopening form

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47832

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

   See Also|https://www.libreoffice.org |https://bugs.freedesktop.or
   |/bugzilla/show_bug.cgi?id=3 |g/show_bug.cgi?id=33393
   |3393|

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 39212] Loss of OpenOffice default behavior for copying formulas EDITING

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39212

--- Comment #12 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:04 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50003] NoDisplay=true is set in math.desktop

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50003

--- Comment #2 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:06 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47712] EDITING: writer unresponsiveness

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47712

--- Comment #6 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:07 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47496] Saving a DBF (dBase) after Editing values changes the column data format: adds trailing decimals (FILESAFE, FORMATTING)

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47496

--- Comment #2 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:08 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 43260] BUGZILLAASSISTANT: Strange layout and very poor behaviour of login page

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43260

--- Comment #3 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:09 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49255] FORMATTING: Calc: row height not preserved after saving and and loading

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49255

--- Comment #2 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:10 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48113] EDITING: Correction in Spell Grammar dialog does not set smart punctuation

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48113

--- Comment #1 from Florian Reisinger reisi...@gmail.com 2012-05-19 10:42:12 
PDT ---
Please do not use https://www.libreoffice.org/bugzilla/*, use
https://bugs.freedesktop.org/* URLs instead..
Thanks

Florian R.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 34940] Start on click does not work with movies

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34940

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

Version|LibO 3.5.3 release  |LibO 3.3.1 release

--- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-19 10:54:53 PDT ---
@smwilso...@gmail.com:
http://wiki.documentfoundation.org/BugReport_Details#Version

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50126] New: FILEOPEN

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50126

 Bug #: 50126
   Summary: FILEOPEN
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: luu...@gmail.com


Created attachment 61857
  -- https://bugs.freedesktop.org/attachment.cgi?id=61857
an example ODS-file ;)

When opening a file, by choosing it from WindowsExplorer, its taking almost 3
seconds to open a *.ODS file.

If calc is alread open, opening the document is fine.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50128] New: Formula =HYPERLINK() makes not executable links

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50128

 Bug #: 50128
   Summary: Formula =HYPERLINK() makes not executable links
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.4 RC1
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: major
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: oss...@gmail.com


Links made by formula =HYPERLINK() are unusable. When I'm clicking it, dialog
box appears:

For security reasons, the hyperlink cannot be executed.
The stated address will not be opened.

Link made by hyperlink creator works fine but creator is not good solution in
some cases.
Problem appeared in LibreOffice 3.5.3 and it still exists in 3.5.4 RC.

I was trying to fix it in security settings but there is no feature to change
it.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49350] freeze when saving new entry to a large autocorrect replacement table

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49350

--- Comment #10 from tommy27 ba...@quipo.it 2012-05-19 12:44:41 PDT ---
my only concern is that -as it seems- the issue is more prominent on Windows
(15-60 seconds) than Linux/Max (2-3 seconds according to above posts).

so I wonder if a callgrind on Linux would disclose what's causing a longer
freeze on Windows...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50123] Crashes throwing an instance of 'com::sun::star::uno::RuntimeException'

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50123

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 CC||sberg...@redhat.com

--- Comment #1 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-05-19 13:02:23 PDT ---
From backtrace:

#7  0xb7f2525e in desktop::Desktop::ensureProcessServiceFactory () at
/build/buildd/libreoffice-3.5.3/desktop/source/app/app.cxx:753
No locals.
#8  0xb7f2528f in desktop::Desktop::GetCommandLineArgs () at
/build/buildd/libreoffice-3.5.3/desktop/source/app/app.cxx:321
No locals.

Seems like the ProcessServiceFactory reference is not initialized.

@sberg: Care to have a look maybe?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 34940] Start on click does not work with movies

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34940

tim.h...@gmail.com changed:

   What|Removed |Added

Version|LibO 3.3.1 release  |LibO 3.5.3 release

--- Comment #8 from tim.h...@gmail.com 2012-05-19 13:12:05 PDT ---
This problem is still true for LibreOffice 3.5.3.2 (Kubuntu 12.04). Clearly it
is Linux-specific.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 34940] Start on click does not work with movies

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34940

tim.h...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 34940] Start on click does not work with movies

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34940

tim.h...@gmail.com changed:

   What|Removed |Added

   Severity|major   |normal
   Priority|high|medium

--- Comment #9 from tim.h...@gmail.com 2012-05-19 13:21:43 PDT ---
@Rainer Bielefeld: to be clear, what I'm talking about is:
1. Create a new Impress presentation
2. In a blank slide, select Insert - Movie and Sound...
3. Find a .avi file (or other movie format) on your hard drive, and select it.
4. Right-click on the inserted movie, choose Custom Animation, then Add... -
Misc Effects - Start media
5. Launch the presentation (F5 on Linux)

You'll see that the movie plays as soon as the slide is shown, rather than when
you click. The proper behavior would be to show an image of the first frame as
a still, until you click, and then the movie starts playing.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50129] New: Save button doesn't become active after freeze cell in Calc

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50129

 Bug #: 50129
   Summary: Save button doesn't become active after freeze cell in
Calc
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: BASIC
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: vanyasm...@gmail.com


Created attachment 61865
  -- https://bugs.freedesktop.org/attachment.cgi?id=61865
Screenshot

Way to reproduce:

1. Open/create document in Calc.
2. Save it.
3. Set WindowFreeze for any cell.

As a result Save button desn't become active despite document have been
changed.

This bug works for me in English 64-bit Archlinux and Russian 32-bit Windows 7
with LibreOffice 3.5.* (haven't tested it with earlier versions).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49929] recent documents does not update

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49929

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||c...@nouenoff.nl

--- Comment #4 from Cor Nouws c...@nouenoff.nl 2012-05-19 14:08:00 PDT ---
Hi Richard,
known and tackled problem

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 50130] New: EDITING: Problem with bullets and numbering.

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50130

 Bug #: 50130
   Summary: EDITING: Problem with bullets and numbering.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.1 Release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: aedunm...@gmail.com


Problem description: There is no visible way to turn off bullets and numbering
in libreoffice impress.

Steps to reproduce:
1. Create a new slide
2. Try to get rid of bullets
3. Fail, rage, file complaint.

Current behavior:There is no button.

Expected behavior:There would be a button.

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko)
Chrome/19.0.1084.46 Safari/536.5

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49944] FILEOPEN: File Corruption

2012-05-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49944

--- Comment #10 from wasg...@gmail.com 2012-05-19 14:55:47 PDT ---
Thanks a lot for all your input. Hopefully this problem gets fixed soon. If any
more information is needed let me know.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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


  1   2   >