[Bug 45789] automatic row height in reports

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

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


[Bug 45789] automatic row height in reports

2016-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #49 from Lionel Elie Mamane  ---
(In reply to kerem from comment #45)
> (In reply to Lionel Elie Mamane from comment #44)

>> The saving of the report definition happens in C++, in
>> reportdesign/source/filter/xml/
>> I think it is particularly in reportdesign/source/filter/xml/xmlExport.cxx
>> function void ORptExport::exportContainer(const Reference< XSection>&
>> _xSection)
>> looks relevant; need to set the right attribute or style for "automatic
>> height" there.

> Okey I understand. So I change something in function void
> ORptExport::exportContainer(const Reference< XSection>&_xSection). I change
> that about the "automatic height", is true? In addition to, are there any
> your suggestions? 

Sorry it took me so long to answer. Basically, yes, that is my guess, but that
is about step 3 from comment 22. We also (first?) need to do steps 1 and 2 from
comment 22. See also comment 24 and comment 26.

To summarise: the work is to add a property "AutoGrow" to every control. It
needs to be added to the control models and to the UI that allows to user to
set that property. Then, in RptExport::exportContainer, if any of the controls
of this row has "AutoGrow" set to true, then set the "automatic row height"
attribute" on the whole row.

Code pointers are in comment 22, except that in step 3, the code pointer is
probably wrong and should be replaced by what I say in comment 44. Steps 1 and
2 are still valid. Sorry for the mixup.

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


[Bug 45789] automatic row height in reports

2016-01-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #48 from kerem  ---
I sent following new patch for this bug;

https://gerrit.libreoffice.org/#/c/21761/1

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


[Bug 45789] automatic row height in reports

2015-12-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #47 from kerem  ---
I sent following patch for this bug;

https://gerrit.libreoffice.org/#/c/20751/

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


[Bug 45789] automatic row height in reports

2015-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #45 from kerem  ---
(In reply to Lionel Elie Mamane from comment #44)
> (In reply to kerem from comment #43)
> > In comment 24, reportbuilder creates an odt file, not through Writer. I
> > can't this. How to create odt file?
> 
> An ODT file is basically a ZIP structure with XML in it.
> 
> In reportbuilder, the Java top-level class that does the process seems to be
> in file
> reportbuilder/java/org/libreoffice/report/pentaho/output/text/
> TextRawReportTarget.java
> (in combination with the external jfreereport), but that is not where you
> will need to intervene, but in the code that creates a table row.
> 
> The code responsible for a cell is basically
> reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/
> TableCellLayoutController.java
> 
> My original idea was to find the code responsible for a row and inject the
> attribute for "fit to size" row height there. However, now that I take a
> fresh look at it, I realise that the  tags are probably
> copied unchanged from the report definition. So it might be easier to change
> the way the report definition is saved rather than the way it is processed.
> 
> The saving of the report definition happens in C++, in
> reportdesign/source/filter/xml/
> I think it is particularly in reportdesign/source/filter/xml/xmlExport.cxx
> function void ORptExport::exportContainer(const Reference< XSection>&
> _xSection)
> looks relevant; need to set the right attribute or style for "automatic
> height" there.

Okey I understand. So I change something in function void
ORptExport::exportContainer(const Reference< XSection>&_xSection). I change
that about the "automatic height", is true? In addition to, are there any your
suggestions? 

Thank you.

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


[Bug 45789] automatic row height in reports

2015-10-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #44 from Lionel Elie Mamane  ---
(In reply to kerem from comment #43)
> In comment 24, reportbuilder creates an odt file, not through Writer. I
> can't this. How to create odt file?

An ODT file is basically a ZIP structure with XML in it.

In reportbuilder, the Java top-level class that does the process seems to be in
file
reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
(in combination with the external jfreereport), but that is not where you will
need to intervene, but in the code that creates a table row.

The code responsible for a cell is basically
reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java

My original idea was to find the code responsible for a row and inject the
attribute for "fit to size" row height there. However, now that I take a fresh
look at it, I realise that the  tags are probably copied
unchanged from the report definition. So it might be easier to change the way
the report definition is saved rather than the way it is processed.

The saving of the report definition happens in C++, in
reportdesign/source/filter/xml/
I think it is particularly in reportdesign/source/filter/xml/xmlExport.cxx
function void ORptExport::exportContainer(const Reference< XSection>&
_xSection)
looks relevant; need to set the right attribute or style for "automatic height"
there.

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


[Bug 45789] automatic row height in reports

2015-10-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #43 from kerem  ---
(In reply to Lionel Elie Mamane from comment #42)
> (In reply to kerem from comment #41)
> > Hello, 
> > 
> > I am starting work on this bug. I want ask questions to you. Please can you
> > help me? 
> > 
> > First of all, I don't know where the start. Also will i work any code 
> > files? 
> > 
> > Thank you for your suggestion.
> 
> Please read particularly comments 22 to 26. Then come back to me with any
> question or difficulty you have.

In comment 24, reportbuilder creates an odt file, not through Writer. I can't
this. How to create odt file?

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


[Bug 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #42 from Lionel Elie Mamane  ---
(In reply to kerem from comment #41)
> Hello, 
> 
> I am starting work on this bug. I want ask questions to you. Please can you
> help me? 
> 
> First of all, I don't know where the start. Also will i work any code files? 
> 
> Thank you for your suggestion.

Please read particularly comments 22 to 26. Then come back to me with any
question or difficulty you have.

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


[Bug 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #41 from kerem  ---
Hello, 

I am starting work on this bug. I want ask questions to you. Please can you
help me? 

First of all, I don't know where the start. Also will i work any code files? 

Thank you for your suggestion.

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


[Bug 45789] automatic row height in reports

2015-08-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #40 from Lionel Elie Mamane  ---
(In reply to derrick rocha from comment #39)
> Is this still an issue?  Thanks.

yes

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


[Bug 45789] automatic row height in reports

2015-08-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #39 from derrick rocha  ---
Is this still an issue?  Thanks.

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


[Bug 45789] automatic row height in reports

2015-05-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

lukas.men...@outlook.de changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|lukas.men...@outlook.de |libreoffice-b...@lists.free
   ||desktop.org

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #38 from Lionel Elie Mamane  ---
(In reply to lukas.mentel from comment #37)
> How can I execute logerrit? If I try the command ./logerrit setup, the
> computer asks for an app to open (Windows 8.1).

Hmm... I'm not using Microsoft Windows, so I suggest you ask on the mailing
list or on IRC.

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #37 from lukas.men...@outlook.de ---
How can I execute logerrit? If I try the command ./logerrit setup, the computer
asks for an app to open (Windows 8.1).

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

lukas.men...@outlook.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #36 from Lionel Elie Mamane  ---
(In reply to lukas.mentel from comment #35)
> Hello,
> I want to work at this bug, but I fear I need help :)
> Please sorry my bad english.

Please read particularly comments 22 to 26. Then come back to me with any
question or difficulty you have.

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

lukas.men...@outlook.de changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|libreoffice-b...@lists.free |lukas.men...@outlook.de
   |desktop.org |

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


[Bug 45789] automatic row height in reports

2015-04-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

lukas.men...@outlook.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #35 from lukas.men...@outlook.de ---
Hello,
I want to work at this bug, but I fear I need help :)
Please sorry my bad english.

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


[Bug 45789] automatic row height in reports

2015-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #34 from Lionel Elie Mamane  ---
(In reply to Zlatko Kostadinow from comment #33)
> I was not able to reproduce this bug with the example database and the
> source code at commit 5d388443b9809e73202ce551bcffa10d442094ca from 12 Feb
> 2015. Is it still up-to-date or it was fixed?

This enhancement request is still pending.

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


[Bug 45789] automatic row height in reports

2015-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

Zlatko Kostadinow  changed:

   What|Removed |Added

 CC||kostadinov.zla...@gmail.com

--- Comment #33 from Zlatko Kostadinow  ---
I was not able to reproduce this bug with the example database and the source
code at commit 5d388443b9809e73202ce551bcffa10d442094ca from 12 Feb 2015. Is it
still up-to-date or it was fixed?

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


[Bug 45789] automatic row height in reports

2015-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #32 from Alex Thurgood  ---
Adding self to CC if not already on

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


[Bug 45789] automatic row height in reports

2014-12-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #31 from Lionel Elie Mamane  ---
(In reply to Omar Syed from comment #30)
> Don't worry guys.  I got this

I look forward to reviewing your patch ! Let me knwo when it, or a draft of it,
is ready.

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


[Bug 45789] automatic row height in reports

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

--- Comment #30 from Omar Syed  ---
Don't worry guys.  I got this

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


[Bug 45789] automatic row height in reports

2014-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #29 from je...@live.de ---
I think this bug is too difficult for me yet, so I'll take an easier bug first
to learn more about libreoffice. :)

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


[Bug 45789] automatic row height in reports

2014-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

je...@live.de changed:

   What|Removed |Added

   Assignee|je...@live.de   |libreoffice-b...@lists.free
   ||desktop.org

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


[Bug 45789] automatic row height in reports

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

--- Comment #28 from je...@live.de ---
Thank you for the information!
I'll try it on monday

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


[Bug 45789] automatic row height in reports

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

--- Comment #27 from Lionel Elie Mamane  ---
These pointers should hopefully get you started. Let me know if you run into
difficulties or have other questions. Because of the LibreOffice conference, I
might be less avaible from 2 to 7 September.

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


[Bug 45789] automatic row height in reports

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

--- Comment #26 from Lionel Elie Mamane  ---
Finally, the *UI* for handling properties of controls is apparently in 
reportdesign/source/ui/

You can look at how the other properties are handled there.

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


[Bug 45789] automatic row height in reports

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

--- Comment #25 from Lionel Elie Mamane  ---
The code that creates a new row seems to be

 private void startRow(final AttributeMap attrs)

in
reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget

look where/how this is called. The decision to apply "automatic height" or not
will most probably be in the/a caller of this startRow (or their caller).
Thread.dumpStack() is your friend :)

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


[Bug 45789] automatic row height in reports

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

--- Comment #24 from Lionel Elie Mamane  ---
The reportbuilder creates an odt file (OpenDocument text), but not through
Writer. It creates the XML directly and *then* starts writer on it for display
/ print / etc.

When working on it, I've found the ODF reference a good help to understand what
is being generated and what needs to be generated.
https://lists.oasis-open.org/archives/tc-announce/201201/msg1.html

Here, in particular, we are generating tables
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1415580_253892949
Need to find how in the XML a table row with automatic height is coded. To find
out that kind of things, create an odt document with writer, with a table. Save
it. Then make *one* change, namely changing *one* row to "automatic height".
Save it under a different name. Compare the two documents (that is, the XML
that is within the ZIP structure). xmlindent is your friend. Most probably one
attribute is added/changed in the  element.

That's the result you need to produce in ReportBuilder when the "AutoGrow"
feature is on.

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


[Bug 45789] automatic row height in reports

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

--- Comment #23 from Lionel Elie Mamane  ---
For an example of a commit that added a new property (albeit not to controls,
the the report as a whole), see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=4178806bb010129f3b13b6282547fe48ddcd

It shows e.g. how to add a new token to the XML format.

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


[Bug 45789] automatic row height in reports

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

--- Comment #22 from Lionel Elie Mamane  ---
To add the property "AutoGrow" to controls, you need to add it:

1) To the file format in reportdesign/source/filter/xml/
   (probably xmlReportElementBase.* or xmlReportElement.*)

2) To the actual in-memory "model" (implementation) of controls:
   I suggest you start with
   Formatted field: reportdesign/source/core/api/FormattedField.cxx
reportdesign/source/core/inc/FormattedField.hxx

3) Have the actual treatment (generation) of the report take these
   into account. The treatment happens in
   reportbuilder/java/org/libreoffice/report/

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


[Bug 45789] automatic row height in reports

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

je...@live.de changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |je...@live.de
   |desktop.org |

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


[Bug 45789] automatic row height in reports

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

--- Comment #21 from je...@live.de ---
Hi,
I am trying to work on this Bug but I don't know where to start. Maybe you can
help me and tell me in which file I have to look for.

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


[Bug 45789] automatic row height in reports

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

Lionel Elie Mamane  changed:

   What|Removed |Added

   Assignee|high...@gmail.com   |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #20 from Lionel Elie Mamane  ---
No answer from assignee -> marking as available again

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


[Bug 45789] automatic row height in reports

2014-06-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

Jacob  changed:

   What|Removed |Added

 CC||jacobm...@gmail.com

--- Comment #19 from Jacob  ---
Is this still being worked on?  I'm honestly really surprised it's not a
feature, it would make the reporting engine so much more useful.

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


[Bug 45789] automatic row height in reports

2014-05-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #18 from Lionel Elie Mamane  ---
Michal? Any news on your work on this bug? Any question? Do you still intend to
work on it?

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


[Bug 45789] automatic row height in reports

2014-04-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #17 from Lionel Elie Mamane  ---
(In reply to comment #16)

> I have some questions about this bug. I will try describe them here or 
> on IRC tomorrow.

I won't be on IRC (travelling for vacation), but if you have general questions,
you may find good help there. For Base-specific or this-bug-specific questions,
please post them as comments to this bug, I'll try to check this bug from time
to time.

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


[Bug 45789] automatic row height in reports

2014-04-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #16 from Michal Strnad  ---
Hello,

I have some questions about this bug. I will try describe them here or 
on IRC tomorrow.

Sorry for the delay

Michal Strnad


On 3.4.2014 16:05, bugzilla-dae...@freedesktop.org wrote:
>
> *Comment # 15  
> on bug 45789  from 
> Lionel Elie Mamane  *
> (In reply tocomment #14)
> > I am starting work on this bug.
>
> Hi. How is the work going? Do you have any draft? Do you need any help / 
> review
> / pointer?
> 
> You are receiving this mail because:
>
>   * You are the assignee for the bug.
>

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


[Bug 45789] automatic row height in reports

2014-04-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #15 from Lionel Elie Mamane  ---
(In reply to comment #14)
> I am starting work on this bug.

Hi. How is the work going? Do you have any draft? Do you need any help / review
/ pointer?

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


[Bug 45789] automatic row height in reports

2014-03-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

--- Comment #14 from Michal Strnad  ---
Hello,

I am starting work on this bug.

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


[Bug 45789] automatic row height in reports

2014-03-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

Michal Strnad  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |high...@gmail.com
   |desktop.org |

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


[Bug 45789] automatic row height in reports

2013-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45789

Björn Michaelsen  changed:

   What|Removed |Added

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

--- Comment #13 from Björn Michaelsen  ---
adding LibreOffice developer list as CC to unresolved EasyHacks for better
visibility.

see e.g.
http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for
details

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