Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Tor Lillqvist
For nitpickers, note that getdomainname does *not* return the DNS domain, but the NIS domain, which strictly speaking may or may not coincide. From my Solaris sysadmin experience (which is limited, and old), I'd say it is a very lucky site and/or organization if they happen to coincide. I

[Libreoffice] [PATCH] Fix bug in build.pl option parser

2011-11-13 Thread Daisuke Nishino
Hi all, I'm not much familiar with perl, but I think the previous implementation of build.pl had bugs. For example, --skip option would always be rejected before 'next' statement, because get_modules_passed() always returns nothing (evaluated as false). As a result --skip would be incorrectly

[Libreoffice] translated sd/source/ui/inc/strings.hrc

2011-11-13 Thread Luc Castermans
Hi, herewith translation patch. Not much, but demonstrate my first way through the flow, aka my first Libo-build Hello World regards, -- Luc Castermans mailto:luc.casterm...@gmail.com From ee82a5e217684996ac5a5eec75e8adf04377e7d5 Mon Sep 17 00:00:00 2001 From: Luc Castermans

Re: [Libreoffice] Misrouted bugs.Freedesktop.org report

2011-11-13 Thread Lionel Elie Mamane
On Sat, Nov 12, 2011 at 09:51:51PM -0800, Dennis E. Hamilton wrote: This report came to dennis.hamilton@ acm.org. I am not connected with that bug in any manner. You are subscribed to libreoffice@lists.freedesktop.org, and I BCCed this report to that ML. I did that because I'm soliciting

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Tor Lillqvist
Seems that the original code was also broken of course, forking and execing /bin/domainname is indeed a bit stupid, and the domainname command is also specified (to the extent it is specified at all) to return the NIS domain name. But honestly, how many of the LibreOffice installations on Unix

Re: [Libreoffice] compile fails: solver/unxlngx6.pro/xml/ure/services.rdb not created

2011-11-13 Thread julien2412
Have you tried to apply the advice put here : http://wiki.documentfoundation.org/Development/How_to_build#The_Build_Failed..._What_can_I_do.C2.A0.3F ? -- View this message in context:

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Noel Grandin
OpenGrok says that: GetDomainName is only used by GetYPDomainName in the same file which in turn is only used by const rtl::OUString SubstitutePathVariables_Impl::GetYPDomainName() in /core/framework/source/services/substitutepathvars.cxx which in turn is only used by bool

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Arnaud Versini
This function is also used in _osl_getFullQualifiedDomainName, I check if the result of this function is correct, I'm checking the result of this function. 2011/11/13 Noel Grandin noelgran...@gmail.com OpenGrok says that: GetDomainName is only used by GetYPDomainName in the same file

Re: [Libreoffice] [Bug 42865] New: MySQL native driver: free() on non-heap pointer; in debug mode abort()

2011-11-13 Thread julien2412
Hello Lionel, It seems exactly the same pb as this thread : http://nabble.documentfoundation.org/gcc-bug-on-Debian-packages-td3485058.html I had use gdb bt, then following some advice, I had used Valgrind but I didn't know how to interpret all these things. The logs are in the thread. I retried

Re: [Libreoffice] translated sd/source/ui/inc/strings.hrc

2011-11-13 Thread Luc Castermans
Op 13-11-11 10:26, Luc Castermans schreef: Hi, herewith translation patch. Not much, but demonstrate my first way through the flow, aka my first Libo-build Hello World This contribution and others to follow are made under GPL and MPL licenses. thx Luc attachment:

Re: [Libreoffice] compile fails: solver/unxlngx6.pro/xml/ure/services.rdb not created

2011-11-13 Thread Luc Castermans
Op 13-11-11 11:33, julien2412 schreef: Have you tried to apply the advice put here : http://wiki.documentfoundation.org/Development/How_to_build#The_Build_Failed..._What_can_I_do.C2.A0.3F ? Yes, result is the 2nd output in the pastebin URL. http://pastebin.com/4cUAnyXF when I execute the

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 12:06:52PM +0200, Tor Lillqvist wrote: The portable and strictly correct way seems to be to do a DNS query on the result of gethostname() (gethostbyname or getaddrinfo with AI_CANONNAME). But in general we should avoid potentially pointless DNS calls. Let's not risk

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 12:46:06PM +0200, Noel Grandin wrote: GetDomainName is only used by GetYPDomainName in the same file which in turn is only used by const rtl::OUString SubstitutePathVariables_Impl::GetYPDomainName() in /core/framework/source/services/substitutepathvars.cxx

Re: [Libreoffice] compile fails: solver/unxlngx6.pro/xml/ure/services.rdb not created

2011-11-13 Thread Julien Nabet
Le 13/11/2011 13:28, Luc Castermans a écrit : Op 13-11-11 11:33, julien2412 schreef: Have you tried to apply the advice put here : http://wiki.documentfoundation.org/Development/How_to_build#The_Build_Failed..._What_can_I_do.C2.A0.3F ? Yes, result is the 2nd output in the pastebin URL.

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Arnaud Versini
there is this portion of code in _osl_getFullQualifiedDomainName : if (nLengthOfDomainName == 0) { sal_Char pDomainNameBuffer[ DOMAINNAME_LENGTH ]; pDomainNameBuffer[0] = '\0'; if (_osl_getDomainName (pDomainNameBuffer, DOMAINNAME_LENGTH)) {

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Noel Grandin
Arnaud is correct, I was looking at the wrong method. But where do you see this method being used in file locking? Lionel, I've run across a lot of machines with badly configured DNS. socket.c: _osl_getDomainName is only used by socket.c: static sal_Char* _osl_getFullQualifiedDomainName

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Arnaud Versini
I've seen it is used by using gdb on _osl_getFullQualifiedDomainName. I don't remember how but I could provide you the bt after the build. It's not directly but _osl_getFullQualifiedDomainName is used during file locking. I'm writting a patch to remove the usage of _osl_getDomainName. 2011/11/13

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Arnaud Versini
And this is the backtrace. 2011/11/13 Arnaud Versini arnaud.vers...@gmail.com I've seen it is used by using gdb on _osl_getFullQualifiedDomainName. I don't remember how but I could provide you the bt after the build. It's not directly but _osl_getFullQualifiedDomainName is used during file

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 02:30:40PM +0100, Arnaud Versini wrote: there is this portion of code in _osl_getFullQualifiedDomainName : if (nLengthOfDomainName == 0) { sal_Char pDomainNameBuffer[ DOMAINNAME_LENGTH ]; pDomainNameBuffer[0] = '\0'; if

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 03:04:57PM +0100, Arnaud Versini wrote: I've seen it is used by using gdb on _osl_getFullQualifiedDomainName. I don't remember how but I could provide you the bt after the build. It's not directly but _osl_getFullQualifiedDomainName is used during file locking. That's

[Libreoffice] [PUSHED] [PATCH] Remove _osl_getDomainName and simplify _osl_getFullQualifiedDomainName

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 04:38:06PM +0100, Arnaud Versini wrote: This patch remove the function _osl_getDomainName and replace it by a _osl_gethostbyname_r. Yes, that's better. Committed. -- Lionel ___ LibreOffice mailing list

Re: [Libreoffice] Misrouted bugs.Freedesktop.org report

2011-11-13 Thread Dennis E. Hamilton
When you BCC: an entire list of developers and others via resend, without any explanation at all, how are recipients to know what your purpose is and determine whether it is relevant for them? In my in-box the mails shows as being from bugzilla-demon@ freedesktop.org and I had no reason to

[Libreoffice] build breaks in tail-build with missing file offapi/com/sun/star/u.

2011-11-13 Thread Regina Henschel
Hi all, my build breaks in tail-build with error message: C:/git/LO35NOV/solenv/gbuild/Package.mk:33: *** gb_Deliver_deliver: file does not exist in solver, and cannot be delivered: /cygdrive/c/git/LO35NOV/solver/wntmsci12.pro/inc/offapi/com/sun/star/u. Stop. I have run 'make build' a

[Libreoffice] Report of translation Bugs

2011-11-13 Thread Rainer Bielefeld
Hi, is it already useful to report UI and Help Translation issues found in Master 3.5 for some languages (especially German and French) or should we still wait? Kind regards Rainer Bielefeld ___ LibreOffice mailing list

[Libreoffice] [PATCH] Docuview code cleanup

2011-11-13 Thread Matteo Casalin
Hi everybody, my name's Matteo and this is my first contribution [attempt] to this wonderful piece of work, besides spreading the word. The attached patch does a little code cleanup in Docuview::DrawSymbol function and its helper, reducing local variables and calls to real draw functions.

Re: [Libreoffice] [Libreoffice-qa] Improving the QA and Release for 3.5

2011-11-13 Thread Cor Nouws
Hi Rainer, Rainer Bielefeld wrote (11-11-11 20:06) I'm afraid Try to get more testers doing the testing earlier will be the critical/limiting condition. [...] You are perfectly right there! (This information was contained in the slides that I did not include in the version linked from that

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 02:41:02AM +0100, Lionel Elie Mamane wrote: I have in my local working dir an upgrade of the bundled mysqlcppconn to latest officially stable version; it was my first shot at fdo#42865. Since I've done the work, I can as well push it; mysqlcppconn's changelog (bugs

Re: [Libreoffice] compile fails: solver/unxlngx6.pro/xml/ure/services.rdb not created

2011-11-13 Thread Chr. Rossmanith
So it's save to remove .component files because they are regenerated during building LibO? And the same is valid for .rdb's? Christina Am 13.11.2011 14:16, schrieb Julien Nabet: Le 13/11/2011 13:28, Luc Castermans a écrit : Op 13-11-11 11:33, julien2412 schreef: Have you tried to apply the

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Norbert Thiebaud
On Sun, Nov 13, 2011 at 2:57 PM, Lionel Elie Mamane lio...@mamane.lu wrote: On Sun, Nov 13, 2011 at 02:41:02AM +0100, Lionel Elie Mamane wrote: I have in my local working dir an upgrade of the bundled mysqlcppconn to latest officially stable version; it was my first shot at fdo#42865. The way

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 03:18:38PM -0600, Norbert Thiebaud wrote: On Sun, Nov 13, 2011 at 2:57 PM, Lionel Elie Mamane lio...@mamane.lu wrote: On Sun, Nov 13, 2011 at 02:41:02AM +0100, Lionel Elie Mamane wrote: I have in my local working dir an upgrade of the bundled mysqlcppconn to latest

[Libreoffice] presentation Easy Hacking - last weekend at T-Dose

2011-11-13 Thread Cor Nouws
Hi *, As a final action for the past week, I just posted the presentation on easy hacking LibreOffice that I gave at T-Dose, the Saturday before. See: https://wiki.documentfoundation.org/Marketing/Material#Presentation Please reuse and extend :-) -- - Cor - http://nl.libreoffice.org

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Norbert Thiebaud
On Sun, Nov 13, 2011 at 3:39 PM, Lionel Elie Mamane lio...@mamane.lu wrote: http://dev.mysql.com/downloads/mirror.php?id=393795#mirrors Please rename it to 0981bda6548a8c8233ffce2b6e4b2a23-mysql-connector-cpp.tar.gz Done Norbert ___ LibreOffice

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Norbert Thiebaud
On Sun, Nov 13, 2011 at 4:18 PM, Norbert Thiebaud nthieb...@gmail.com wrote: On Sun, Nov 13, 2011 at 3:39 PM, Lionel Elie Mamane lio...@mamane.lu wrote: http://dev.mysql.com/downloads/mirror.php?id=393795#mirrors Please rename it to

[Libreoffice] [PUSHED] translated sd/source/ui/inc/strings.hrc

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 10:26:20AM +0100, Luc Castermans wrote: herewith translation patch. Thanks. Applied. I saw German comments in vcl/source/window/window.cxx today, if you feel like it ;) -- Lionel ___ LibreOffice mailing list

Re: [Libreoffice] write access to http://dev-www.libreoffice.org/

2011-11-13 Thread Lionel Elie Mamane
On Sun, Nov 13, 2011 at 04:19:25PM -0600, Norbert Thiebaud wrote: On Sun, Nov 13, 2011 at 4:18 PM, Norbert Thiebaud nthieb...@gmail.com wrote: On Sun, Nov 13, 2011 at 3:39 PM, Lionel Elie Mamane lio...@mamane.lu wrote: http://dev.mysql.com/downloads/mirror.php?id=393795#mirrors Please rename

[Libreoffice] TextSection, TextCursor and component

2011-11-13 Thread Knut Olav Bøhmer
Hi, Is it allowed to insert a TextSection in to a document which was created from another document? Like this: doc1 = StarDesktop.loadComponentFromURL(private:factory/swriter, _blank, 0, Array()) doc2 = StarDesktop.loadComponentFromURL(private:factory/swriter, _blank, 0, Array())

[Libreoffice] License statement: Olivier Hallot

2011-11-13 Thread Olivier Hallot
License statement: All past and future contributions by me to the LibreOffice project are under LGPLv3+/GPLv3+/MPL until further notice. -- Olivier Hallot Founder, Board of Directors Member - The Document Foundation LibreOffice translation leader for Brazilian Portuguese +55-21-8822-8812

[Libreoffice] [PATCH] implements bug fdo#42892: Add new symbols to Math

2011-11-13 Thread Olivier Hallot
Hi The patch in the link implements new math symbols (game theory) into LibreOffice Math, described in http://bugs.freedesktop.org/show_bug.cgi?id=42892. Please pick the patch (quite large) in the bug link as well as the second patch for a minor fix; Many thanks to Julien Nabet for the

Re: [Libreoffice] build breaks in tail-build with missing file offapi/com/sun/star/u.

2011-11-13 Thread Regina Henschel
Hi all, the problem is solved. With help from IRC I found that the file defltuno.d was broken, perhaps because of writing conflicts by multiple jobs. A clean build using --with-max-jobs=1 then runs through without errors. Kind regards Regina Regina Henschel schrieb: Hi all, my build

Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-13 Thread Francois Tigeot
On Sun, Nov 13, 2011 at 02:16:51PM +0100, Lionel Elie Mamane wrote: AFAIK, a well-configured machine has /etc/hosts setup so that gethostbyname(gothostname()) does not touch DNS, but is resolved entirely from reading /etc/hosts. Doesn't the installer *by* *default* set things up like that?

Re: [Libreoffice] Howto develop an extension with URE?

2011-11-13 Thread Stephan Bergmann
On 11/12/2011 12:43 PM, Michael Meeks wrote: It seems a nonsense to me to not ship the pre-built C++ headers in the sdk - particularly if that would make things easier for developers. Stephan - is there a really good reason for not doing that ? clearly the easier we make the sdk

[Libreoffice-commits] .: framework/source

2011-11-13 Thread Lionel Elie Mamane
framework/source/loadenv/loadenv.cxx | 23 +++ 1 file changed, 15 insertions(+), 8 deletions(-) New commits: commit 88285f84bdf54147ee5238e97d0d805fa1c127c1 Author: Lionel Elie Mamane lio...@mamane.lu Date: Sun Nov 13 15:26:41 2011 +0100 fdo#35091 do not honour

[Libreoffice-commits] .: sal/osl

2011-11-13 Thread Lionel Elie Mamane
sal/osl/unx/socket.c | 140 --- 1 file changed, 11 insertions(+), 129 deletions(-) New commits: commit 0ddf2b8adf119b6abeb44e507c577fbdb259be85 Author: Arnaud Versini arnaud.vers...@gmail.com Date: Sun Nov 13 16:01:31 2011 +0100 Remove

Re: [Libreoffice-qa] Test case naming

2011-11-13 Thread Yifan Jiang
Hi Rimas, Petr and all, Thanks for the nice discussions, my ideas as follows :) On Sat, Nov 12, 2011 at 10:46:48PM +0200, Rimas Kudelis wrote: This is thus irrelevant, cause there's nothing to modify. :) 2. I am not sure what is the meaning of the numbers 001, 002, 003. It looks like

[Libreoffice-bugs] [Bug 35091] EDITING / regression: table or view opens in the background (loses focus)

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35091 --- Comment #7 from Heinz Repp heinz.r...@arcor.de 2011-11-13 00:56:22 UTC --- Lionel: thanks for picking up this bug. I read bug 42612, and it seems to me it is indeed a duplicate of this one. With preview disabled my tables open in the

[Libreoffice-bugs] [Bug 42871] New: Command line conversion of html to pdf using convert to produces pdfs that don't look like html

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42871 Bug #: 42871 Summary: Command line conversion of html to pdf using convert to produces pdfs that don't look like html Classification: Unclassified Product: LibreOffice Version:

[Libreoffice-bugs] [Bug 40980] Tamil text will CRASH

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40980 Tor Lillqvist tlillqv...@suse.com changed: What|Removed |Added AssignedTo|tlillqv...@suse.com

[Libreoffice-bugs] [Bug 42612] EDITING: double-click on a table entry when table preview mode switched on opens table data window behind main application window OR data window closes spontaneously

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42612 --- Comment #25 from Alex Thurgood alex.thurg...@gmail.com 2011-11-13 01:26:20 PST --- (In reply to comment #24) I cannot reproduce the table data window closes behaviour with freshly compiled libreoffice-3-4 and native mysql driver. I only

[Libreoffice-bugs] [Bug 42612] EDITING: double-click on a table entry when table preview mode switched on opens table data window behind main application window OR data window closes spontaneously

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42612 --- Comment #26 from Alex Thurgood alex.thurg...@gmail.com 2011-11-13 01:28:09 UTC --- (In reply to comment #22) I disabled the delay and confirmed it fixes (on master) the table data view opened behind main application window symptom. Could

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added CC|

[Libreoffice-bugs] [Bug 42039] Cropped images imported incorrectly from a DOC file

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42039 tester8 iamtest...@gmail.com changed: What|Removed |Added CC||iamtest...@gmail.com ---

[Libreoffice-bugs] [Bug 42079] Nonprinting Character Button (Ctrl+f10) not working

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42079 --- Comment #3 from tester8 iamtest...@gmail.com 2011-11-13 01:50:27 PST --- NOT reproduced with LO 3.4.4 Ubuntu 10.04.3 x86 Linux 2.6.32-35-generic Russian UI Can you try with 3.4.4? -- Configure bugmail:

[Libreoffice-bugs] [Bug 42134] FORMATTING: Autofit doesn't work properly on long texts

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42134 --- Comment #2 from tester8 iamtest...@gmail.com 2011-11-13 01:55:37 PST --- NOT reproduced with LO 3.4.4 Ubuntu 10.04.3 x86 Linux 2.6.32-35-generic Russian UI New versions of Ubuntu specific? Oh, non LTS versions of Ubuntu is so non LTS... --

[Libreoffice-bugs] [Bug 41863] Ellipse drawing shape position and size not saved

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41863 --- Comment #3 from steveb steveb9...@gmail.com 2011-11-13 02:05:56 PST --- The problem is still present. System 1: LibreOffice 3.4.4 OOO340m1 (Build:402) kubuntu 11.10 Linux 3.0.0-12-generic SMP x86_64 System 2: LibreOffice 3.4.4

[Libreoffice-bugs] [Bug 42863] EDITING: I don't know where to start, really...

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42863 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status|UNCONFIRMED

[Libreoffice-bugs] [Bug 42862] FILESAVE: Gradients not properly exported to PNG/GIF/JPG

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42862 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added CC|

[Libreoffice-bugs] [Bug 42872] New: helptips are unreadable

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42872 Bug #: 42872 Summary: helptips are unreadable Classification: Unclassified Product: LibreOffice Version: LibO 3.4 Daily Platform: Other OS/Version: Linux (All)

[Libreoffice-bugs] [Bug 42553] VIEWING: wrong gradient geometry in Presentation mode

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42553 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Attachment #53110|0 |1

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 manj_k courrier.oou.fr@googlemail.com changed: What|Removed |Added Version|LibO 3.4.4 RC1 |LibO 3.3.4

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #4 from Yury yury.tarasiev...@gmail.com 2011-11-13 03:40:26 PST --- Yes, it's a permanent problem and yes, just like manj_k points out, it happens all of a sudden. You just notice once that some toolbars are unmovable. Just my guess

[Libreoffice-bugs] [Bug 42802] EDITING: Can not select text with mouse over picture with wrap in background properties

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42802 igordimov...@yahoo.com changed: What|Removed |Added OS/Version|All |Windows (All)

[Libreoffice-bugs] [Bug 40831] Writer will crash when searching text with using regular expressions.

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40831 --- Comment #8 from Jonas Heinrich o...@project-insanity.org 2011-11-13 04:40:44 PST --- I tried to replace a paragraph with spaces using regual expression and LibreOffice crashed! Really serious bug because I was unable to recover my document

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 2011-11-13 04:48:02 PST --- Now, looking a little more concentrated, I also see the problem with 3.4.4 for the Lorem Ipsum toolbar. All manj_k's observations reproducible. Can

[Libreoffice-bugs] [Bug 42612] EDITING: double-click on a table entry when table preview mode switched on opens table data window behind main application window OR data window closes spontaneously

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42612 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Status|NEW |RESOLVED

[Libreoffice-bugs] [Bug 35091] EDITING / regression: table or view opens in the background (loses focus)

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35091 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added CC||hein...@gmx.de ---

[Libreoffice-bugs] [Bug 42612] EDITING: double-click on a table entry when table preview mode switched on opens table data window behind main application window

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42612 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Summary|EDITING: double-click on a |EDITING:

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #6 from manj_k courrier.oou.fr@googlemail.com 2011-11-13 05:22:47 PST --- My experience: Yes, I'm quite sure, only toolbars of user-installed extensions. Default toolbars, adjusted toolbars (Tools Customize Toolbars ...) and

[Libreoffice-bugs] [Bug 35091] EDITING: table or view double-click open with preview mode on: opens in the background (loses focus)

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35091 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Summary|EDITING / regression: table |EDITING: table or

[Libreoffice-bugs] [Bug 35091] EDITING: table or view double-click open with preview mode on: opens in the background (loses focus)

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35091 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Platform|x86 (IA32) |All

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #9 from manj_k courrier.oou.fr@googlemail.com 2011-11-13 06:10:00 UTC --- Created attachment 53475 -- https://bugs.freedesktop.org/attachment.cgi?id=53475 LibO 3.4.4 · Toolbars: initial state Initial state: the most part of

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #10 from manj_k courrier.oou.fr@googlemail.com 2011-11-13 06:15:32 PST --- Created attachment 53476 -- https://bugs.freedesktop.org/attachment.cgi?id=53476 LibO 3.4.4 · Toolbars: switched over to 'Page preview' All toolbars of

[Libreoffice-bugs] [Bug 35830] International build not international enough!

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35830 --- Comment #2 from kyri...@alumni.princeton.edu 2011-11-13 07:39:35 PST --- I believe that all I've written boils down to the following: Please make the LibO installer ask the user which of the supported UIs they want to use. The installer

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #11 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 2011-11-13 07:53:07 PST --- You nailed it. My Lorem Ipsum toolbar showed the prolbem after a page preview. My Multipages toolbar in Calc does not show the problem. Has it

[Libreoffice-bugs] [Bug 42877] New: absolute adressing in formulas kills highlighting

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42877 Bug #: 42877 Summary: absolute adressing in formulas kills highlighting Classification: Unclassified Product: LibreOffice Version: LibO 3.4.3 release Platform: All OS/Version:

[Libreoffice-bugs] [Bug 40585] Format-Cells crashes Calc

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40585 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status|NEW

[Libreoffice-bugs] [Bug 40579] FILEOPEN Crash opening docx file

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40579 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status Whiteboard|CONFIRMING

[Libreoffice-bugs] [Bug 39586] [FILEOPEN] Writer crashes when try to open .docx file

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39586 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status Whiteboard|

[Libreoffice-bugs] [Bug 42405] toolbars may become irrevocably locked in place

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42405 --- Comment #12 from Yury yury.tarasiev...@gmail.com 2011-11-13 09:19:36 PST --- No, at least, not after `Page Preview'. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[Libreoffice-bugs] [Bug 42879] New: FILEOPEN: Outline Lists numbering not shown

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42879 Bug #: 42879 Summary: FILEOPEN: Outline Lists numbering not shown Classification: Unclassified Product: LibreOffice Version: unspecified Platform: All OS/Version: All

[Libreoffice-bugs] [Bug 42863] EDITING: I don't know where to start, really...

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42863 --- Comment #2 from exVista en...@tiscali.co.uk 2011-11-13 09:53:37 PST --- I note from a separate problem discussion from earlier this year that a LibO person commented that there are no LibO Base personnel currently working. Is this true? If

[Libreoffice-bugs] [Bug 42881] New: Capitalize every word does not work

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42881 Bug #: 42881 Summary: Capitalize every word does not work Classification: Unclassified Product: LibreOffice Version: LibO 3.4.4 release Platform: x86 (IA32) OS/Version: Linux

[Libreoffice-bugs] [Bug 42772] Launch of Libreoffice 3.4.4 impossible after update from version 3.4.1

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42772 --- Comment #2 from mrkah...@gmail.com 2011-11-13 10:17:48 PST --- Same problem here on Win7 64-bit after upgrading from 3.4.3. Uninstall/reinstall didn't work. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Libreoffice-bugs] [Bug 42818] EDITING: Bad SUM

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42818 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added OS/Version|All |Mac OS

[Libreoffice-bugs] [Bug 41845] Deleting validated rows does not delete validation circles.

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41845 --- Comment #3 from tester8 iamtest...@gmail.com 2011-11-13 11:48:20 PST --- Reproduced with LO 3.4.4 Ubuntu 10.04.3 x86 Linux 2.6.32-35-generic Russian UI -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Libreoffice-bugs] [Bug 41812] calc crash moving grouped cells

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41812 tester8 iamtest...@gmail.com changed: What|Removed |Added CC||iamtest...@gmail.com ---

[Libreoffice-bugs] [Bug 42884] New: allow macros dialog raised to top *several* times

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42884 Bug #: 42884 Summary: allow macros dialog raised to top *several* times Classification: Unclassified Product: LibreOffice Version: LibO Master Platform: All OS/Version: Linux

[Libreoffice-bugs] [Bug 36946] Slide transitions in Impress should be sorted in meaningful categories (Usability improvement)

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36946 --- Comment #3 from Rob Snelders programm...@ertai.nl 2011-11-13 12:45:39 PST --- sd/source/ui/animations/SlideTransitionPane.hrc is the file where the transitions are displayed. -- Configure bugmail:

[Libreoffice-bugs] [Bug 42712] SQL concat with || error in listbox

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42712 Julien Nabet serval2...@yahoo.fr changed: What|Removed |Added CC||serval2...@yahoo.fr

[Libreoffice-bugs] [Bug 42553] VIEWING: wrong gradient geometry in Presentation mode

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42553 --- Comment #4 from Raphaël raph...@hotmail.com 2011-11-13 14:56:28 PST --- @Rainer Bielfeld: I don't understand why you truncated my test file. Moreover, why did you change my title? With my old title 'problems with transparency gradient in

[Libreoffice-bugs] [Bug 42818] EDITING: Bad SUM

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42818 --- Comment #2 from webmeis...@axteleats.com 2011-11-13 15:24:40 PST --- (In reply to comment #1) NOT reproducible] with LibreOffice 3.4.4 - WIN7 Home Premium (64bit) German UI [OOO340m1 (Build:402)] @webmeis...@axteleats.com: Please: -

[Libreoffice-bugs] [Bug 42818] EDITING: Bad SUM

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42818 --- Comment #3 from webmeis...@axteleats.com 2011-11-13 15:26:13 PST --- Created attachment 53489 -- https://bugs.freedesktop.org/attachment.cgi?id=53489 SUM function not working for me here. -- Configure bugmail:

[Libreoffice-bugs] [Bug 42818] EDITING: Bad SUM

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42818 webmeis...@axteleats.com changed: What|Removed |Added Attachment #53489|SUM function not working|ODS file: SUM function not

[Libreoffice-bugs] [Bug 42818] EDITING: Bad SUM

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42818 webmeis...@axteleats.com changed: What|Removed |Added Platform|Other |PowerPC

[Libreoffice-bugs] [Bug 42639] EDITING: Writer crashes on copy and pasting

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42639 NoOp gl...@sbcglobal.net changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0

[Libreoffice-bugs] [Bug 42882] SVG Re-size Image Error

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42882 --- Comment #1 from rk...@yahoo.com 2011-11-13 16:00:51 PST --- Please note that this bug might be related to Bug 41995. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[Libreoffice-bugs] [Bug 42092] SVG in PDF export becomes BITMAP

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42092 --- Comment #8 from rk...@yahoo.com 2011-11-13 16:01:33 PST --- Please note that this bug might be related to Bug 41995. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[Libreoffice-bugs] [Bug 42892] New: Add new symbols to LibreOffice Math

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42892 Bug #: 42892 Summary: Add new symbols to LibreOffice Math Classification: Unclassified Product: LibreOffice Version: LibO Master Platform: Other OS/Version: All

[Libreoffice-bugs] [Bug 42892] Add new symbols to LibreOffice Math

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42892 --- Comment #1 from Olivier Hallot olivier.hal...@documentfoundation.org 2011-11-13 18:40:44 PST --- Created attachment 53493 -- https://bugs.freedesktop.org/attachment.cgi?id=53493 Patch to add game theory symbols in Math (zipped) see

[Libreoffice-bugs] [Bug 42892] Add new symbols to LibreOffice Math

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42892 --- Comment #2 from Olivier Hallot olivier.hal...@documentfoundation.org 2011-11-13 18:41:46 PST --- Created attachment 53494 -- https://bugs.freedesktop.org/attachment.cgi?id=53494 minor fix to patch. Apply after the previous one. --

[Libreoffice-bugs] [Bug 42893] New: [EDITING] [ProposedEasyHack] Improve Autocorrect: Capitalize first letter of sentence

2011-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42893 Bug #: 42893 Summary: [EDITING] [ProposedEasyHack] Improve Autocorrect: Capitalize first letter of sentence Classification: Unclassified Product: LibreOffice Version: LibO

  1   2   >