Skip to content

Commit b864a82

Browse files
committed
[RELEASE] iText 7 pdfHTML - 3.0.4
https://github.com/itext/i7j-pdfhtml/releases/tag/3.0.4 * release_branch: [RELEASE] pdfHTML 3.0.4 Add a test on NPE while updating layout box of flex element Add overflow tests Remove TODO related to already closed ticket Add message logging for not supported flex-related properties Support collapsing margins for flex container Apply overflow: visible on anonymous flex items Add a test on max-height Remove redundant TODOs. Update cmps Update cmp files and their names Add missing copyright headers Reorganize AbsoluteNonReplacedWidth and PositionRelative tests Replace html2pdf-private tests Replace html2pdf-private tests: CssOpacityTest Add missing copyright headers Add flexbox-basic and flexbox-sizing tests Fix a long name issue Add missing copyright headers Add integration tests for flex algorithm Make FlexContainer be default-accessed Update cmps after a fix of flex container's width Support justify-content and align-tems properties Replace html2pdf-private tests: TextPropertiesTest Add a test on processing of simultaneous page-break avoid and page-break always Add missing copyright headers Add flex-aspect-ratio-img-column and flex-aspect-ratio-img-row tests Replace html2pdf-private tests: PsedoElementsTest Add missing copyright headers Add flexbox-align-items and flexbox-definite-sizes tests Add missing copyright headers Reorganize FunctionalCalligraphTest Implement display:flex's tagWorker and cssAppliers Add missing copyright headers Add flexbox align-items and overflow tests Replace html2pdf-private tests: ImagesDpiTest Replace html2pdf-private tests: ClearTest Replace html2pdf-private tests: VerticalAlignmetTest and RgbaTest Add missing copyright headers Add direction tests Add test for table with wrong colspan value Replace html2pdf-private test: PageBreakTest Replace html2pdf-private tests: BoxSizingTest Add test for Tag Structure flushing error for pdf converted from html Replace BackgroundImageTest from html2pdf-private Replace tests from html2pdf-private element#ImageTest Support 'display:inline-block' for 'label' tag Add missing copyright headers Reorganize tests Add missing copyright headers Add flexbox-justify-content tests Edit name in some tests Test files cmp update Update tests after validator improvements Add missing copyright headers Add flexbox tests Add missing copyright headers Add w3c flexbox tests starting with flexbox_flex Add a test to demonstrate the issue with rowspan and column widths Add missing copyright headers Fix javadoc documentation message [AFTER RELEASE] pdfHTML 3.0.3 Add missing copyright headers Make SvgTagWorker constructor logging more clear
2 parents f9c8af0 + 7622984 commit b864a82

File tree

3,396 files changed

+26263
-3502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,396 files changed

+26263
-3502
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>7.1.14</version>
8+
<version>7.1.15</version>
99
<relativePath />
1010
</parent>
1111

1212
<artifactId>html2pdf</artifactId>
13-
<version>3.0.3</version>
13+
<version>3.0.4</version>
1414

1515
<name>pdfHTML</name>
1616
<description>pdfHTML is an iText 7 add-on that lets you to parse (X)HTML snippets and the associated CSS and converts

src/main/java/com/itextpdf/html2pdf/ConverterProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/Html2PdfProductInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/HtmlConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/LogMessageConstant.java

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify
@@ -75,6 +75,9 @@ public final class LogMessageConstant {
7575
public static final String EXCEEDED_THE_MAXIMUM_NUMBER_OF_RELAYOUTS = "Exceeded the maximum number of relayouts. " +
7676
"The resultant document may look not as expected. " +
7777
"Because of the content being dynamic iText performs several relayouts to produce correct document.";
78+
/** The constant FLEX_PROPERTY_IS_NOT_SUPPORTED_YET. */
79+
public static final String FLEX_PROPERTY_IS_NOT_SUPPORTED_YET =
80+
"Flex related property {0}: {1} is not supported yet.";
7881
/** The Constant INPUT_FIELD_DOES_NOT_FIT. */
7982
public static final String INPUT_FIELD_DOES_NOT_FIT = "Input field doesn't fit in outer object. It will be clipped";
8083
/** The Constant INPUT_TYPE_IS_INVALID. */
@@ -115,8 +118,15 @@ public final class LogMessageConstant {
115118
public static final String HSL_COLOR_NOT_SUPPORTED = "Hsl colors are not supported";
116119
/** The Constant UNABLE_TO_PROCESS_EXTERNAL_CSS_FILE. */
117120
public static final String UNABLE_TO_PROCESS_EXTERNAL_CSS_FILE = "Unable to process external css file";
118-
/** The Constant UNABLE_TO_PROCESS_IMAGE_AS_SVG */
121+
/**
122+
* The Constant UNABLE_TO_PROCESS_IMAGE_AS_SVG.
123+
*
124+
* @deprecated will be removed in iText 7.2, use {@link #UNABLE_TO_PROCESS_SVG_ELEMENT}
125+
*/
126+
@Deprecated
119127
public static final String UNABLE_TO_PROCESS_IMAGE_AS_SVG = "Unable to process image found at {0} as an SVG";
128+
/** The Constant UNABLE_TO_PROCESS_SVG */
129+
public static final String UNABLE_TO_PROCESS_SVG_ELEMENT = "Unable to process an SVG element";
120130
/** The Constant UNABLE_TO_RESOLVE_COUNTER. */
121131
public static final String UNABLE_TO_RESOLVE_COUNTER = "Unable to resolve counter \"{0}\"";
122132
/** The Constant UNABLE_TO_RETRIEVE_FONT. */

src/main/java/com/itextpdf/html2pdf/attach/Attacher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/IHtmlProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/ITagWorker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/ITagWorkerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/ProcessorContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/State.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultHtmlProcessor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify
@@ -72,12 +72,14 @@ This file is part of the iText (R) project.
7272
import com.itextpdf.layout.Document;
7373
import com.itextpdf.layout.IPropertyContainer;
7474
import com.itextpdf.layout.element.Div;
75+
import com.itextpdf.layout.element.IElement;
7576
import com.itextpdf.layout.font.FontFamilySplitter;
7677
import com.itextpdf.layout.font.FontInfo;
7778
import com.itextpdf.layout.font.Range;
7879
import com.itextpdf.layout.property.Property;
7980
import com.itextpdf.layout.property.RenderingMode;
8081
import com.itextpdf.layout.renderer.DocumentRenderer;
82+
import com.itextpdf.layout.renderer.FlexContainerRenderer;
8183
import com.itextpdf.styledxmlparser.css.CssDeclaration;
8284
import com.itextpdf.styledxmlparser.css.font.CssFontFace;
8385
import com.itextpdf.styledxmlparser.css.CssFontFaceRule;

src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerMapping.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify
@@ -51,6 +51,7 @@ This file is part of the iText (R) project.
5151
import com.itextpdf.html2pdf.attach.impl.tags.CaptionTagWorker;
5252
import com.itextpdf.html2pdf.attach.impl.tags.ColTagWorker;
5353
import com.itextpdf.html2pdf.attach.impl.tags.ColgroupTagWorker;
54+
import com.itextpdf.html2pdf.attach.impl.tags.DisplayFlexTagWorker;
5455
import com.itextpdf.html2pdf.attach.impl.tags.DisplayTableRowTagWorker;
5556
import com.itextpdf.html2pdf.attach.impl.tags.DisplayTableTagWorker;
5657
import com.itextpdf.html2pdf.attach.impl.tags.DivTagWorker;
@@ -202,13 +203,15 @@ class DefaultTagWorkerMapping {
202203
workerMapping.putMapping(TagConstants.A, CssConstants.TABLE_CELL, ABlockTagWorker.class);
203204

204205
workerMapping.putMapping(TagConstants.LABEL, CssConstants.BLOCK, DivTagWorker.class);
206+
workerMapping.putMapping(TagConstants.LABEL, CssConstants.INLINE_BLOCK, DivTagWorker.class);
205207

206208
workerMapping.putMapping(TagConstants.DIV, CssConstants.TABLE, DisplayTableTagWorker.class);
207209
workerMapping.putMapping(TagConstants.DIV, CssConstants.TABLE_ROW, DisplayTableRowTagWorker.class);
208210
workerMapping.putMapping(TagConstants.DIV, CssConstants.INLINE, SpanTagWorker.class);
209211
workerMapping.putMapping(TagConstants.DIV, CssConstants.INLINE_TABLE, DisplayTableTagWorker.class);
210212
workerMapping.putMapping(TagConstants.DIV, CssConstants.TABLE_CELL, TdTagWorker.class);
211-
213+
workerMapping.putMapping(TagConstants.DIV, CssConstants.FLEX, DisplayFlexTagWorker.class);
214+
workerMapping.putMapping(TagConstants.SPAN, CssConstants.FLEX, DisplayFlexTagWorker.class);
212215

213216
// pseudo elements mapping
214217
String beforePseudoElemName = CssPseudoElementUtil.createPseudoElementTagName(CssConstants.BEFORE);

src/main/java/com/itextpdf/html2pdf/attach/impl/LinkContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/OutlineHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/DimensionContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HeightDimensionContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify
@@ -60,7 +60,7 @@ This file is part of the iText (R) project.
6060
import java.util.Map;
6161

6262
/**
63-
* This handler draws backgrounds and borders for html, body and @page styles.
63+
* This handler draws backgrounds and borders for html, body and page-annotation styles.
6464
*/
6565
class HtmlBodyStylesApplierHandler implements IEventHandler {
6666

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreak.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreakType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxDummyElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: Bruno Lowagie, Paulo Soares, et al.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElementContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/html2pdf/attach/impl/layout/form/element/AbstractSelectField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)