-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated to openPDF 2.0.2 #662
Merged
angelozerr
merged 7 commits into
opensagres:master
from
bgoorden:Update-to-OpenPDF-2.0.2
May 27, 2024
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5f5179b
Updated to openPDF 2.0.2
bgoordenp da6c573
Update maven workflow to use java 17
bgoordenp 45edec0
Updates to run build with jdk 17
bgoordenp 858834e
Using java 17 version for codeql analysis with update to openpdf 2.0
bgoordenp 5d4247a
Set release version to compile to java 8
bgoordenp fee91c9
Set compile target and source to java 17
bgoordenp 29be2fb
Updated maven bundle plugin
bgoordenp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,16 +24,11 @@ | |
*/ | ||
package fr.opensagres.odfdom.converter.pdf.internal.stylable; | ||
|
||
import java.util.ArrayList; | ||
import java.util.LinkedHashMap; | ||
import java.util.Map; | ||
|
||
import com.lowagie.text.Chunk; | ||
import com.lowagie.text.Element; | ||
import com.lowagie.text.Font; | ||
import com.lowagie.text.Paragraph; | ||
import com.lowagie.text.pdf.BaseFont; | ||
|
||
import fr.opensagres.odfdom.converter.core.utils.ODFUtils; | ||
import fr.opensagres.odfdom.converter.pdf.internal.styles.Style; | ||
import fr.opensagres.odfdom.converter.pdf.internal.styles.StyleBreak; | ||
|
@@ -42,6 +37,10 @@ | |
import fr.opensagres.odfdom.converter.pdf.internal.styles.StyleTextProperties; | ||
import fr.opensagres.xdocreport.openpdf.extension.ExtendedParagraph; | ||
|
||
import java.util.ArrayList; | ||
import java.util.LinkedHashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* fixes for paragraph pdf conversion by Leszek Piotrowicz <[email protected]> | ||
*/ | ||
|
@@ -249,9 +248,9 @@ private void postProcessBookmarks() | |
|
||
Chunk lastChunk = (Chunk) elements.get( elements.size() - 1 ); | ||
String localDestination = null; | ||
if ( lastChunk.getAttributes() != null ) | ||
if ( lastChunk.getChunkAttributes() != null ) | ||
{ | ||
localDestination = (String) lastChunk.getAttributes().get( Chunk.LOCALDESTINATION ); | ||
localDestination = (String) lastChunk.getChunkAttributes().get( Chunk.LOCALDESTINATION ); | ||
} | ||
if ( localDestination != null ) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
XDocReport is working with Java 8 , why you need Java 17?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Java 17 is required for OpenPDF 2.0.0 or later. The build for this pull request fails with java 8. If we want to upgrade openpdf, I don't think there is another way than to upgrade the minimum java requirement for XDocReport. Of course I'm not sure if losing java 8 support is acceptable for this project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No sorry, there are so many people who are using XDocReport with old Java version. We need to keep it.
@pascalleclercq do you know if we could build only the module of OpenPDF 2.0.0 with Java 17?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The maven compiler plugin is still set to version 1.7. So if we compile with java 17, XDocReport should still be compatible with java 8, unless you use the openpdf modules of course, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the changes that would be needed to run the tests with jdk17.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry but the people staying on Java 8 just have to use the old Version of those libraries. For those who keep up to date there should be a release for OpenPDF 2.
You also could make separate Releases for Java 8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You speak about PDF converter, but XDocReport provides another feature like report generation.