[Libreoffice-bugs] [Bug 66108] CRASH while exporting to PDF using Helvetica font with Latin characters other than Basic Latin Unicode Block

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66108

Emir Sarı  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #9 from Emir Sarı  ---
I can reproduce this either with the latest nightly. 

Reopening.

-- 
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 52622] Reduce copy and paste code: lcl_GetImageFromPngUrl

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52622

--- Comment #4 from Thomas Arnhold  ---
@Jelle: You could create a file named helper.cxx or something similar. Then
submit it to gerrit and hopefully someone will complain if it's not the right
directory.

@mmeeks: Do you have a idea where to put this method in?

-- 
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 31754] SLIDESHOW: Chart y-axis label in .ppt exceeds chart area

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31754

--- Comment #9 from Thomas Arnhold  ---
Created attachment 83500
  --> https://bugs.freedesktop.org/attachment.cgi?id=83500&action=edit
libreoffice-4.2-alpha with error

-- 
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 31754] SLIDESHOW: Chart y-axis label in .ppt exceeds chart area

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31754

--- Comment #10 from Thomas Arnhold  ---
Created attachment 83501
  --> https://bugs.freedesktop.org/attachment.cgi?id=83501&action=edit
office 2010 without error

-- 
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 31754] SLIDESHOW: Chart y-axis label in .ppt exceeds chart area

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31754

--- Comment #8 from Thomas Arnhold  ---
Reproduced with Version: 4.2.0.0.alpha0+
(d49e3805c58b2c08c5cb0483ed620ab6ef86fedd) on Windows 7 64 bit.

-- 
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 67647] SQL/SingleSelectQueryComposer::getStructuredFilter/HavingClause returns comparison operator in value

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67647

Lionel Elie Mamane  changed:

   What|Removed |Added

 Whiteboard||EasyHack
   ||DifficultyInteresting
   ||SkillSQL SkillCpp
   Severity|normal  |major

-- 
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 67647] New: SQL/SingleSelectQueryComposer::getStructuredFilter/HavingClause returns comparison operator in value

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67647

  Priority: medium
Bug ID: 67647
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: SQL/SingleSelectQueryComposer::getStructuredFilter/Hav
ingClause returns comparison operator in value
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: lio...@mamane.lu
  Hardware: All
Status: NEW
   Version: unspecified
 Component: Database
   Product: LibreOffice

Let cmp be a SQLQueryComposer or SingleSelectQueryComposer that gives a query
like:

  SELECT foo, bar FROM qux WHERE baz > 5;

cmp.getStructuredFilter() returns something like:

 [[ {Name=baz, Handle=GREATER, Value="> 5"} ]]

while it should return something like:

 [[ {Name=baz, Handle=GREATER, Value="5"} ]]

The latter (not the former!) is the format expected by setStructuredFilter.
Which means that (in Basic):

 cmp.StructuredFilter = cmp.StructuredFilter

will fail.

This has been noticed several times through the codebase, but instead of fixing
getStructuredFilter(), each caller works around this.

IMHO we should fix it.

Anyway, encoding the operator in PropertyValue.Handle is IMHO an abuse of
PropertyValue. This should have its own datatype (struct).

So instead of just fixing getStructuredFilter, we could just deprecate it and
replace it by something better, e.g. along the lines of the suggestion in
dbaccess/source/ui/browser/unodatbr.cxx (or something better):

// check if the columns participating in the filter refer to existing tables
// TODO: there's no API at all for this. The method which comes nearest to what
we need is
// "getStructuredFilter", but it returns pure column names only. That is, for a
statement like
// "SELECT * FROM  WHERE . = ", it will
return "". But
// there's no API at all to retrieve the information about  "" -
which is what would
// be needed here.
// That'd be a chance to replace getStructuredFilter with something more
reasonable. This method
// has at least one other problem: For a clause like " != ", it
will return ""
// as column name, "NOT_EQUAL" as operator, and "!= " as value,
effectively duplicating the
// information about the operator, and beding all clients to manually remove
the "!=" from the value
// string.
// So, what really would be handy, is some
//   XNormalizedFilter getNormalizedFilter();
// with
//   interface XDisjunctiveFilterExpression
//   {
// XConjunctiveFilterTerm getTerm( int index );
//   }
//   interface XConjunctiveFilterTerm
//   {
// ComparisonPredicate getPredicate( int index );
//   }
//   struct ComparisonPredicate
//   {
// XComparisonOperand   Lhs;
// SQLFilterOperatorOperator;
// XComparisonOperand   Rhs;
//   }
//   interface XComparisonOperand
//   {
// SQLFilterOperand Type;
// XPropertySet getColumn();
// string   getLiteral();
// ...
//   }
//   enum SQLFilterOperand { Column, Literal, ... }
//
// ... or something like this 



Notable caller: wizards/com/sun/star/wizards/db/SQLQueryComposer.java

See in particular the function getNormalizedStructuredFilter()

-- 
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 67624] FILESAVE : Writer hangs after saving a big document

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67624

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #3 from tommy27  ---
(In reply to comment #0)
> 
>
> 
> I can't add attachement file as example (size>3Mo)

try uploading on some web hosting site and post a link here.
test files are useful for debugging purposes.

-- 
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 66487] Export PDF/A crashes LibreOffice

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66487

--- Comment #16 from tommy27  ---
@peter

no crash at all with last test file and LibO 4.0.4 and 4.1.0 on Win7 64bit.
pdf export works well, I just receive the transparency warning if pdf1a is
checked

-- 
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 67646] New: UI Libre Office Spreadsheet Chart loses data range referring to calculated cells when reading an Excel (.xls) file

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67646

  Priority: medium
Bug ID: 67646
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI Libre Office Spreadsheet Chart loses data range
referring to calculated cells when reading an Excel
(.xls) file
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: i...@harbinjam.org
  Hardware: PowerPC
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 83499
  --> https://bugs.freedesktop.org/attachment.cgi?id=83499&action=edit
.xlsx worksheet contaiing two charts of two data ranges. first chart range is 
not always read correctly.

A line chart whose Data Range refers to cells containing calculations loses
data range when read from an Excel (.xls) format file.


Details:
The attached sample spreadsheet contains two charts  of two data ranges.
One range is a set of calculations,  the other is table of the same
values, but stored as numbers, not formulas.

When saved as excel, and then opened again, the first chart data range
is wrong, the second chart data range is correct.

The cell values in the two ranges are identical , but one is a set of
formulae, the other, just the numbers.

This problem does not occur when saved and opened as a .ods file, only 
as Excel (.xls)


I therefore conclude the problem occurs when Reading the .xls into Libre
Office.

NOTE -
My sample worksheet just started working correctly ! and does not show
the problem. So, this bug is intermittent. 
The only change I made was that I reduced the size of the data table
in the sample file I am attaching.  I also added a second chart,
to show the difference between a plot of data ranges containing
Dsum(...) calculations (does not work) and a  table of numbers with the
same values.

-- 
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 36772] UI: Sheet tabs appear too small

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36772

--- Comment #10 from Alfredo P.  ---
I am experiencing the same problem with the sheet tabs being so small that I
can not read them. I recently removed and installed the update to v4.0.1.4 and
am still having the issue. I verified that I do not have overlay-scrollbar
installed. I am not running the Oxygen theme but the default Lubuntu theme.

screenshot included in attachment.
https://bugs.freedesktop.org/attachment.cgi?id=83498

SYS INFO:

Toshiba Satellite A135-S4427
Lubuntu 13.04 (raring)
GNOME: 3.6.3
Kernel: 3.8.0-27
Xorg: 1.13.3

Display settings:
1200x800

-- 
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 65102] Windows Installation desktop icon get's installed regardless to chosen option

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65102

mic...@sacharewicz.pl changed:

   What|Removed |Added

Version|4.2.0.0.alpha0+ Master  |4.1.0.4 release

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


[Libreoffice-bugs] [Bug 66395] Compilation error in Windows with UTF-8 unfriendly codepage

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66395

Isamu Mogi  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #11 from Isamu Mogi  ---
Oh.. patch was reverted. I'll search more better fix.

-- 
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 66395] Compilation error in Windows with UTF-8 unfriendly codepage

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66395

Isamu Mogi  changed:

   What|Removed |Added

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

--- Comment #10 from Isamu Mogi  ---
Patch was merged. Thanks!

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


[Libreoffice-bugs] [Bug 36772] UI: Sheet tabs appear too small

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36772

--- Comment #9 from Alfredo P.  ---
Created attachment 83498
  --> https://bugs.freedesktop.org/attachment.cgi?id=83498&action=edit
Libre Calc v4.0.1.4 fullscreen screenshot small sheet tab

-- 
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 41226] FILEOPEN: not possible in File Explorer from own user network location

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41226

Isamu Mogi  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 66108] CRASH while exporting to PDF using Helvetica font with Latin characters other than Basic Latin Unicode Block

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66108

--- Comment #8 from peter  ---
Created attachment 83497
  --> https://bugs.freedesktop.org/attachment.cgi?id=83497&action=edit
Crash report on OSX

-- 
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 66108] CRASH while exporting to PDF using Helvetica font with Latin characters other than Basic Latin Unicode Block

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66108

--- Comment #7 from peter  ---
I downloaded the daily
http://dev-builds.libreoffice.org/daily/libreoffice-4-1/MacOSX-10.8@21-10.7SDK/current/lo-4-1_tb~2013-07-31_15.44.29_LibreOfficeDev_4.1.1.0.0_MacOS_x86.dmg
and it crashed when I exported my document.

I've attached my crash report above.

-- 
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 67341] EDITING: Toolbar "Edit Points" not available in Calc

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67341

afo...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from afo...@gmail.com ---
A strict reading of the link you gave provides this for the icon in question:

Edit Points

The Edit Points icon allows you to activate or deactivate the edit mode for
Bézier objects. In the edit mode, individual points of the drawing object can
be selected.


The icon does in fact "in the edit mode, individual point of the drawing object
can be selected" ability.  Although I do agree that the other icons are on the
page with no indicator of how to access them.

Due to this lack of clarity it seems reasonable to assume the toolbar should
appear.  I have therefore marked this bug status to new as it has been
confirmed.

-- 
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 66487] Export PDF/A crashes LibreOffice

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66487

--- Comment #15 from peter  ---
Created attachment 83496
  --> https://bugs.freedesktop.org/attachment.cgi?id=83496&action=edit
Test document that crashes LibreOffice 4.1 on export to pdf.

This document can't be exported to PDF on my computer (OSX) without crashes
LibreOffice 4.1.

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


[Libreoffice-bugs] [Bug 67325] CONFIGURATION: No toolbar button to toggle "wrap text automatically"

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67325

afo...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 66487] Export PDF/A crashes LibreOffice

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66487

--- Comment #13 from peter  ---
Created attachment 83495
  --> https://bugs.freedesktop.org/attachment.cgi?id=83495&action=edit
Crash report on OSX

-- 
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 66487] Export PDF/A crashes LibreOffice

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66487

--- Comment #14 from peter  ---
I've attached "Crash report on OSX" above which appears whenever I try to
export my document in OSX. I'll upload the document causing the trouble also.
Note that it doesn't matter if I have the "PDF/A-1a" setting checked or not, it
still crashes.

-- 
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 67480] validation drop down list

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67480

afo...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from afo...@gmail.com ---
I just reproduced this.
in fact, the values do disappear - something is deleting them.
go back into data > validity and you will see that the values you typed are
gone - replaced by emptiness.

so if I had in the list
one,
two,
three

then I hit ok, and go back into the list - I then see
""
""
""
(without the quotes, they are just used to show empty lines - although the
return's are present as you can arrow up and down).

-- 
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 46447] Embedded Pictures disappear from document (presentation, .odp) contents

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46447

--- Comment #62 from Kumāra  ---
(In reply to comment #61)
> This feature just happened to me as well... 
> 
> Ubuntu 12.10 LO v. 3.6.2.2 build ID: 360m1(build:2). 

Can you try the latest version and see if the issue remains?

-- 
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 67473] UI: wrong help text displayed in function wizard list

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67473

--- Comment #1 from afo...@gmail.com ---
When choosing a category, the display on the right always defaults to the first
value for that category.

In the Math example, that default value is abs()
You have to click on countif to get it to show the countif detail.

In step 6 you mention "pop up text", I am on linux and I am not seeing what I
would call a pop up text.  So just to confirm:
you are not referring to the text to the right as part of the dialog box, but
to some other pop-up when you hover over countif?

-- 
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 67602] Unable to open .eps files: "Graphics filter not found"

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67602

Joel Madero  changed:

   What|Removed |Added

 CC||bjoern.michaelsen@canonical
   ||.com

--- Comment #5 from Joel Madero  ---
Ill add our Canonical person just so he is aware.

Bjoern - looks like ubuntu specific

-- 
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 67479] "Insert Sheet" dialog: Use "Name" field also for imported file.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67479

afo...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 67481] "Insert->Sheet From File...": Default name should be based on file name.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67481

afo...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 67479] "Insert Sheet" dialog: Use "Name" field also for imported file.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67479

--- Comment #1 from afo...@gmail.com ---
*** Bug 67481 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 67481] "Insert->Sheet From File...": Default name should be based on file name.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67481

afo...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from afo...@gmail.com ---


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

-- 
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 67492] No support for named range subaddressing

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67492

afo...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 67602] Unable to open .eps files: "Graphics filter not found"

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67602

Björgvin Ragnarsson  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |NOTOURBUG

--- Comment #4 from Björgvin Ragnarsson  ---
I downloaded the LibreOffice x86 .deb release for comparison and the bug is not
there.

It's most likely a bug in the Ubuntu package 1:4.1.0-0ubuntu1~precise1~ppa1
(x86). I'll report this issue to the Ubuntu packaging team.

-- 
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 67501] CONFIGURATION: Faulty way to handle cell borders

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67501

afo...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from afo...@gmail.com ---
Digging into this,
I do see the results you have posted.
Although after playing with it, this is what I have observed:
format > cells > borders
the default is:
width = 0.05 pt

 PointA
however, hit the up arrow once and:
width = 0.30 pt
and the issue goes away - you do see the yellow on all four of the cell's
borders.

 PointB
additionally, if you change the width to be:
width = 9.00 pt (the maximum allowed)
you will observe that the yellow borders are there, but now you also see the
black borders of the bordering cells. (again using your example).

So, given PointA above, there certainly IS AN ISSUE WITH THE DEFAULT WIDTH of
0.05 pt for the cell border - as it does give the effect you have observed,
however just increasing the border slightly gives the expected results.

-- 
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 58105] EDITING: Enhance request: Increase of functionality in Navigator Window – Heading

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58105

--- Comment #6 from bugquestcon...@online.de ---
Update:
I am working now with LibO 4.0.4.2 and the situation I am observing is still
the same.
Working on a longer, stuctured document the enhancement requested would be a
great improvement of productivity. 
I can be addressed for any discussion  and tests.

-- 
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 67595] FORMATTING: wrap text in cells

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67595

--- Comment #3 from afo...@gmail.com ---
on your step 4, you say this does not happen consistently.
Have you noticed any conditions in which it is reproducible?

(I see you are on mac) I am using the same version of libreoffice but on linux
and have yet to see that behavior.  I have tried putting text/numbers around
the cell, then adding removing text, playing with formatting.  Nothing seems to
be giving the result you are seeing - if you have any more hints at all, please
provide them.

-- 
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 60889] FILEOPEN: Incorrect opening XLSX file (that happens to be not valid according to OOXML, may be produced by software like 1C:Enterprise)

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60889

--- Comment #19 from rfw...@gmail.com ---
Created attachment 83494
  --> https://bugs.freedesktop.org/attachment.cgi?id=83494&action=edit
Initial patch

Here's an initial patch that just fixes it for this particular case.

-- 
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 67633] EDITING: SEARCH function doesn't find text in cells containing hyperlinks

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67633

--- Comment #3 from yaca...@bluewin.ch ---
User profile already resetted, didn't solve the issue.

-- 
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 67576] impossible to set printing page size manually

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67576

chilamchi...@seznam.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 67642] Feedback for Expert Configuration GSoC project

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67642

--- Comment #2 from Efe Gürkan YALAMAN  ---
(In reply to comment #0)
> Hi Gürkan, Thorsten,

Hi, I prefer Efe mostly for it is shorter,more memorable and easy to pronounce
but OK wit Gürkan too :)

Thanks for sharing your opinions this fast firstly. :)

So -

> 2. The second most important feature is a filter bar. (I trust you've thought
>   of that already.) If that's not there, people will be very annoyed with
> this
>   functionality very soon. The filter bar should be the thing initially
>   receiving focus when one first visits the page/opens the window. Also, it
>   should not just work when you're typing the first few letters, it should
> also
>   search in the middle of words.

Yep. On my to do list mentioned it a few times (probably two)on my weekly
reports. But there are bigger issues before that. I did this kind of thing
before but I was using SQL and should look how to do in LibreOffice. Especially
for searching in the middle of words thing. Pretty sure there are a lot of code
to use as reference.


For 3,4,5:
Current interface annoys me too. Probably we will see a few more UI
refactoring. But first I need to solve the performance on loading and show all
the options instead of some of the randomly chosen.

> 6. Currently, all category headers have little triangles for sorting in them
>   – that doesn't make a lot of sense, only one of them should (otherwise, you
>   are communicating that you are sorting by all column headers).
> 

I think it would be useful in case you know type of the option but don't know
the all of the name etc. You can sort the types, give some part of its toplevel
to the filter bar and quick scrolling. It is not the best way to using English
here but I hope you can understand what I meant :)


> 9. I don't know if it makes sense to give string arrays a type of "[]string"
>   – maybe, since there seem to be no other types of arrays, it might make
> sense
>   to just name this type "array"?
> 

Type names comes directly through api as Stephen said. And there are other list
types like "[]long", "[]short" etc. But as I said not all of the options listed
for now.

> 10. If all that is done, we should sacrifice some main-UI options. I think
>   axing all the "experimental" options might be a good first start. :)
> 
> 
> That's it for right now. Overall, it's very nice work. Thanks to
> both of you.
> 
> Astron.

-- 
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 67562] EDITING: Implement acronym management

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67562

--- Comment #4 from Florent Angly  ---
Thank you Joel.

I just thought about an additional consideration. When an acronym has been
defined but used only once in a document, it does not really make sense to even
use an acronym. As a consequence:

* In the "expand on first use" scenario, only the expansion of the acronym
should appear in the document, e.g. "deoxyribonucleic acid" and not
"deoxyribonucleic acid (DNA)" 

* In the "table of acronyms" scenario, the acronym should not even appear at
all.

-- 
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 67645] FORMATTING: Problem with save style

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67645

Bernardo  changed:

   What|Removed |Added

Summary|FORMATTING: Problem with|FORMATTING: Problem with
   |Conditional Formatting  |save style

-- 
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 67645] New: FORMATTING: Problem with Conditional Formatting

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67645

  Priority: medium
Bug ID: 67645
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Problem with Conditional Formatting
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: bdp...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.0.4 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 83490
  --> https://bugs.freedesktop.org/attachment.cgi?id=83490&action=edit
File with the problem and images with explanation.

Problem description: 

I have a file with four sheets and in each one of it a few cells with a
Conditional Formatting. I configured three different styles to be applied
according to three conditions. I named Style One, Two and Three.
I save the file as .xls and when I open again I have many styles with the name
Excel_CondFormat that I understand which are created by a matter of
compatibility with Excel.
The problem is that these styles do not respect the original and when I change
the format in Numbers it's not recorded, that is, it's making the change at the
moment, but when I open the file this change is lost.

I hope I was clear... the error exist from the version 3.4 the OpenOffice.

Thanks, Bernardo.


Operating System: Windows 7
Version: 4.1.0.4 release

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


[Libreoffice-bugs] [Bug 67532] PIVOTTABLE: I can not put title to dynamic table cell

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67532

mariosv  changed:

   What|Removed |Added

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

--- Comment #1 from mariosv  ---
Hola José Manuel, thanks for reporting.

I think it is only possible with fields titles, maybe better change the bug
title and change for a request for enhancement (importance
medium->enhancement).

Workaround is move the field from data-fields to row-fiels, then you can change
the field title.

-- 
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 67637] CONFIGURATION: Hidden event listener

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67637

Andreas Haupt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Andreas Haupt  ---
Not a bug but a misunderstanding of general events (Tools->Customize...) and
sheet events, sorry.

-- 
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 67642] Feedback for Expert Configuration GSoC project

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67642

Stephan Bergmann  changed:

   What|Removed |Added

 CC||sberg...@redhat.com

--- Comment #1 from Stephan Bergmann  ---
(In reply to comment #0)
> 8. The "org.openoffice.Office" part in most(?)/all(?) preferences is a waste
>   of space. It would be cool if this part could be removed somehow. If any
>   extensions use other namespaces, you could just leave their namespacing in
> –
>   it's a bit inconsistent, but no one will blame us for preferring our own
>   namespace, I hope.

All of our own configuration schemas are prefixed with /org.openoffice, and a
large majority with /org.openoffice.Office.  Extensions can bring along schemas
with other prefixes.  The dialog could unambiguously remove any
"/org.openoffice." prefix, say, as unabbreviated paths would always start with
"/" and "/" could should never follow a prefix "/org.openoffice.".

> 9. I don't know if it makes sense to give string arrays a type of "[]string"
>   – maybe, since there seem to be no other types of arrays, it might make
> sense
>   to just name this type "array"?

At least in principle, there are also other kinds of lists (they're called
"lists," not "arrays") apart from string lists (see the complete lists of types
e.g. under "ATTLIST prop" at officecfg/registry/component-schema.dtd), though
anything but string lists is hardly used, if at all.  (I guess the odd name of
"[]string" comes from using the name of the UNO type corresponding to the
configuration type.  The type names appearing in the UI should probably be
localized variants of the configuration type names used in
officecfg/registry/component-schema.dtd etc.)

-- 
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 67633] EDITING: SEARCH function doesn't find text in cells containing hyperlinks

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67633

mariosv  changed:

   What|Removed |Added

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

--- Comment #2 from mariosv  ---
Hi yacamim, thanks for reporting.
Works for me with:
Win7x64ieUltimate
Version: 4.1.1.0.0+Build ID: c1f0f890f5065f88164add33707228f8c6d5755
TinderBox: Win-x86@6-debug, Branch:libreoffice-4-1, Time: 2013-07-28_23:51:08

Please verify the Match Case, and try resetting the user profile, sometimes
solve strange issues.
https://wiki.documentfoundation.org/UserProfile

-- 
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 67643] New: FILESAVE: Font size doesn't keep on comment.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67643

  Priority: medium
Bug ID: 67643
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: Font size doesn't keep on comment.
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: mbritovalada...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 83487
  --> https://bugs.freedesktop.org/attachment.cgi?id=83487&action=edit
A screenshot.

Problem description: Font size doesn't keep on comment when save the document.

Steps to reproduce:
1. Write a text on document;
2. Insert a comment for this text. Ctrl+Alt+C (shortcut);
3. Alter font size of this text on comment;
4. Save the document;
5. Close the document;
6. Open the document;
7. See that the font size has not kept.

Current behavior: The font size doesn't maintain on comment.

Expected behavior: Keep the font size.
Operating System: Ubuntu
Version: 4.0.4.2 release
Last worked in: 3.6.7.2 rc

-- 
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 67642] Feedback for Expert Configuration GSoC project

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67642

Stefan Knorr (astron)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 67642] New: Feedback for Expert Configuration GSoC project

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67642

  Priority: medium
Bug ID: 67642
CC: libreoffice-ux-adv...@lists.freedesktop.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Feedback for Expert Configuration GSoC project
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: heinzless...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.4 release
 Component: ux-advise
   Product: LibreOffice

Created attachment 83486
  --> https://bugs.freedesktop.org/attachment.cgi?id=83486&action=edit
Screenshot, for everyone that doesn't have a recent nightly handy.

Hi Gürkan, Thorsten,

so, first things first: when I said on the call today that the Expert Config
page of the LibreOffice options was crashing for me – that was my fault. I had
not made dev-install again. Mea culpa.

Following here are my impressions of the options page:

1. It's pretty nice already – once you can edit options, it should be pretty
  functional

2. The second most important feature is a filter bar. (I trust you've thought
  of that already.) If that's not there, people will be very annoyed with this
  functionality very soon. The filter bar should be the thing initially
  receiving focus when one first visits the page/opens the window. Also, it
  should not just work when you're typing the first few letters, it should also
  search in the middle of words.

3. The first thing that I noticed were the scrollbars – you must have noticed
  too – I think this page could profit a lot from having its own window,
  notably one that is resizable. Similar to Thunderbird's implementation of
  about:config, I'd just add a Expert Configuration button to the Advanced
  tab of the options.

4. If you think that an own window does not make sense, then please remove the
  Gtk frame with the "Preferences" label – it really does not add anything in
  terms of context and steals a few precious pixels of space.

5. Further on the topic of scrollbars, it would be nice if there were only a
  horizontal scrollbar, just ellipsise ("…") content that tries to be wider.
  At least, that should be the default – if people want vertical scrollbars,
  they should be allowed to widen the column headers.

6. Currently, all category headers have little triangles for sorting in them
  – that doesn't make a lot of sense, only one of them should (otherwise, you
  are communicating that you are sorting by all column headers).

7. On the topic of those triangles: they look fairly non-standard to me –
  native theming would be really nice here, but I realise this might be out of
  scope for this project.

8. The "org.openoffice.Office" part in most(?)/all(?) preferences is a waste
  of space. It would be cool if this part could be removed somehow. If any
  extensions use other namespaces, you could just leave their namespacing in –
  it's a bit inconsistent, but no one will blame us for preferring our own
  namespace, I hope.

9. I don't know if it makes sense to give string arrays a type of "[]string"
  – maybe, since there seem to be no other types of arrays, it might make sense
  to just name this type "array"?

10. If all that is done, we should sacrifice some main-UI options. I think
  axing all the "experimental" options might be a good first start. :)


That's it for right now. Overall, it's very nice work. Thanks to
both of you.

Astron.

-- 
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 67641] New: Insert a Format Field in Sidebar>Properties>Number Format

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67641

  Priority: medium
Bug ID: 67641
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Insert a Format Field in Sidebar>Properties>Number
Format
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: hom...@yahoo.com
  Hardware: Other
Status: NEW
   Version: 4.1.0.4 release
 Component: UI
   Product: LibreOffice

In the new experimental Sidebar under Properties the Number Format (General,
Date etc.)is displayed. Missing is the Format Code itself, which would be very
helpful.

-- 
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 67639] EDITING: rotating a picture after cropping it produces an error

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67639

Tomaz Vajngerl  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |qui...@gmail.com
   |desktop.org |
 CC||qui...@gmail.com
 Ever confirmed|0   |1

--- Comment #3 from Tomaz Vajngerl  ---
OK, the picture crop information also needs to be rotated.

Regards, Tomaž

-- 
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 67640] Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

--- Comment #5 from Maximiliano Castañón  ---
Created attachment 83485
  --> https://bugs.freedesktop.org/attachment.cgi?id=83485&action=edit
LibreOffice Writer fail

-- 
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 67640] Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

--- Comment #4 from Maximiliano Castañón  ---
Created attachment 83483
  --> https://bugs.freedesktop.org/attachment.cgi?id=83483&action=edit
LibreOffice Writer fail

-- 
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 67636] FILEOPEN: Opening document takes about 80 seconds, perf

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67636

--- Comment #6 from Joel Madero  ---
Ah so the same document in Excel - 3 seconds? Now that is helpful :) With given
info I couldn't assume you had rational expectations but with that info - 120
seconds compared to 3 seems pretty poor.

Still, for now leaving as INVALID but I just emailed Kohei and Markus the file
and pointed them to this bug - if they want to deal with it directly they can
mark as NEW and assign themselves. These use cases do in fact help a lot - I
wish we had an easy way to collect them in one location (perhaps a wiki page is
in order here)

Any way we could also get the xls(x) file so I can confirm the speed on MSO.

I wonder if we could nail down what is making it slow or if it's a combination
of everything - removing one item at a time and looking for performance gains
might be useful. 

If we could identify a single item causing performance issues and say something
like "Pivot tables are 10x slower than MSO" that is more specific and perhaps
actionable.

Again thanks for the reply - if you reply again can you reply directly in FDO
vs. via email - avoids clogging the report with extraneous content

-- 
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 67640] Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

--- Comment #3 from Maximiliano Castañón  ---
Created attachment 83482
  --> https://bugs.freedesktop.org/attachment.cgi?id=83482&action=edit
LibreOffice and Xorg CPU consumption

huge CPU consumption when LibreOffice fail with the characters disordination.

-- 
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 67640] Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

--- Comment #2 from Maximiliano Castañón  ---
Created attachment 83481
  --> https://bugs.freedesktop.org/attachment.cgi?id=83481&action=edit
LibreOffice Writer strange fail with red lines over LO

-- 
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 67640] Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

--- Comment #1 from Maximiliano Castañón  ---
Created attachment 83480
  --> https://bugs.freedesktop.org/attachment.cgi?id=83480&action=edit
LibreOffice Presentation fail

-- 
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 67640] New: Writer and Presentation fails randomly with a disorder characters

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67640

  Priority: medium
Bug ID: 67640
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Writer and Presentation fails randomly with a disorder
characters
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: maxim...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Libreoffice
   Product: LibreOffice

Created attachment 83479
  --> https://bugs.freedesktop.org/attachment.cgi?id=83479&action=edit
LibreOffice fail 5

The characters randomly fails and looks disordered or some times all the chars 
of tha paragraph appears in 1 char space, I have added some images to show to
the developers the problem. After a while of have this problem LO crash.

The cause of this problem it's unkown, some times when it failed to me, I was
doing nothing, even the unique thing is to hibernate the computer.

-- 
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 67636] FILEOPEN: Opening document takes about 80 seconds, perf

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67636

--- Comment #5 from afo...@gmail.com ---
(In reply to comment #4)
> Marking as INVALID
> 
> "Make LibreOffice faster" is not an actionable item.  

Thank you for the clarification - I read that other bug I put in my notes
(qubit's comments on ask.libreoffice) and it sounded like libreoffice was just
looking for good examples of workbooks that consume lots of resources to help
optimize.

>I can confirm it takes
> about 2 minutes to open but your comment "I would expect it to load in a few
> seconds." - > what is this based on? technical knowledge ? just a guess at
> how long a file should take to open? an 11 meg file with multiple sheets and
> calculations along with charts and what not is pretty complex.
> 


It is based on independently building the same workbook in excel.  Excel takes
about 3 seconds.


> This being said I can note a couple things:
> 
> 1. Kohei (one of our calc experts) is working on a huge rebase of the code -
> this may (or may not) affect this particular document, we should see this in
> 4.2 or 4.3 depending on the length of time it takes to do the tremendous
> workload he's working on.

Yes, I watch his posts on G+ quite closely.

> 2. AMD has partnered up with LibreOffice - there is no time frame but we
> expect in the future seeing some performance gains here as well (and not
> just for people with AMD GPU's):
> http://arstechnica.com/information-technology/2013/07/libreoffice-aims-to-
> stop-spreadsheet-pain-with-amd-gpu-optimization/
> 
> 3. The particular test file may be useful for performance checks going into
> the future but again, this item is not actionable as it's a general "make
> libreoffice faster" based onwell from what I can see, just general user
> expectations which who knows if "an ideal product" would be 5 seconds or 1
> minute to load. I am going to get the test file to Markus and Kohei but
> it'll just be used for general testing purposes (if at all) not to "fix"
> this particular bug.
> 

Thanks again for the clarification - I do appreciate it.

> 
> Thanks for understanding

no problem.

-- 
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 67634] LO cannot display the EPS graphics in a stable way while in document editing mode

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67634

--- Comment #3 from kurt.pfei...@gmail.com ---
Could someone please change the MIME type of attachment #83460? It somehow
turned into text/plain while really it's an Open Document Text...

-- 
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 67636] FILEOPEN: Opening document takes about 80 seconds, perf

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67636

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||jmadero@gmail.com

--- Comment #4 from Joel Madero  ---
Marking as INVALID

"Make LibreOffice faster" is not an actionable item.  I can confirm it takes
about 2 minutes to open but your comment "I would expect it to load in a few
seconds." - > what is this based on? technical knowledge ? just a guess at how
long a file should take to open? an 11 meg file with multiple sheets and
calculations along with charts and what not is pretty complex.

This being said I can note a couple things:

1. Kohei (one of our calc experts) is working on a huge rebase of the code -
this may (or may not) affect this particular document, we should see this in
4.2 or 4.3 depending on the length of time it takes to do the tremendous
workload he's working on.

2. AMD has partnered up with LibreOffice - there is no time frame but we expect
in the future seeing some performance gains here as well (and not just for
people with AMD GPU's):
http://arstechnica.com/information-technology/2013/07/libreoffice-aims-to-stop-spreadsheet-pain-with-amd-gpu-optimization/

3. The particular test file may be useful for performance checks going into the
future but again, this item is not actionable as it's a general "make
libreoffice faster" based onwell from what I can see, just general user
expectations which who knows if "an ideal product" would be 5 seconds or 1
minute to load. I am going to get the test file to Markus and Kohei but it'll
just be used for general testing purposes (if at all) not to "fix" this
particular bug.



Thanks for understanding

-- 
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 67099] >700% performance regression vs. 4.0 when opening ODS files

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67099

Kohei Yoshida  changed:

   What|Removed |Added

 Whiteboard|bibisectrequest perf|perf

--- Comment #14 from Kohei Yoshida  ---
No bibisect needed.

-- 
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 67571] FILESAVE: Saving to XLS format works fine, but it mess up the file

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67571

Thomas van der Meulen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 67450] Very bad .docx document display

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67450

Joel Madero  changed:

   What|Removed |Added

 Whiteboard||Need_Advice

--- Comment #16 from Joel Madero  ---
No worries - thanks for the update

With it behaving weird on MSO 2013 also I have my doubts about the file. Going
to request some input.

-- 
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 67571] FILESAVE: Saving to XLS format works fine, but it mess up the file

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67571

Thomas van der Meulen  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 CC||pje...@hotmail.com

--- Comment #1 from Thomas van der Meulen  ---
Thank you for your bug report, I can reproduce this bug running LibreOffice
Version: 4.1.0.4
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28 on Mac osx 10.8.4. 

I didn't use Excel but I saved it to .xls and reopend it and it was messed up.

-- 
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 67616] FORMCONTROLS: Checkbox not working in Writer without assigned label text

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67616

Joel Madero  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Priority|medium  |lowest
 Ever confirmed|0   |1

--- Comment #6 from Joel Madero  ---
I think it's something to do with the table inside of the document not with the
labeling - it would be really nice to get reproducible steps for a fresh
document but I can confirm the behavior here so...


New (confirmed)
Normal - could theoretically prevent professional work
Lowest - as of now we have one test case and no way to reproduce from scratch -
with Florian saying he is also unable to create from scratch I'm leaving this
as lowest. If we can get steps that reproduce the problem from a blank state
then we can up this to low or medium.


Thanks Florian for test case.

-- 
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 67489] EDITING: copied and pasted cells containing formulas are not recalculated

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67489

Kohei Yoshida  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |kohei.yosh...@suse.de
   |desktop.org |

--- Comment #8 from Kohei Yoshida  ---
I'll take it.

-- 
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 67450] Very bad .docx document display

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67450

--- Comment #15 from John  ---
a)I wish i could but bugzilla doesnt allow files with such size to be uploaded.
I will have to delete content again and i dont know how much that affect the
document.

b)Sorry for the description.

-- 
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 67616] FORMCONTROLS: Checkbox not working in Writer without assigned label text

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67616

Florian Ebnet  changed:

   What|Removed |Added

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

--- Comment #4 from Florian Ebnet  ---
My colleague managed to find a backup of the affected file; I will attach a
redacted version with just the affected checkboxes.

-- 
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 67616] FORMCONTROLS: Checkbox not working in Writer without assigned label text

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67616

--- Comment #5 from Florian Ebnet  ---
Created attachment 83476
  --> https://bugs.freedesktop.org/attachment.cgi?id=83476&action=edit
Sample of an affected document

-- 
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 67639] EDITING: rotating a picture after cropping it produces an error

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67639

--- Comment #2 from bordfe...@web.de ---
Created attachment 83475
  --> https://bugs.freedesktop.org/attachment.cgi?id=83475&action=edit
picture after cropping and rotating

-- 
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 67639] EDITING: rotating a picture after cropping it produces an error

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67639

--- Comment #1 from bordfe...@web.de ---
Created attachment 83474
  --> https://bugs.freedesktop.org/attachment.cgi?id=83474&action=edit
picture after cropping

-- 
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 67639] EDITING: rotating a picture after cropping it produces an error

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67639

bordfe...@web.de changed:

   What|Removed |Added

  Attachment #83473|text/plain  |image/jpg
  mime type||

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


[Libreoffice-bugs] [Bug 67636] FILEOPEN: Opening document takes about 80 seconds, perf

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67636

--- Comment #3 from afo...@gmail.com ---
(In reply to comment #1)
> Hello Afonit could you please attach the file that you were talking about so
> I can test this bug?
> 
> Thank you in advance,
> 
> Thomas

Thomas, I could not get the file small enough to have meaning.
I have uploaded it to this service and it says it will be deleted in 7 days.

Here is the link:
http://www.fileconvoy.com/dfl.php?id=g0f3eb4682752f9019993419217d855a7e56784023

-- 
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 67639] New: EDITING: rotating a picture after cropping it produces an error

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67639

  Priority: medium
Bug ID: 67639
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: rotating a picture after cropping it produces
an error
  Severity: major
Classification: Unclassified
OS: Linux (All)
  Reporter: bordfe...@web.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.1.0.4 release
 Component: Writer
   Product: LibreOffice

Created attachment 83473
  --> https://bugs.freedesktop.org/attachment.cgi?id=83473&action=edit
picture before editing it

LibreOffice 4.1.04 on Ubuntu 12.04 64bit

I inserted a gif-picture into a writer-document, then I cropped it and then I
rotated it 90 degrees to right or left. After rotating the picture is displayed
incorrectly.

-- 
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 67574] EDITING: enanchement: shortcut to paste a link

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67574

Joel Madero  changed:

   What|Removed |Added

   Hardware|Other   |All
 Status|UNCONFIRMED |NEW
 Whiteboard|BSA |BSA, ProposedEasyHack
   Priority|medium  |lowest
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero  ---
Thank you for reporting this enhancement request! I can confirm that this is a
valid enhancement request on:
Version: 4.2.0.0.alpha0+Build ID: 09a4c4d176ff97ab8ff4027af83a549991667baf
Date:   Tue Jul 30 19:05:34 2013 +0300 
Platform: Bodhi Linux 2.2 x64
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
As I've been able to confirm the enhancement request I am marking as:

New (confirmed)
Enhancement
Lowest - workaround exists - not a feature that is used very often, once you do
one special paste as link - the option remains so any future special pastes
during that session is easy (ctrl + shift + v)

Keywords - 

Whiteboard Status - proposedeasyhack

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
LibreOffice is powered by a team of volunteers, every bug is confirmed
(triaged) by human beings who mostly give their time for free. We invite you to
join our triaging by checking out this link:
https://wiki.documentfoundation.org/QA/BugTriage

There are also other ways to get involved including with marketing, UX,
documentation, and of course developing - 
http://www.libreoffice.org/get-help/mailing-lists/. 

Lastly, good bug reports help tremendously in making the process go smoother,
please always provide reproducible steps (even if it seems easy) and attach any
and all relevant material

-- 
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 67616] FORMCONTROLS: Checkbox not working in Writer without assigned label text

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67616

--- Comment #3 from Florian Ebnet  ---
Weird, now I cannot reproduce the issue even by removing the labels in the
affected document. Your test case works perfectly fine as well. For whatever
reason there must have been a glitch in the affected file that went away by
adding the labels once. Adding and editing additional checkboxes has not
triggered the issue again.

It was there, and not just for me but for another user on the same document,
but we both cannot reproduce it. I am going to leave the bug on WFM; If I ever
come across that glitch again I will attach the affected file.

-- 
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 66700] REPORTBUILDER - CRASH when deleting field added in Report Design mode

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66700

Thomas van der Meulen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||pje...@hotmail.com
 Ever confirmed|0   |1

--- Comment #13 from Thomas van der Meulen  ---
Hello all, 

I can reproduce this bug running LibreOffice Version: 4.2.0.0.alpha0+
Build ID: 02fb63f8f29085213659b730456dbf0438c2f7cc
TinderBox: MacOSX-X86_64@43, Branch:master, Time: 2013-08-01_00:42:37
 on Mac osx 10.8.4. 
I used the nba2012.odb file from bug 56325 

I am not good with Base (first time I used it) so I hope I did every thing good

-- 
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 67578] CONFIGURATION: mise à jour

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67578

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero  ---
Marking as INVALID - Our FDO policy is that bugs have to be filed in English. 

Please file the bug via the French BSA and someone will translate the bug to
English. Thanks!

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


[Libreoffice-bugs] [Bug 67624] FILESAVE : Writer hangs after saving a big document

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67624

Joel Madero  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Severity|major   |critical
   Priority|medium  |high
Version|4.1.0.4 release |3.5.1 RC1
 Blocks||47148
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero  ---
I guess we're using that as a tracker not as a dupe - fixing now

Updated version to match the tracker version - this was most likely inherited
from OOo prior to fork

-- 
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 47148] image caching / management is utterly shambolic.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47148

Joel Madero  changed:

   What|Removed |Added

 Depends on||67624

-- 
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 67624] FILESAVE : Writer hangs after saving a big document

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67624

Joel Madero  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 47148] image caching / management is utterly shambolic.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47148

Joel Madero  changed:

   What|Removed |Added

 Depends on||67583

-- 
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 67583] FILEOPEN: Not open file

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67583

Joel Madero  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |critical
   Priority|medium  |high
 CC||jmadero@gmail.com
Version|4.1.0.4 release |3.5.1 RC1
 Blocks||47148
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero  ---
Seems like this is another rendition of the image caching problem - 

The file will open but you need a lot of RAM and it chews it up (I have 4 gigs
and this file just went through it)

Marking as

New
Critical
High

Updated version to match tracker bug - this was inherited from OOo I believe

-- 
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 67622] EDITING: Feature Request: Add Vertical Alignment Options to Impress

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67622

Joel Madero  changed:

   What|Removed |Added

   Severity|normal  |enhancement
   Priority|medium  |low
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Presentation|ux-advise

--- Comment #5 from Joel Madero  ---
Requesting UX input then

-- 
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 67636] FILEOPEN: Opening document takes about 80 seconds, perf

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67636

--- Comment #2 from afo...@gmail.com ---
(In reply to comment #1)
> Hello Afonit could you please attach the file that you were talking about so
> I can test this bug?
> 
> Thank you in advance,
> 
> Thomas

Thomas, it is apparently not letting me upload saying it is too big.
It gave me a file size that it has to be less than.
I made the file less then that,
then it gave me a new filesize (different than the first warning) that it had
to be less than.

I will play around with it and see if I can get it even smaller without loosing
the issue.

-- 
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 67638] experimental sidebar: incomplete sentence in german version

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67638

bordfe...@web.de changed:

   What|Removed |Added

  Attachment #83471|text/plain  |image/jpg
  mime type||

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


[Libreoffice-bugs] [Bug 67595] FORMATTING: wrap text in cells

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67595

Thomas van der Meulen  changed:

   What|Removed |Added

   Priority|low |medium

--- Comment #2 from Thomas van der Meulen  ---
sorry for the comment it was ment to be in an other bug report sorry -,-

-- 
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 67638] New: experimental sidebar: incomplete sentence in german version

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67638

  Priority: medium
Bug ID: 67638
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: experimental sidebar: incomplete sentence in german
version
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: bordfe...@web.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.1.0.4 release
 Component: Localization
   Product: LibreOffice

Created attachment 83471
  --> https://bugs.freedesktop.org/attachment.cgi?id=83471&action=edit
screenshot of the affected sidebar

Hello,

LibreOffice 4.1.0.4 on Ubuntu 12.04 64bit:

In the experimental sidebar exists in the german version an incomplete
sentence. In graphic->properties there is a sentence "Seitenverhältnis
beibeha". It must be "Seitenverhältnis beibehalten". I add a screenshot.

-- 
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 67595] FORMATTING: wrap text in cells

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67595

Thomas van der Meulen  changed:

   What|Removed |Added

   Priority|medium  |low

--- Comment #1 from Thomas van der Meulen  ---
Thank you for your bug report, I can reproduce this bug running LibreOffice
Version: 4.1.0.4
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28 on Mac osx 10.8.4.

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


[Libreoffice-bugs] [Bug 67584] Other: Writer: Wrong Flip menu items and icons

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67584

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |trivial
   Priority|medium  |lowest
   Assignee|libreoffice-b...@lists.free |jmadero@gmail.com
   |desktop.org |
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero  ---
Ah - there is the other one - confirmed and taking it

-- 
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 67527] FILEOPEN: LO can't open files over SMB - wants to repair!

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67527

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|major   |critical
   Priority|medium  |high
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #6 from Joel Madero  ---
Bjoern - going to go ahead and mark this as NEW - as you've confirmed. I'll
leave any further discussion to you and ma...@rittsel.com - seems like a nasty
one so upping priority.

-- 
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 67585] Other: Calc: Inconsistent Flip menu items

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67585

Joel Madero  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |trivial
   Priority|medium  |lowest
   Assignee|libreoffice-b...@lists.free |jmadero@gmail.com
   |desktop.org |
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero  ---
In writer I see "flip horizontally" twice - also a bug I think?

In any case:

Thank you for reporting this issue! I have been able to confirm the issue on:
Version 3.5.beta0
Platform: Bodhi Linux 2.2 x64
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
As I've been able to confirm this problem on an earlier release I am changing
the version number as version is the earliest version that we can confirm the
bug, we use comments to say that the bug exists in newer versions as well.

Marking as:

New (confirmed)
Trivial - no impact really
Lowest - just a label



I'll fix it

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
LibreOffice is powered by a team of volunteers, every bug is confirmed
(triaged) by human beings who mostly give their time for free. We invite you to
join our triaging by checking out this link:
https://wiki.documentfoundation.org/QA/BugTriage

There are also other ways to get involved including with marketing, UX,
documentation, and of course developing - 
http://www.libreoffice.org/get-help/mailing-lists/. 

Lastly, good bug reports help tremendously in making the process go smoother,
please always provide reproducible steps (even if it seems easy) and attach any
and all relevant material

-- 
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 67622] EDITING: Feature Request: Add Vertical Alignment Options to Impress

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67622

Tomaz Vajngerl  changed:

   What|Removed |Added

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

--- Comment #4 from Tomaz Vajngerl  ---
Hm.. however we could make this more discoverable by adding the align top,
center, bottom to the toolbar (and main menu) in the same way as it is in calc.
I think this is a valid request for an enhancement and could be a nice easy
hack too.

-- 
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 65138] [META] Sidebar feature related issues

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138

Joel Madero  changed:

   What|Removed |Added

 Depends on||67426

-- 
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 67426] Open/hide new LibreOffice 4.1 sidebar with mouseover event.

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67426

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com
 Blocks||65138
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero  ---
Great suggestion - confirming that it's valid

-- 
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 67586] FORMATTING: Rounding

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67586

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero  ---
In the future please provide exact steps here in the bug, it makes our job on
the QA side 10x easier. 

That being said: I followed this documentation
https://help.libreoffice.org/Calc/Using_Rounded_Off_Numbers and had no issues
rounding.

Marking as WFM - if you follow those instructions and still have a problem -
please provide your exact steps as well as a sample document that shows
rounding not occurring. Then set the bug to UNCONFIRMED



Thanks! Also, where do you see 3.5.4.2 - online help? Local help?


Tested on Bodhi Linux as well as Windows 8 with LibreOffice version 4.1.0.4
release

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


[Libreoffice-bugs] [Bug 67496] Experimental Sidebar enabled: Fail to handel position values bigger than 240cm

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67496

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||jmadero@gmail.com

--- Comment #3 from Joel Madero  ---
I can confirm a limitation on 4.1 but 4.2 master doesn't show this so marking
as WFM as it seems like someone has unleashed the size. For US Standard the
limitation was 100" but with 4.2 I went up to 150" x 150" and had no issues. 

Because this isn't a critical bug we won't take the time to go digging for what
patch fixed this but I encourage you to test on a daily build and verify that
it's fixed so that by 4.2 you'll have the feature :)

http://dev-builds.libreoffice.org/daily/libreoffice-4-1/


If it's still an issue on 4.2 mark as UNCONFIRMED and we'll investigate again.
Thanks!

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


[Libreoffice-bugs] [Bug 67450] Very bad .docx document display

2013-08-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67450

--- Comment #14 from Joel Madero  ---
@John - can you attach the untouched one here also? Seems like Ubuntu one is
down, we don't like relying on outside infra for attachments because of these
kinds of issues.

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