License Declaration

2012-06-25 Thread Travis Carter
All of my submission are released under the MPL/LGPLv3+
license combo unless otherwise noted.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PATCH] fdo#38828: Save position of tab dialogs

2012-06-25 Thread Travis Carter
 Looks good. So...

 First up, can you add yourself to
 http://wiki.documentfoundation.org/Development/Developers and link to a
 mail that states that your submission is under our preferred MPL/LGPLv3+
 license combo. Most seem to go for a simple all my patches unless I say
 otherwise

 Second up, I wonder if we should do the save position thing *both* in
 the dtor and in the ::Ok handler that's called from apply. I mean, at
 the moment we seem to store which is the open tab and the position/size
 of the dialog on cancel/close too, do we want to continue doing that ?

 C.


I've sent a message to the mailing list. I'll add myself to the
developers list once the archives refresh.

Keeping it in the dtor and adding it to ::Ok sounds alright to me.
There aren't any convincing reasons I can come up for either way so
keeping the functionality the same is probably a safe bet. Really, it
seems like the in the long run it'd be better if these dialogs could
accept a functor or something so that they could update the document
on Apply without having to close the dialog first and then re-show it.
That way we wouldn't need to save any position info until the dtor was
called and the user wouldn't see the dialog flash when using Apply
(which also makes a bug I just noticed apparent where the dialog is
drawn down and to the right of its saved position at an offset that
seems equal to the size of its window decorations). Just some
thoughts. Should I roll a new patch with the code in the dtor?

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


Re: Can #32260 and 51135 be closed? -- both: Request for account

2012-06-25 Thread Muhammad Haggag

On 06/25/2012 05:56 PM, Philipp Riemer wrote:

(2) Also Muhammad Haggag's request
https://bugs.freedesktop.org/show_bug.cgi?id=51135 from 2012-06-15
is in UNCONFIRMED state. But here the situation seems to be different
since I can only find three mails in total from him in Feb 2012 on the
mailing list (see
https://www.google.com/search?q=Muhammad%20Haggagsitesearch=%25%28archive_url%29s%2F#hl=entbs=cdr:1%2Ccd_min%3A1%2F1%2F2010%2Ccd_max%3A6%2F25%2F2012sclient=psy-abq=Muhammad+Haggag+site%3Ahttp%3A%2F%2Flists.freedesktop.org%2Farchives%2Flibreoffice%2Foq=Muhammad+Haggag+site:http%3A%2F%2Flists.freedesktop.org%2Farchives%2Flibreoffice%2Faq=faqi=aql=gs_l=serp.12...9421.9795.0.13069.3.3.0.0.0.0.63.177.3.3.0...0.0.uYm14PDWpJgpbx=1bav=on.2,or.r_gc.r_pw.r_qf.,cf.osbfp=3892739cde4f876ebiw=1440bih=812).

Since Muhammad seems to be not interested anymore - can this request
be changed into a closed state as well?

I'm actually interested :)
Michael told me to file the bug and ping him, which I did. He hasn't 
responded yet, so I didn't want to pester him about it yet in case he's 
busy (especially with the move to gerrit, I assumed this might not be 
needed anymore).


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


[Libreoffice-commits] .: sc/inc sc/source

2012-06-25 Thread Eike Rathke
 sc/inc/compiler.hxx  |7 +++
 sc/source/core/tool/compiler.cxx |8 
 sc/source/core/tool/token.cxx|   19 +++
 3 files changed, 34 insertions(+)

New commits:
commit 1135bfd78802e5c40ca09bcbc75d0908a423872a
Author: Eike Rathke er...@redhat.com
Date:   Tue Jun 26 02:05:09 2012 +0200

fdo#46338 preserve sheet name input of invalid reference

If sheet name doesn't exist the resulting reference had replaced the
sheet name with #REF!, e.g. #REF!.A1, because the actual sheet name is
not part of the reference. From a syntactically valid but otherwise
invalid non-external reference create an ocBad token instead to preserve
the sheet name.

Currently a #NAME? error instead of #REF! is generated, further work
would be needed to pass specific error values with ocBad.

Change-Id: I5a608a74d3b3ff2baa4967f2b2e3078cfecfbabc

diff --git a/sc/inc/compiler.hxx b/sc/inc/compiler.hxx
index 58a3c6c..470d8eb 100644
--- a/sc/inc/compiler.hxx
+++ b/sc/inc/compiler.hxx
@@ -196,6 +196,13 @@ public:
 void SetMatrix( ScMatrix* p );
 void SetExternal(const sal_Unicode* pStr);
 
+/** If the token is a non-external reference, determine if the reference is
+valid. If the token is an external reference, return true. Else return
+false. Used only in ScCompiler::NextNewToken() to preserve non-existing
+sheet names in otherwise valid references.
+ */
+bool IsValidReference() const;
+
 ScRawToken* Clone() const;  // real copy!
 formula::FormulaToken* CreateToken() const;   // create typified token
 void Load( SvStream, sal_uInt16 nVer );
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 97ae770..dc30ff8 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -3657,6 +3657,14 @@ bool ScCompiler::NextNewToken( bool bInArray )
 {
 if (mbRewind)   // Range operator, but no direct reference.
 continue;   // do; up to range operator.
+// If a syntactically correct reference was recognized but invalid
+// e.g. because of non-existing sheet name = entire reference
+// ocBad to preserve input instead of #REF!.A1
+if (!pRawToken-IsValidReference())
+{
+aUpper = aOrg;  // ensure for ocBad
+break;  // do; create ocBad token or set error.
+}
 return true;
 }
 
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 800d952..99b0713 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -292,6 +292,25 @@ void ScRawToken::SetExternal( const sal_Unicode* pStr )
 nRefCnt = 0;
 }
 
+
+bool ScRawToken::IsValidReference() const
+{
+switch (eType)
+{
+case svSingleRef:
+return aRef.Ref1.Valid();
+case svDoubleRef:
+return aRef.Valid();
+case svExternalSingleRef:
+case svExternalDoubleRef:
+return true;
+default:
+;   // nothing
+}
+return false;
+}
+
+
 sal_uInt16 lcl_ScRawTokenOffset()
 {
 // offset of sbyte in ScRawToken
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [GSOC] ODS Row height import

2012-06-25 Thread Markus Mohrhard
Hello Daniel,

2012/6/25 Daniel Bankston daniel.dev.libreoff...@gmail.com:
 Hi, Markus,

 I was right about some things, and I was wrong about some other things.

 XMLTableStylesContext::EndElement() did use ScXMLImport::InsertStyles()
 which used ScTable::SetOptimalHeight() (or something similar) to set the row
 heights.  I used ScDocument::EnableAdjustHeight(false) to prevent
 SetOptimalHeight() from actually doing any work.

 ScXMLImport::endDocument() did use ScMyTables::UpdateRowHeights() which used
 ScTable::SetOptimalHeightOnly() to set the row heights for the visible sheet
 and any sheets with tabs.  I removed the call to this method, and I removed
 the method itself since nothing else was using it.

 Turns out that the row height was already being imported using UNO.
  ScXMLTableRowContext::EndElement() uses
 XMLTableStyleContext::FillPropertySet() which uses
 ScDocument::SetRowHeightOnly() to set the row height to the imported row
 height values.  This remains.

 With these changes, the all unit tests passed and visual inspection of the
 heights appeared correct.  Using my slow debug build on my laptop (Intel
 Core2 Duo T7500 @ 2.20GHz running 32bit GNU/Linux with 3.5GB of ram) and the
 large test file that you gave me, the total load time was consistently
 shorter from 1:48 to 1:37.

I still wonder why we need so long to import this document. Anyway
1:37 is already a great improvement.


 I'll push my commits to my feature branch so you can see the changes.

 Do you think there is something I am missing here?  For example, will there
 ever be a case where row height is not specified, requiring us to calculate
 the row height?


I'm not sure if we need to recalculate the row height in case of
style:use-optimal-row-height
 but that is something we can figure out later. Except for this case I
currently see no reason why we would need to calculate row height but
Kohei or Eike may have an idea.

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


Re: [Libreoffice-qa] minutes of ESC call ...

2012-06-25 Thread Michael Meeks
Hi Cor,

On Sun, 2012-06-24 at 23:23 +0200, Cor Nouws wrote:
 Michael Meeks wrote (21-06-12 17:55)
  * 3.5 bugs tagged with 'regression'
  + 179(+12) bugs open of 631(+17) total
  [...]
 
 Just taking a quick look at issues from the query below, I would suggest 
   to skip mentioning numbers. There is pollution with old issues,
 regressions in new functions, minor-if at all issues ..

Sure - and there is double counting of some issues - as I point out in
the numbers - which gives a misleading spike recently.

Furthermore, an increase in the apparent number of regressions may be
related to an increase in QA activity categorising and triaging bugs :-)
and thus totally un-related to any underlying improvement / degradation
in real quality.

 The query is very useful to track and look at the reports. But the 
 number gives a wrong idea of quality. It only shows there's a lot QA 
 /triage work pending. And that was not really news ;-)
 (Might well be that the same applies for other numbers..)

True; OTOH, this is not a news headline, it is a motivational set of
numbers that are designed to try to encourage people to shrink the
numbers.

Already (IMHO) they have helped to improve our component categorisation
(the writer guys got sick of being blamed for all common / core code
bugs), and (I hope) also encouraged people to work on getting the
numbers down. The hope is that by double counting crashers eg. we
encourage people to focus first on those.

So - the numbers are by no means perfect, but hopefully they serve a
useful purpose and show at least something of our QA activity, and
developer / bug-fixing work.

The overall graphs I produce also show bugs fixed, where you can see
(from the growing separation of the 'open' and 'closed' trends) that we
are fixing more most annoying  regression bugs over time, and
particularly Most Annoying Bugs :-)

At least, that's my thinking :-) do you have some better insights ?

All the best,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

___
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] Is fdo#43460 done and can be closed? Or: status of EasyHacks in Bugzilla is important too

2012-06-25 Thread Michael Meeks

On Fri, 2012-06-22 at 11:12 +0200, Philipp Riemer wrote:
 status NEW https://bugs.freedesktop.org/show_bug.cgi?id=43460. As
 far as I understand the comments, it is completed and can either be
 closed or needs new input:

Nice catch; found closed :-)

Thanks,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

___
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-qa] BugHunt Session ...Re: [libreoffice-projects] Re: minutes of the libreoffice qa call 2012-06-14

2012-06-25 Thread Cor Nouws

What do others think?

Cor Nouws wrote (24-06-12 14:46)


Bjoern Michaelsen wrote (15-06-12 17:50)



AI:- Are there any Bug Hunting Sessions in the pipe? (Cor)


Good question. I'm much later obviously then with the previous sessions.

Would it be OK to do it Friday 6, Saturday 7 July?
Objective: testing on the Beta 3, and triaging of bugs.

I've not so much time to spend, but think I can do at least the
organising part and will try to participate for some hours too.



--
 - Cor
 - http://nl.libreoffice.org


___
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-qa] Cobra - WinLDTP Automation

2012-06-25 Thread bfo
Hi.
 I stumbled upon Cobra – WinLDTP,  Windows version of Linux Desktop Testing
Project open sourced by VMWare
recently. Using this tool, the GUI functionality of an application can be
tested in Windows XP SP3, Windows 7 SP1, Windows 8 development release.
Libre/OpenOffice is mentioned. Did anybody used LDTP in the past to perform
functional, regression testing? More info at
http://ldtp.freedesktop.org/wiki.
Best regards.
P.S.
There are traces of automation at wiki.documentfoundation.org:
- smoketest has to be done before any beta or rc build is announced
- full regression test has to be done before every major release
- basic regression test should be done also before every bug fix release 
What is the status of those? Are they executed before each release? Any
dashboards available?



--
View this message in context: 
http://nabble.documentfoundation.org/Cobra-WinLDTP-Automation-tp3992246.html
Sent from the QA mailing list archive at Nabble.com.
___
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 48007] Formulas in inserted columns don't evaluate

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48007

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #5 from sasha.libreoff...@gmail.com 2012-06-24 23:06:52 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 48009] EDITING: Data points missing in line chart

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48009

--- Comment #5 from sasha.libreoff...@gmail.com 2012-06-24 23:15:42 PDT ---
May be problem in LibreOffice user profile. What if move LibreOffice user
profile to another place and try with fresh profile?

-- 
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 51395] New: Unable to spell-check or hyphenate German, although dictionary and langugage pack installed

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51395

 Bug #: 51395
   Summary: Unable to spell-check or hyphenate German, although
dictionary and langugage pack installed
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ulrich.wi...@rz.uni-regensburg.de


When Updating from LibreOffice 3.5.2 to 3.5.4, I had selected German and
English dictionaries, and I installed the German language pack. However
LibreOffice Writer is unable or unwilling to spell-check or hyphenate any
German text.
In linguistic options I cannot select a German module; only English appears.
I re-checked the installation: The German dictionary is selected.

So I suspect that either the installation is not correct, or the German
dictionary is missing something.

Independent of that, LibreOffice should produce a warning if continuous
spell-checking or automatic hyphenation is activated, but the required
linguistic module is missing. Currently you must only find that out by trying
to activate the language module in the linguistic options.

-- 
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 51396] New: UI: CRASH when modify Random effects to Start effect on click of

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51396

 Bug #: 51396
   Summary: UI: CRASH when modify Random effects  to Start
effect on click of
Classification: Unclassified
   Product: LibreOffice
   Version: 3.3.0 Beta2
  Platform: Other
OS/Version: All
Status: NEW
  Severity: major
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps how to reproduce with Server Installation of  LibreOffice 3.6.0.0.beta2 
German UI/Locale [Build-ID: f010139] on German WIN7 Home Premium (64bit):

Follow instructions in original AOOo bug with sample from original AOOo bug.

Already reproducible with LibO 3.3.3 and OOo 3.2-dev. so inherited from OOo.

OS = ALL and NEW due to AOOo Bug.

-- 
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 51396] UI: CRASH when modify Random effects to Start effect on click of

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51396

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de, r...@novell.com
   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=120049

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-06-24 23:28:29 PDT ---
@Rodo:
Please set Status to ASSIGNED and add yourself to Assigned To if you accept
this Bug

-- 
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 50964] PresenterConsole - missing all images...

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50964

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-06-24 
23:38:18 PDT ---
(In reply to comment #3)
 Fixed - now we get artwork, but still everything is -really- dicey in the
 presenter console; prelight barely works, the whole thing is a horror ...

Indeed, the current slide in the primary screen is empty and several buttons
are missing. Tested with LO 3.6.0.0.beta1+ under Ubuntu 11.10 with gnome-shell.
:-(
Any news regarding this problem ? Is it the same bug or another one ?

Best regards. JBF

-- 
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 51397] New: FORMATTING: format changed

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51397

 Bug #: 51397
   Summary: FORMATTING: format changed
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.5 RC1
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: thainguyenc...@yahoo.co.uk


Problem description: 
My spreadsheet has been formated, saved but when i close and reopen it, the
format is changed. Also i use relative adress in my formulas, but when i close
and reopen it, the relative adresses were changed to absolute adresses. 

Please check

Steps to reproduce:
1. 
2. 
3. 

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.28)
Gecko/20120410 Firefox/3.6.28 Lunascape/6.7.1.25446

-- 
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 51025] EDITING: Wrong Number recognition in WRITER

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51025

pupole...@pupolesno.pl changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |

--- Comment #5 from pupole...@pupolesno.pl 2012-06-24 23:58:44 PDT ---
(In reply to comment #4)
 @pupolesno:
 I still have absolutely not idea what your problem might be. You write down
 some observations, but so what? Is that good or bad what you see? And Why? 
 Without a clear description what you expect and reasoning why you expect so we
 can't find out what your problem is.
 And what is so difficult to write a meaningful summary? Is Wrong is
 completely useless, all reports here are about somehow wrong.
 
 I am still waiting for your sample document.
 
 Please feel free to reopen this Bug if you can contribute requested document
 and information.

As I wrote in the topic.Wrong Number recognition in WRITER
Fault diagnosis is a bad format - conversion of value.
I can not enter values ​V/12​ in the graph .
Always value is turned on: 01/05/2012.
If you saw the attached screens, you know how to cause confusion.
Attach a file will not do anything because it happens every time.
Please read all the threads from the beginning.

p.s.
My English is terrible I know. Sorry.

-- 
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 51026] Pivot table, set filter to all does not work

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51026

--- Comment #3 from Nikos gdna7...@hotmail.com 2012-06-25 00:22:43 PDT ---
Still there on 3.6.0.0beta2

-- 
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 51026] Pivot table, set filter to all does not work

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51026

--- Comment #4 from Nikos gdna7...@hotmail.com 2012-06-25 00:25:44 PDT ---
By the way, it worked for me in 3.5.4, but I have not tested 3.5.5RC1

-- 
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 51389] LOCALHELP: Pictures in start page missing

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51389

--- Comment #2 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-06-25 00:34:13 UTC ---
Not reproducable with 3.5.3 on Ubuntu Precise here. Strange. I wonder what is
different on my setup.

-- 
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 41335] undefined: Numeric dot should turn into a comma only in a numeric context in French

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41335

--- Comment #7 from Mickaël Leduque mledu...@gmail.com 2012-06-25 00:59:03 
PDT ---
In fact that works.
- the numeric keypad key dot produces a dot
- the locale decimal comma separator is a comma (checked in calc by entering an
integer in a cell and forcing the format to 2 digits after the decimal comma)

I'd just argue that the option description is not clear enough : touche de
séparateur de décimales didn't immediately appear to apply to the numeric pad
dot key.

-- 
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 51323] Constant crashes on MacOS X 10.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51323

--- Comment #4 from Roman Eisele b...@eikota.de 2012-06-25 01:10:58 PDT ---
(In reply to comment #3)
 As I asked for most of bugs referring a crash, could you also first try to
 reproduce with a brand new LO profile ? (see
 http://wiki.documentfoundation.org/UserProfile)

Yes, Julien is right -- in enumerating all these possible steps (comment #2) I
completely forgot this one, which is probably the most important idea. Sorry
for that! So, please try this first -- thank you very much! (And thank you,
Julien, 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 50911] FILEOPEN impossible for any existing.ods

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50911

--- Comment #11 from Winfried Donkers o...@dci-electronics.nl 2012-06-25 
01:17:40 PDT ---
problem also/still occurs with 3.6.0.0beta2 on Windows XP. 
(install lodev3.6, start lodev3.6, open ods file : read error. An unknown
error has occurred.)

-- 
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 51323] Constant crashes on MacOS X 10.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51323

--- Comment #5 from tschloes...@maintainet.de 2012-06-25 01:23:05 PDT ---
Hi all,

I did reset the user profile and now LibreOffice seams to rum much better.
I do not had the time now to test everything, but I promise to to so today and
tomorrow.

If I do not post anything here consider the problem solved ;-)

Thanks,

Thorsten

-- 
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 51115] [FILEOPEN] PDF is not opened in draw, but as text file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51115

--- Comment #5 from Winfried Donkers o...@dci-electronics.nl 2012-06-25 
01:26:06 PDT ---
(In reply to comment #4)

reproducible on 3.6.0.0beta2, Windows XP

The installed Lodev3.6 does _not_ have a
/share/extensions/pdfimport/pdfimport.uno.dll, it doesn't have a pdfimport* at
all (apart from directory share/extensions/pdfimport)

There is an 'xpdfimport' binary: share/extensions/pdfimport/xpdfimport.exe

(in windows itself, '\' should be used for '/')

-- 
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 50964] PresenterConsole - missing all images...

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50964

--- Comment #6 from Michael Meeks michael.me...@novell.com 2012-06-25 
01:34:31 PDT ---
prolly the same bug; it should be fixed in b2.

Having said that - there is some rather odd oddness in the presenter console
still that needs a separate bug filing I think.

-- 
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 51323] Constant crashes on MacOS X 10.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51323

--- Comment #6 from Julien Nabet serval2...@yahoo.fr 2012-06-25 01:45:24 PDT 
---
Roman: no problem :-) (I see so often problems linked to profile)

Thorsten: it could be useful you zip your buggy LO profile and attach to this
bugtracker.
Then I'll link to fdo#43489

-- 
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 51252] LO cannot start (reports runtime error with Visual C++ Runtime Library)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51252

--- Comment #4 from narayana...@hotmail.com 2012-06-25 01:54:21 PDT ---
UPDATE for BETA-2:

Beta2 behaves exactly same as beta1: 
* In the PC where Beta1 worked, beta2 also works. 
* In the PC where beta1 did not start, beta2 also does not start.

-- 
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 51323] Constant crashes on MacOS X 10.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51323

--- Comment #7 from tschloes...@maintainet.de 2012-06-25 01:58:06 PDT ---
Created attachment 63425
  -- https://bugs.freedesktop.org/attachment.cgi?id=63425
profile folder

-- 
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 50428] UI: Window switching on MacOS X with Lithuanian UI via shortcut (Cmd+`) makes problems

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50428

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||NOTABUG

--- Comment #7 from Roman Eisele b...@eikota.de 2012-06-25 02:01:19 PDT ---
(In reply to comment #6)
 I use Lithuanian keyboard layout.

@Vincas:
Thank you very much for your answer!

Given this last missing bit of information, I can reproduce the issue exactly:
* MacOS X 10.6.8
* System UI language: (US) English
* (software) keyboard layout: Lithuanian
* LibreOffice UI language Lithuanian.

If I use these settings on my machine (with MacOS X 10.6.8, too), I can confirm
that pressing Command+` (the leftmost key in the bottom line of keys on the
Lithuanian keyboard, directly before (left from) Y/Z X C V ... keys) givs the
results mentioned by Vincas in his original description.

However, this seems not to be a (real) bug, because if I try the same with
other applications, especially in the Finder or in TextEdit (both by Apple
themselves), Command+` does not switch windows at all.

The right way to switch windows on MacOS X using English as default User
Interface language together with an Lithuanian keyboard layout and default
Keyboard Shortcuts settings seems to press Command+Shift+, because on the
Lithuanian keyboard you enter  via pressing Shift+, (and  via Shift+.).
This shortcut, i.e. Command+Shift+, switches windows correctly in all
applications I testes, and also in LibreOffice.

Given the fact that the correct default shortcut for switching windows with
these MacOS X settings also works in LibreOffice I think we can close this bug
report.

And if someone does not like the default keyboard shortcut, which is a bit
difficult to enter with the Lithuanian keyboard (it involves three keys:
Command+Shift+,), one can alway change the window switching hot keys
association, as done by Vincas (comment #4). To do this, open Apple's System
Preferences, select Keyboard, select the tab Keyboard Shortcuts, select in
the left list Keyboard and Text Input, and then change at the right the
shortcut associated to Move focus to next window in application.

-- 
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 50769] EDITING: Lion Compatibility (Mac OS X 10.7[.4])

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50769

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #1 from Roman Eisele b...@eikota.de 2012-06-25 02:21:41 PDT ---
Hello Ulrich Maasmeier,
thank you very much for your bug report!

It's a pity that LibreOffice causes so many crashes for you. However, it runs
without crashes on many other machines, so we need to find out what makes the
difference, i.e. why LibreOffice crashes so often in your installation.

The first two things to check are:

1) Do you have any accesibility features enabled? Apple's accessibility
features like VoiceOver or Enable access for assistive devices, which get
enabled in System Preferences  Universal Access (in German:
Bedienungshilfen), are known to cause many crashes in LibreOffice. So please
try to disable any accesibility features. Compare, e.g., the similar issue bug
47368.

2) Can you please try running LibreOffice with a brand new LO user profile (see
http://wiki.documentfoundation.org/UserProfile)? This seems to heal many
serious problems, cf. the brand new bug 51323.

Thank you very much for trying this out (and please report the results here,
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 51401] New: Buttons in Navigation toolbar cannot be assigned a hotkey (keyboard shortcut)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51401

 Bug #: 51401
   Summary: Buttons in Navigation toolbar cannot be assigned a
hotkey (keyboard shortcut)
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.0.beta2
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: narayana...@hotmail.com


1. Right-click on any toolbar and select Customize toolbar... option.
2. The Customize window pops up. Select the keyboard tab.
3. In the bottom section, select Navigate category.
4. Look for the Forward and Back functions. They are missing.

As a result, you cannot assign a keyboard shortcut (hotkey) to these functions.

This is a major productivity loss: When you CTRL+click on a link (e.g. from TOC
to a heading, or from a hyperlink to a bookmark), you cannot quickly come back
by pressing a hotkey (say, ALT+LeftArrow, as in a pdf reader). 

You have to click on the green arrow button in the Navigate toolbar.


Solution: Provide the Forward and Back functions in the Navigate
category.

-- 
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 51115] [FILEOPEN] PDF is not opened in draw, but as text file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51115

--- Comment #6 from Michael Stahl mst...@redhat.com 2012-06-25 02:52:01 PDT 
---
ah i think i know why that is, let me guess Winfried that you have
some *pdfimport*.lib file somewhere in your installation,
which is because the makefile that builds the extension uses
the wrong gbuild function and bundles the link stub static library
as opposed to the DLL.

-- 
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 51324] crash in xmloff.Impress.XMLContentImporter::com::sun::star::document::XImporter with gcc-4.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51324

--- Comment #13 from David Tardon dtar...@redhat.com 2012-06-25 02:59:06 PDT 
---
Created attachment 63427
  -- https://bugs.freedesktop.org/attachment.cgi?id=63427
possible fix

I cannot reproduce it here, but the attached patch might help

-- 
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 51402] New: CTRL+ALT+arrow up/down does not work

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51402

 Bug #: 51402
   Summary: CTRL+ALT+arrow up/down does not work
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: edmund.laugas...@eesti.ee


When to open Help by F1 and search shortcut keys of Writer, you can see the
table of them.
There is CTRL+ALT+arrow up/down, which should move paragraph to up or down but
it doesn't work in my system.

The question also is - how is possible to move bulleted or numbered paragraph
from list?

-- 
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 47224] : Input of Non-Existing Fonts without Warning possible

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47224

--- Comment #2 from harald-koes...@htp-tel.de 2012-06-25 03:45:14 PDT ---
Hello Sasha,

you are right, the use of different computers with different installed fonts
should be considered. But I think a message once per editing session of a
document could/should be acceptable. The message then could be as follows:

“Font XYZ is not installed on your system. 
Nevertheless do you like to use this font in your document? 
If “YES”, LibreOffice will use font ABC for displaying and printing of font
XYZ. Furthermore during this editing session of this document, font XYZ will be
accepted without displaying this message again.”

Behaviour:
1. NO: The cursor is placed back into the input field of the font.
2. YES: The non-installed font name is displayed (in red, as proposed in 
bug 44376). The cursor is replaced back into the document.

If one tries to assign a character or paragraph style with an uninstalled font,
the message should be slightly different:

“The character (paragraph) style uses the font XYZ. This font is not installed
on your system. 
Nevertheless do...”

If messages outlined above are implemented, it should be also taken into
account to display a message during opening a document, which uses uninstalled
fonts. An example: A user prints a document, which has been created with
another computer and this document uses fonts, that are not installed on
his/her computer. Because of the use of uninstalled fonts, the printing is not
satisfying. Without a message it may take a long time to find the reason. With
a message the user can get an idea where to look.

-- 
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 44376] please show missing font name in red

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44376

--- Comment #3 from harald-koes...@htp-tel.de 2012-06-25 03:47:23 PDT ---
Hi Joel,
I am not sure which font do you want to display, the uninstalled or the font
which replaces the uninstalled font. In my opinion it should be still the
uninstalled font. 
Reason:
For a user it may be to necessary to create and edit documents with uninstalled
fonts. For example the document shall be later displayed or printed with a
computer where these fonts exist. In order to monitor the fonts in such a case,
it is necessary to display (in red, as proposed in this report) the uninstalled
font. See also com. 1 of bug 47224.

-- 
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 37361] LibreOffice 3.5 most annoying bugs

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 44719, which changed state.

Bug 44719 Summary: extremely slow import of pptx ...
https://bugs.freedesktop.org/show_bug.cgi?id=44719

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
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 51115] [FILEOPEN] PDF is not opened in draw, but as text file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51115

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
 CC||dtar...@redhat.com
  Component|Drawing |Extensions

--- Comment #7 from Michael Stahl mst...@redhat.com 2012-06-25 03:53:41 PDT 
---
it seems the missing DLL problem affects not just PDF Import
but also Presentation Minimizer and Presenter Console.

if that is indeed the problem it should be fixed on master now.

please somebody test if all these work on Windows when built with the fix.

-- 
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 47224] : Input of Non-Existing Fonts without Warning possible

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47224

--- Comment #3 from sasha.libreoff...@gmail.com 2012-06-25 04:37:45 PDT ---
Thanks for additional information. It is also important to add option to
disable this message or it will annoying for many users.
And I am not sure that information about fonts available for all OS.

-- 
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 51404] New: : Libreoffice Base with Oracle - SYSDATE, ROWNUM don't work in query!

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51404

 Bug #: 51404
   Summary: : Libreoffice Base with Oracle - SYSDATE, ROWNUM don't
work in query!
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mr...@mckanes.com


Problem description: 

Cannot execute some query (with sysdate, rownum) when used with Oracle
database. 

There is already a bug from 2010 that refer to this problem may be (READ IT):
https://issues.apache.org/ooo/show_bug.cgi?id=108593


Steps to reproduce:


- Add the library ojdbc6.jar

- Run query in Base 

- When i want retrieve the system date: SELECT TO_CHAR(sysdate, '') FROM
DUAL;

Statut SQL: 42000 Code d'erreur: 904 / ORA-00904: sysdate :
identificateur non valide

Or if i use ROWNUM to limit result in query.

Statut SQL: 42000 Code d'erreur: 904 / ORA-00904: ROWNUM : identificateur
non valide

All that query works if direcly executed in sqlplus tool from Oracle.


Current behavior:

I got a error code, see above..

Expected behavior:

To return the result..

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101
Firefox/13.0.1

-- 
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 51404] : Libreoffice Base with Oracle - SYSDATE, ROWNUM don't work in query!

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51404

MichaelB mr...@mckanes.com changed:

   What|Removed |Added

 CC||mr...@mckanes.com
   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=108593

-- 
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 51115] [FILEOPEN] PDF is not opened in draw, but as text file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51115

--- Comment #10 from Winfried Donkers o...@dci-electronics.nl 2012-06-25 
05:04:29 PDT ---
(In reply to comment #6)
Yes, there is a /share/extensions/pdfimport/ipdfimport.lib in the lodev3.6
directory of 3.6.0.0beta2
I haven't the opportunity now to test, perhaps later

-- 
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 51115] [FILEOPEN] PDF is not opened in draw, but as text file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51115

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

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

--- Comment #11 from David Tardon dtar...@redhat.com 2012-06-25 05:19:09 PDT 
---
*** Bug 48243 has been marked as a duplicate of this bug. ***

-- 
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-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Bug 6 depends on bug 48243, which changed state.

Bug 48243 Summary: Some extensions not work after install
https://bugs.freedesktop.org/show_bug.cgi?id=48243

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|ASSIGNED|RESOLVED

-- 
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 51136] Spreadsheet from OOo 3.3 broken in Libreoffice 3.4 on Mac

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51136

--- Comment #9 from Roman Eisele b...@eikota.de 2012-06-25 05:51:47 PDT ---
Created attachment 63443
  -- https://bugs.freedesktop.org/attachment.cgi?id=63443
Screenshot with comments: Find and Replace settings

A little help: the screenshot shows (with comments in red) which settings in
the Find and Replace dialog window of LibreOffice Calc are necessary to
remove the contents of each cell that contains just one or more spaces
(blanks). A single Replace All operation with these settings seems sufficient
to make the sample file work 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 48758] TABLE: Number Format Recognition is performed though Option Number Format Recognition is not Marked

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48758

--- Comment #8 from harald-koes...@htp-tel.de 2012-06-25 05:56:44 PDT ---
(1) Check if my descriptions of options Number Recognition and Number Format
Recognition in comment 4 are correct. If necessary correct descriptions.

(2) Change the help text of both options.

(3) Add the date-time-format “-MM-DDThh:mm:ss” as a predefined number
format to LO.

Other problems mentioned here should be treated in bug 42989 and bug 41044.

-- 
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 51314] Turkish Characters not not displayed or printed properly

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51314

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #3 from Roman Eisele b...@eikota.de 2012-06-25 06:12:54 PDT ---
@ bugzi...@this-is-the.biz:

Thank you very much for your sample file and the nice explanations! This should
it make much easier to track this issue down.

I will look into it in the next days (it could take some time because I
probably need to compare the display of the sample file on different Macs with
different versions of MacOS X; my first impression is that the MacOS X version
and the fonts installed on the machine have some influence on the display of
these special characters). Therefore your additional hint is very useful:

 BTW I am using LOffice 3.5.2.2 on a Macbook with 10.4.11

Thank you 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 51408] New: Account Request (Philipp Riemer)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51408

 Bug #: 51408
   Summary: Account Request (Philipp Riemer)
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: other
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ruderphil...@gmail.com


Created attachment 63447
  -- https://bugs.freedesktop.org/attachment.cgi?id=63447
public SSH key

As proposed by and discussed with Michael Meeks, I request herewith Git push
access for the LO repository.

real name: Philipp Riemer
email: ruderphil...@gmail.com

preferred account name: ruderphilipp

-- 
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 51408] Account Request (Philipp Riemer)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51408

--- Comment #1 from Philipp Riemer ruderphil...@gmail.com 2012-06-25 06:35:48 
PDT ---
Created attachment 63448
  -- https://bugs.freedesktop.org/attachment.cgi?id=63448
my PGP/GPG

added my PGP/GPG key

-- 
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 51408] Account Request (Philipp Riemer)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51408

Philipp Riemer ruderphil...@gmail.com changed:

   What|Removed |Added

  Attachment #63447|0   |1
is obsolete||

--- Comment #2 from Philipp Riemer ruderphil...@gmail.com 2012-06-25 06:42:46 
PDT ---
Created attachment 63449
  -- https://bugs.freedesktop.org/attachment.cgi?id=63449
public SSH key

SSH key was auto-detected octet stream instead of text/plain

-- 
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 50869] MS-Word 2003 doc: missing table data, misplaced objects, 3 pages instead of 2.

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50869

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

Summary|Most elements of the first  |MS-Word 2003 doc: missing
   |page of MS Word 2003 doc|table data, misplaced
   |incorrectly display on next |objects, 3 pages instead of
   |page (2) in LibreOffice |2.

--- Comment #4 from John Smith lbalba...@gmail.com 2012-06-25 06:46:35 PDT ---
Changed bug description to describe issue more accurately.

-- 
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 51408] Account Request (Philipp Riemer)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51408

Philipp Riemer ruderphil...@gmail.com changed:

   What|Removed |Added

  Attachment #63449|0   |1
is obsolete||

--- Comment #3 from Philipp Riemer ruderphil...@gmail.com 2012-06-25 06:51:40 
PDT ---
Created attachment 63450
  -- https://bugs.freedesktop.org/attachment.cgi?id=63450
public SSH key

beginning to hate my abilities to upload a plain text file ;-)

-- 
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 47890] PRINTING: Mail Merge window always resizes to standard size

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47890

--- Comment #2 from Ray D hein2h...@googlemail.com 2012-06-25 07:44:25 PDT ---
Hello Sasha,

I think it would be better to hold it in LibreOffice profile but with the
option that the user is able to change the size. If this is not possible (or
too difficult) I would take the other solution.

Anyway, most important is to integrate the functionality, not so important
where :-)

Thanks for your work.

-- 
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 51324] crash in xmloff.Impress.XMLContentImporter::com::sun::star::document::XImporter with gcc-4.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51324

--- Comment #14 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-06-25 07:51:44 PDT ---
Created attachment 63452
  -- https://bugs.freedesktop.org/attachment.cgi?id=63452
stacktrace after applying patch

patch does not seem to help, see attached stacktrace.

-- 
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 51408] Account Request (Philipp Riemer)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51408

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED

--- Comment #4 from Michael Meeks michael.me...@novell.com 2012-06-25 
07:59:17 PDT ---
Created account 'preimer' - you can use:

./g --set-push-user preimer

to switch your existing checkout without re-checking it out :-)

Thanks for your good work, feel free to commit comment translations from
yourself  others, and small cleanups without review on the list. For bigger
stuff it's good to get a review.

And ... welcome to the core team :-)

-- 
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-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

fabien.mic...@hespul.org changed:

   What|Removed |Added

 Depends on||40907

--- Comment #26 from fabien.mic...@hespul.org 2012-06-25 08:04:56 PDT ---
Bug 40907 : the bug is very annoying for corporate use on mac network

-- 
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 40907] FILEOPEN - concurrent access to AFP shared files impossible - total lock on file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40907

fabien.mic...@hespul.org 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 44446] LibreOffice 3.6 most annoying bugs

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

fabien.mic...@hespul.org changed:

   What|Removed |Added

 Depends on|40907   |

-- 
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 40907] FILEOPEN - concurrent access to AFP shared files impossible - total lock on file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40907

fabien.mic...@hespul.org 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 40907] FILEOPEN - concurrent access to AFP shared files impossible - total lock on file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40907

--- Comment #9 from fabien.mic...@hespul.org 2012-06-25 08:13:24 PDT ---
Thank you to interest you show in the resolution of this bug.
I was able to reproduce with a different configuration:
A server in Leo 10.7.3
10.7.4 a customer lion
1 customer Snow Leopard 10.6.x

-- 
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 40907] FILEOPEN - concurrent access to AFP shared files impossible - total lock on file

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40907

--- Comment #10 from fabien.mic...@hespul.org 2012-06-25 08:15:04 PDT ---
1 server Lion 10.7.3
1 client Lion 10.7.4
1 client snow leopard 10.6.x

-- 
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 51395] Unable to spell-check or hyphenate German, although dictionary and langugage pack installed

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51395

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com

--- Comment #1 from manj_k courrier.oou.fr@googlemail.com 2012-06-25 
08:29:09 PDT ---
Thanks for your bug report.

Already reported (and RESOLVED FIXED) as 'Bug 50552 - SPELL check does not mark
wrong text and capitalization rules'.

The bugfix will be available in v3.5.5.
There's a workaround for v3.5.4:
→ https://bugs.freedesktop.org/show_bug.cgi?id=50552#c8 .

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

-- 
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 51378] Calc crashes immediately after starting it

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51378

--- Comment #3 from thack...@nexgo.de 2012-06-25 09:41:36 PDT ---
(In reply to comment #2)
 Did you install any LO specific extension ?
 Did you try with a brand new LO profile ?
 (http://wiki.documentfoundation.org/UserProfile) Try to backup it before.

Hello Julien,
I only installed the ones, which come with LO. And I used the instruction from
http://wiki.documentfoundation.org/Installing_in_parallel to install in my home
directory. There you find the instruction to change the bootstraprc to use the
installdir as your user dir (see
http://wiki.documentfoundation.org/Installing_in_parallel#Step_4_-_Optional.2C_but_Recommended_when_Testing:_Changing_the_User_Profile_location),
which I have followed to the last dot. Is this not enough? Should I really
rename my ~/.config/libo-dev (or libreoffice or lodev?) and test again?
Sorry for the inconvenience
Thomas.

-- 
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 45019] FILEOPEN Password protected file opens in background (visible on task bar / invisible in Unity)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45019

--- Comment #3 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-06-25 
09:50:52 PDT ---
This sounds more like a Ubuntu problem than a LibO bug.

-- 
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 47850] EDITING: Spell checker appears to be stuck

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47850

Hrvoje hvel...@hotmail.com changed:

   What|Removed |Added

Version|3.5.1 release   |3.5.4 release

--- Comment #4 from Hrvoje hvel...@hotmail.com 2012-06-25 10:27:43 PDT ---
Also problem with spellchecker, it dont want to chech any language, no English
, no Croatian no other, also automatic checker dont want to start!

-- 
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 51415] New: : I have 3.4.3 and need to go to 3.4.5 before 3.5.x .... where do I find the download for 3.4.5?

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51415

 Bug #: 51415
   Summary: : I have 3.4.3 and need to go to 3.4.5 before 3.5.x
 where do I find the download for 3.4.5?
Classification: Unclassified
   Product: LibreOffice
   Version: 3.4.5 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: dennis4...@gmx.us


Problem description: cant find 3.4.5

Steps to reproduce:uninstalled 3.4.3 but can not finish 3.5 install
1. 
2. 
3. 

Current behavior:

Expected behavior:

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 47850] EDITING: Spell checker appears to be stuck

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47850

--- Comment #5 from Hrvoje hvel...@hotmail.com 2012-06-25 10:33:00 PDT ---
Created attachment 63457
  -- https://bugs.freedesktop.org/attachment.cgi?id=63457
spellchecker dont want to start...

Checker not working 
win7/64
Cpu: i3

-- 
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 45019] FILEOPEN Password protected file opens in background (visible on task bar / invisible in Unity)

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45019

--- Comment #4 from Cor Nouws c...@nouenoff.nl 2012-06-25 10:37:03 PDT ---
(In reply to comment #3)
 This sounds more like a Ubuntu problem than a LibO bug.

Might well be, Marcus.
OOo had the same problems years back on Windows. Of course there's a lot of
complicated stuff going on in window-managers...

-- 
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 50769] EDITING: Lion Compatibility (Mac OS X 10.7[.4])

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50769

--- Comment #2 from Ulrich Maasmeier limas...@gmail.com 2012-06-25 10:45:13 
PDT ---
Created attachment 63458
  -- https://bugs.freedesktop.org/attachment.cgi?id=63458
Screenshot showing the setting to disable (German OS X Lion [10.7.4])

-- 
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 50769] EDITING: Lion Compatibility (Mac OS X 10.7[.4])

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50769

Ulrich Maasmeier limas...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||NOTOURBUG

--- Comment #3 from Ulrich Maasmeier limas...@gmail.com 2012-06-25 10:48:02 
UTC ---
The attached screenshot shows the setting for assistive devices activated.

THIS seems to initiate the bug while adding a text color to marked text.

IF set to OFF, the bug disappears in a test series of about 10 aimed
provocations.

-- 
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 51414] Rechtschreibung Sprache

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51414

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-06-25 10:57:06 PDT ---
User error? Language has to be defined in the text, in the spell check dialog
only is shown what language currently is active (and for what others
dictionaries are available).

@reporter:
Thank you for your feedback! Unfortunately you are wrong here, this is the Bug
tracking system, not a helpdesk! You can get assistance on
http://ask.libreoffice.org/questions/
or on the public users mailing list us...@libreoffice.org, a mailing list
from http://www.documentfoundation.org/contribution/#lists like
us...@de.libreoffice.org
or
http://wiki.documentfoundation.org/Local_Mailing_Lists

-- 
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 51378] Calc crashes immediately after starting it

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51378

--- Comment #5 from thack...@nexgo.de 2012-06-25 10:59:05 PDT ---
Hello Julien,
(In reply to comment #4)
 I never tried to use several versions of LIBO profile in parallel.

well, it is the best to cirumvent problems with a test build, which might
change config values, with which your stable version does not work ... ;)

 Anyway, you can try this :
 1) retrieve the LO profile value defined by the variable UserInstallation
 located in  LO rootinstall/program/bootstraprc (I haven't seen opt/
 directory)

If you look in my GDB log, you will find the path
/home/thackert/LO/opt/lodev3.6/program/soffice.bin (I have not used install
but LO to install in parallel ... ;) ).

 2)
 Change the value of LO profile directory in boostraprc.
 
 Example :
 if value is $SYSUSERCONFIG/libreoffice/3 
 try : $SYSUSERCONFIG/libreoffice/3_test

I have used UserInstallation=$ORIGIN/.., which - if I understood it correctly
- uses the install dir for your user profile/user dir, or am I wrong?

 So your install will create a brand new LO profile in
 $SYSUSERCONFIG/libreoffice/3_test

I have looked in my home dir, where I have found ~/LO/opt/lodev3.6/user/. Isn't
it the user dir/profile?

 Then don't install or customize anything for the moment, just try to reproduce
 the problem and tell us if it's better or not.

When I am wrong with my assumptions above, I will try it tomorrow ... ;)
Thanks for your quick answer and have a nice evening
Thomas.

-- 
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 45582] VIEWING: Background Colour of Different Items are Marked Incorrectly with the Background Colour of Fields

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45582

--- Comment #7 from harald-koes...@htp-tel.de 2012-06-25 11:04:24 PDT ---
Created attachment 63459
  -- https://bugs.freedesktop.org/attachment.cgi?id=63459
Screen shot to comment 3, non-printing characters not displayed

-- 
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 45582] VIEWING: Background Colour of Different Items are Marked Incorrectly with the Background Colour of Fields

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45582

--- Comment #8 from harald-koes...@htp-tel.de 2012-06-25 11:05:47 PDT ---
Created attachment 63460
  -- https://bugs.freedesktop.org/attachment.cgi?id=63460
Screen shot to comment 3, non-printing characters displayed

-- 
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 45582] VIEWING: Background Colour of Different Items are Marked Incorrectly with the Background Colour of Fields

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45582

--- Comment #9 from harald-koes...@htp-tel.de 2012-06-25 11:07:19 PDT ---
To initial description and comment 1:

In my Opinion bullets, numbering digits, formatting marks and chapter numbers
are not fields. So the option for field shadings should never used for this
items.

-- 
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 50136] Menu bar remains blue background after selection in WinXP

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50136

--- Comment #6 from Pedro pedl...@gmail.com 2012-06-25 11:16:06 PDT ---
If the Windows Classic style is used (under Display Properties, Appearance tab,
Windows and buttons) then this bug does not occur (under Windows XP x86). This
means that it must be related to the fancy borders.

-- 
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 51417] New: BASIC: Formatting problem when importing an electronic form from MS Word 2007

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51417

 Bug #: 51417
   Summary: BASIC: Formatting problem when importing an electronic
form from MS Word 2007
Classification: Unclassified
   Product: LibreOffice
   Version: 3.4.5 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: BASIC
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: shalbr...@pegasustsi.com


Created attachment 63461
  -- https://bugs.freedesktop.org/attachment.cgi?id=63461
A copy of one page with the tall cell.

Problem description: 

Steps to reproduce:
1. Open an electronic form in Libre
2. Some of the form fill cells are about 1 inch tall instead of 11 point. 
However the font does insert in the proper size.
3. I have been unable to edit the cell to reduce the height.

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko)
Chrome/19.0.1084.56 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 51419] New: : Java Runtime

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51419

 Bug #: 51419
   Summary: : Java Runtime
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: seided...@charter.net


Problem description: 

Steps to reproduce:
1.  I have had problems opening Base on both my Windows 7 and Vista
computers.  
2.  Base gives me a JRE
3.  I had just updated to Java 1.7.  Once I deleted that and went back to a
Java 1.6 version Base worked fine.  Is there a problem with the latest version
of Java?  

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0;
SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center
PC 6.0; .NET4.0C)

-- 
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 46338] Substitution of missing references with #REF! makes correcting formulas impossible

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46338

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
   Keywords|regression  |

--- Comment #3 from Eike Rathke er...@redhat.com 2012-06-25 12:18:22 PDT ---
This was already in OOo 3.3.0 the case and probably integrated from there,
removing regression keyword.

However, I agree that input could be preserved in this case.

-- 
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 51420] New: VIEWING: Some Form Controls Become Invisible if Cursor is Moved in Front of Heading Number

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51420

 Bug #: 51420
   Summary: VIEWING: Some Form Controls Become Invisible if Cursor
is Moved in Front of Heading Number
Classification: Unclassified
   Product: LibreOffice
   Version: 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: harald-koes...@htp-tel.de


Problem description: 

(1) Open new text document.
(2) Insert a heading with level 1.
(3) Number the heading: Tools  Outline Numbering...  Numbering  Level 1 
Number: 1, 2, 3,…; then OK. 
(4) Insert a check box below heading.
(5) Set design mode to off.
(6) Move the cursor with arrow buttons in front of the heading number. The
check box becomes invisible !!!
(7) Pull the document up and down with mouse wheel. The check box becomes
visible again.

Expected behavior: In step (5) the check box should be still visible.

Also Option Buttons and Label Fields become invisible with this proceeding. But
not all form controls disappear, Push Buttons and Text Boxes are still visible.

Hence this bug is similar to bug 43765, there may be the same cause for this
bug.

Browser: Mozilla/5.0 (Windows NT 6.1; rv:13.0) Gecko/20100101 Firefox/13.0.1

-- 
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 43765] FORMCONTROLS: Check Boxes and Option Buttons Become Invisible, when you Click into a Table.

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43765

--- Comment #8 from harald-koes...@htp-tel.de 2012-06-25 12:22:29 PDT ---
Bug 51420 is similar to this bug. May be there is the same reason.

-- 
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 45582] VIEWING: Background Colour of Different Items are Marked Incorrectly with the Background Colour of Fields

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45582

--- Comment #10 from harald-koes...@htp-tel.de 2012-06-25 12:30:20 PDT ---
To comment 2:
I wrote a new bug report according the disappearance of the check box. See bug
51240.

-- 
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 45582] VIEWING: Background Colour of Different Items are Marked Incorrectly with the Background Colour of Fields

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45582

--- Comment #11 from harald-koes...@htp-tel.de 2012-06-25 12:32:07 PDT ---
Sorry, the bug number mentioned in my last comment is wrong. Correct is bug
51420.

-- 
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 51423] New: FORMATTING: When correcting spelling, some formatting information is erased

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51423

 Bug #: 51423
   Summary: FORMATTING: When correcting spelling, some formatting
information is erased
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: hamilt...@gmail.com


Steps to reproduce:
1. Write a sentence as so: 
Why is *CMD-I to turn on italics* thhis *CMD-I* not working? 
2. Right click on thhis and choose to correct to 'this'
3. Italicized formatting is lost

Current behavior:
In most situations, the italics formatting is preserved. However, there seem to
be a few isolated cases where it is lost. 

Expected behavior:
In all cases where formatting is initially present formatting should be
preserved after a spelling correction has been performed. 

Platform (if different from the browser): 
os x 10.7.4 
$ java -version
java version 1.6.0_33
Java(TM) SE Runtime Environment (build 1.6.0_33-b03-424-11M3720)
Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03-424, mixed mode)

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/536.5
(KHTML, like Gecko) Chrome/19.0.1084.56 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 48009] EDITING: Data points missing in line chart

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48009

--- Comment #6 from John Lindgren john.lindg...@aol.com 2012-06-25 14:57:23 
PDT ---
No, that would be very unlikely and is in fact not the case.  May I see a
screenshot of what it looks like on your system?

-- 
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 50417] Calc: Simple UI improvement in Page Preview: Buttons for landscape / portrait page orientation

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50417

--- Comment #1 from glepp...@gmx.de 2012-06-25 15:18:36 PDT ---
Created attachment 63467
  -- https://bugs.freedesktop.org/attachment.cgi?id=63467
Example of page orientation buttons in Firefox page preview

-- 
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 51424] New: : SE CUELGA EL PROGRAMA

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51424

 Bug #: 51424
   Summary: : SE CUELGA EL PROGRAMA
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jpal...@hotmail.com


Created attachment 63468
  -- https://bugs.freedesktop.org/attachment.cgi?id=63468
CONTIENE LAS FOTOS DEL PROBLEMA

AMIGOS DE LIBREOFFICE

ME LLAMO IGNACIO PALOMEQUE SOY DE ECUADOR, TENGO UN PROBLEMA CON LA VERSION
3.5.4 CADA VEZ QUE ABRO UN ARCHIVO DIRECTAMENTE (EXTENSION DOC) SE QUEDA
COLGADO (ADJUNTO LA IMAGEN DEL ESCRITORIO) COMO PODRAN VER NI EL ICONO CARGA EN
LA BARRA DE MI LANZADOR SI LO ANALIZAN MAS A FONDO EL PROBLEMA, DEBO REINICIAR
MI MAQUINA PARA PODER PRIMERO ABRIR EL PROGRAMA Y POR MEDIO DEL ICONO DE ABRIR
ACCESAR A LOS ARCHIVOS, SINCERAMENTE ES UN PROBLEMA, ME QUEJO PORQUE MI SISTEMA
OPERATIVO ES UBUNTU 12.04 LTS Y ME VINO CON LA VERSION 3.5.3 Y PORQUE QUERER
UNA VERSION ESTABLE LA ACTUALICE A LA QUE UDS OFRECEN EN LA PAGINA WEB. OJO
ADEMAS ADJUNTO EL PROCESO QUE ME DA PROBLEMA Y UBUNTU LO REPORTA ES EL UNICO
ICONO DIFERENTE DE TODOS LOS PROCESOS (SOFFICE.BIN)


AGRADECERIA ME AYUDARAN CON UNA SOLUCION AL PROBLEMA Y ME CONFIRMEN RECEPCION
DEL CORREO

ATENTAMENTE IGNACIO PALOMEQUE

PD EN UNA IMAGEN ADJUNTO CARACTERISTICAS DE MI MAQUINA POR SI LAS DUDAS
Cerrar anuncio
Gestión anunciosGestión anuncios

-- 
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 51393] EDITING: Unable to input Pali diacritics

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51393

Urmas davian...@gmail.com changed:

   What|Removed |Added

 OS/Version|All |Linux (All)
 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTOURBUG

--- Comment #1 from Urmas davian...@gmail.com 2012-06-25 17:11:44 PDT ---
Does it work in other applications?

-- 
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 51426] New: Installation of LibreOffice on Windows

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51426

 Bug #: 51426
   Summary: Installation of LibreOffice on Windows
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 RC1
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: david.lind...@just-a-s-k.com.au


The installer file, accessed through
http://www.libreoffice.org/get-help/installation/windows/, claims to be named
LibO_3.5.4_Win_x86_install_multi.msi.

In fact, it is named LibO_3.5.4_Win_x86_install_multi.man.

Consequently, it will not initiate the Windows Installer.

To install correctly, the extension must be renamed manually, from .man to
.msi.

This is a critical bug.  Fortunately, it must be about the easiest to fix.

-- 
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 51426] Installation of LibreOffice on Windows

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51426

David david.lind...@just-a-s-k.com.au changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
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 45209] CRASH when FILEOPEN particular .xls

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45209

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

--- Comment #6 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-06-25 
17:59:53 PDT ---
I suppose I'll take this one. Kohei is still not here and 3-6Beta3 is only one
week away.

-- 
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 50883] Events Tab Macro Selector dialog crashes

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50883

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 CC||sberg...@redhat.com

--- Comment #6 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-06-25 
18:13:30 PDT ---
@Stephan: A problem with java. See attached my backtrace which shows a lot of
java threads. Do you have an idea? In the end LO is killed by an SIGILL created
by the Java VM.

I have no idea how to debug this one.

-- 
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 50883] Events Tab Macro Selector dialog crashes

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50883

--- Comment #7 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-06-25 
18:13:59 PDT ---
Created attachment 63469
  -- https://bugs.freedesktop.org/attachment.cgi?id=63469
backtrace of all threads

-- 
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 51427] New: Restore Windows Dialogue Box Persistant at Startup - Unable to Dismiss

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51427

 Bug #: 51427
   Summary: Restore Windows Dialogue Box Persistant at Startup -
Unable to Dismiss
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: BASIC
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mark.kirsh...@gmail.com


Created attachment 63470
  -- https://bugs.freedesktop.org/attachment.cgi?id=63470
Screen shot of persistent dialogue box.

While editing a text document I quit the editor and/or re-booted (can't
recall). 

Now, each and every time i try to start up the suite I get a persistent
dialogue box complaining that: The application LibreOffice unexpectedly quit
while trying to restore its windows.  Do you want to try to restore its windows
again?

The options are Restore and Don't Restore no matter which one i select it
does not go away and i can't use the product because the dialogue box will not
dismiss and the focus of the box is always on top of all LO windows.  
I need to force quit the dialogue box so i can reboot.  

I have completely uninstalled and removed all LO software (several times),
installed OpenOffice and get the same LibreOffice dialogue box!

Not sure in which file the OS keeps this error flag so I could clear it.

Any clue would be helpful.

Kind Regards,

Mark

mark.kirsh...@gmail.com
1-917-589-3788

Please see attached screen shot.

-- 
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 50735] copy / paste changes page format

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50735

--- Comment #1 from Peter peterjschroe...@gmail.com 2012-06-25 19:42:29 PDT 
---
Not only does pasting from a pdf mess with the margins, if you try to paste
from a pdf in between existing text, it will paste it at the end of the file
instead. Also some pdf text pasted becomes stubbornly formatted, making clear
format useless as it turns it into large bold characters. Basically whatever
new code was introduced for pasting in the releases since the grammar checker
was introduced is buggy.

-- 
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 51430] New: FILEOPEN: opening file doc format html with libreoffice for mac

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51430

 Bug #: 51430
   Summary: FILEOPEN: opening file doc format html with
libreoffice for mac
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: pcarmo...@fiscalis.fr


Problem description: 

Steps to reproduce:
1. export un file from a professional database navis editions francis
lefebvre
2. the export is made with doc termination but it is html format
3. open the file with writer

Current behavior:
when opening the french letter é and the following lettre are replaced by ?
Expected behavior:
correct opening with all letters.
This issue doesn't exist with release libreoffice 3.4 neither open office,
neither word 2003
This issue exists also with word 14

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20100101
Firefox/13.0.1

-- 
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 51431] New: EDITING: copy and paste end of text

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51431

 Bug #: 51431
   Summary: EDITING: copy and paste end of text
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: pcarmo...@fiscalis.fr


Problem description: 

Steps to reproduce:
1. using a database professional navis editions francis lefebvre  
2. select tex and copy...
3. paste on writer document

Current behavior:
the text is paste at the end of the document

Expected behavior:
the text has to be paste where indicated by the mouse
This problem doesn't exist with previous release 3.4


Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20100101
Firefox/13.0.1

-- 
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 51432] New: LibreOffice Help fails with JRE 1.7

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51432

 Bug #: 51432
   Summary: LibreOffice Help fails with JRE 1.7
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jpmcgr...@jpmcgrath.net


When LibreOffice is installed on a system that has only JRE 1.7.0_04 installed,
and you perform a find in the help system, it shows a dialog saying
LibreOffice requires a Java runtime environment to perform this task. Please
install a jre and restart libreoffice.  Under Tools → Options → Java, it
showed the installed JRE.  At some point (not sure where), it told me that the
JRE was invalid.

After installing JRE 1.6.0_33, the problem went away.

I am not sure why it would not work with JRE 1.7.  However, if it considers it
to be invalid, it should check this in the Java configuration dialog and report
the JRE as invalid.

-- 
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 51430] FILEOPEN: opening file doc format html with libreoffice for mac

2012-06-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51430

--- Comment #1 from pcarmouze pcarmo...@fiscalis.fr 2012-06-25 22:14:04 PDT 
---
Created attachment 63474
  -- https://bugs.freedesktop.org/attachment.cgi?id=63474
file  which can't be opened correctly

-- 
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   3   >