[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2013-07-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |vmik...@suse.cz
   |desktop.org |

--- Comment #14 from Miklos Vajna  ---
-4-1 review: https://gerrit.libreoffice.org/4737

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2013-07-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:4.2.0

--- Comment #13 from Commit Notification 
 ---
Miklos Vajna committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=4108f285207ed4a60c8876a8206bc5f2d7f05620

fdo#39001 RTF import: fix fake empty page at the end of the doc



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

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

--- Comment #12 from Julien Nabet  ---
The patch was wrong, sorry guys. Hopefully Miklos pinpointed this.

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2013-06-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

--- Comment #11 from Julien Nabet  ---
If the file isn't invalid, here's a proposed patch:
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 7c4f545..ce3aeb5 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -506,7 +506,13 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
 bool bNeedSect = m_bNeedSect;
 // If there is no paragraph in this section, then insert a dummy one, as
required by Writer
 if (m_bNeedPar)
+{
+// sometimes the rtf file has \sect at the end (see fdo#39001)
+// in this case, there shouldn't be a new page
+if (bFinal)
+return;
 dispatchSymbol(RTF_PAR);
+}
 // It's allowed to not have a non-table paragraph at the end of an RTF
doc, add it now if required.
 if (m_bNeedFinalPar && bFinal)
 {

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2013-06-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr,
   ||vmik...@suse.cz

--- Comment #10 from Julien Nabet  ---
on pc Debian x86-64 with master sources updated today, I reproduced this.

Miklós: is it invalid there's a final sect in the rtf file or should import rtf
part in LO be 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 39001] Inserts a blank page at the end of all RTF documents

2012-09-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

sasha.libreoff...@gmail.com 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 39001] Inserts a blank page at the end of all RTF documents

2012-09-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

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

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---
 CC||sasha.libreoff...@gmail.com
 Ever confirmed|1   |0

--- Comment #9 from sasha.libreoff...@gmail.com ---
reproduced in 3.6.1 on Fedora 64 bit. First attachment in Writer has 4 page. In
msWord 2003 for comparison number of pages is 3.

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

--- Comment #8 from Florian Reisinger  2012-08-14 14:05:53 
UTC ---
Dear bug submitter!

Due to the fact, that there are a lot of NEEDINFO bugs with no answer within
the last six months, we close all of these bugs.

To keep this message short, more infos are available @
https://wiki.documentfoundation.org/QA/NeedinfoClosure#Statement

Thanks for understanding and hopefully updating your bug, so that everything is
prepared for developers to fix your problem.

Yours!

Florian

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

--- Comment #7 from Florian Reisinger  2012-08-14 14:03:37 
UTC ---
Dear bug submitter!

Due to the fact, that there are a lot of NEEDINFO bugs with no answer within
the last six months, we close all of these bugs.

To keep this message short, more infos are available @
https://wiki.documentfoundation.org/QA/NeedinfoClosure#Statement

Thanks for understanding and hopefully updating your bug, so that everything is
prepared for developers to fix your problem.

Yours!

Florian

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

--- Comment #6 from Florian Reisinger  2012-08-14 13:59:04 
UTC ---
Dear bug submitter!

Due to the fact, that there are a lot of NEEDINFO bugs with no answer within
the last six months, we close all of these bugs.

To keep this message short, more infos are available @
https://wiki.documentfoundation.org/QA/NeedinfoClosure#Statement

Thanks for understanding and hopefully updating your bug, so that everything is
prepared for developers to fix your problem.

Yours!

Florian

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

Florian Reisinger  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||INVALID
 CC||reisi...@gmail.com

--- Comment #5 from Florian Reisinger  2012-08-14 13:57:45 
UTC ---
Dear bug submitter!

Due to the fact, that there are a lot of NEEDINFO bugs with no answer within
the last six months, we close all of these bugs.

To keep this message short, more infos are available @
https://wiki.documentfoundation.org/QA/NeedinfoClosure#Statement

Thanks for understanding and hopefully updating your bug, so that everything is
prepared for developers to fix your problem.

Yours!

Florian

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2012-01-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

--- Comment #4 from Benjamin Riefenstahl  2012-01-02 
01:40:50 PST ---
In our case we create the RTF with Apache FOP, see
.   We can
work-around the issue there, but according to my understanding of the spec that
I found at , this seems to
be a problem in LibreOffice.

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39001

Björn Michaelsen  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #3 from Björn Michaelsen  
2011-12-23 12:21:14 PST ---
[This is an automated message.]
This bug was filed before the changes to Bugzilla on 2011-10-16. Thus it
started right out as NEW without ever being explicitly confirmed. The bug is
changed to state NEEDINFO for this reason. To move this bug from NEEDINFO back
to NEW please check if the bug still persists with the 3.5.0 beta1 or beta2
prereleases.
Details on how to test the 3.5.0 beta1 can be found at:
http://wiki.documentfoundation.org/QA/BugHunting_Session_3.5.0.-1

more detail on this bulk operation:
http://nabble.documentfoundation.org/RFC-Operation-Spamzilla-tp3607474p3607474.html

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


[Libreoffice-bugs] [Bug 39001] Inserts a blank page at the end of all RTF documents

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #2 from Jean-Baptiste Faure  2011-12-18 
04:26:30 PST ---
If I open example.rtf with LO 3.5.0 beta-1 I get indeed 4 pages.
But, if I create a text document with 2 pages in ODF format and then save this
doc as RTF file, I get 2 pages as expected when I reopen the RTF file.
I do not have MS-Office to test a document produced by MS-Word in RTF format.

@Ron: please provide a description step by step how you produced this RTF file.

Side notes:
1/ Abiword 2.5.8 see only one page; it does not detect or handle the page break
2/ In my RTF file I do not see any \sect nor \sbkpage

Best regards. JBF

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