Skip to content

Commit bc62981

Browse files
committed
1.4.2-rc.001 (2023-08-01)
+ [fj-doc-mode-fop] Fix spacing handling for table
1 parent c59cdf4 commit bc62981

File tree

26 files changed

+36
-30
lines changed

26 files changed

+36
-30
lines changed

docgen/parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title" : "Venus (Fugerit Document Generation Framework)",
33
"name": "Venus",
4-
"version" : "1.4.1-rc.002",
4+
"version" : "1.4.2-rc.001",
55
"date" : "31/07/2023",
66
"organization" : {
77
"name" : "Fugerit Org",

docgen/release-notes.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1.4.1-rc.002 (2023-07-31)
1+
1.4.2-rc.001 (2023-08-01)
2+
------------------
3+
+ [fj-doc-mode-fop] Fix spacing handling for table
4+
5+
1.4.1-rc.002 (2023-07-31)
26
------------------
37
+ Updated fj-core version to 8.0.12-rc.001
48

fj-doc-base-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-base-json</name>

fj-doc-base-yaml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-base-yaml</name>

fj-doc-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-base</name>

fj-doc-base/src/main/java/org/fugerit/java/doc/base/model/DocInfo.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public class DocInfo extends DocElement {
3838
*/
3939
private static final long serialVersionUID = 1258119296671751462L;
4040

41+
public static final String TAG_NAME = "info";
42+
4143
public static final String INFO_NAME_CSS_LINK = "html-css-link";
4244

4345
public static final String INFO_NAME_CSS_STYLE = "html-css-style";

fj-doc-base/src/main/java/org/fugerit/java/doc/base/parser/DocParserContext.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,28 +121,28 @@ public void handleStartElement( String qName, Properties props ) {
121121
this.docBase = new DocBase();
122122
String xsdVersion = findXsdVersion(props);
123123
this.docBase.setXsdVersion( xsdVersion );
124-
} else if ( "meta".equalsIgnoreCase( qName ) || "metadata".equalsIgnoreCase( qName ) ) {
124+
} else if ( DocContainer.TAG_NAME_META.equalsIgnoreCase( qName ) || DocContainer.TAG_NAME_METADATA.equalsIgnoreCase( qName ) ) {
125125
DocContainer docMeta = this.docBase.getDocMeta();
126126
this.currentElement = docMeta;
127-
} else if ( "info".equalsIgnoreCase( qName ) ) {
127+
} else if ( DocInfo.TAG_NAME.equalsIgnoreCase( qName ) ) {
128128
DocInfo docInfo = new DocInfo();
129129
docInfo.setName( props.getProperty( "name" ) );
130130
this.currentElement = docInfo;
131-
} else if ( "header".equalsIgnoreCase( qName ) || "header-ext".equalsIgnoreCase( qName ) ) {
131+
} else if ( DocHeader.TAG_NAME.equalsIgnoreCase( qName ) || DocHeader.TAG_NAME_EXT.equalsIgnoreCase( qName ) ) {
132132
DocHeader docHeader = this.docBase.getDocHeader();
133133
handleHeaderFooter( docHeader , props );
134134
docHeader.setUseHeader( true );
135-
if ( "header-ext".equalsIgnoreCase( qName ) ) {
135+
if ( DocHeader.TAG_NAME_EXT.equalsIgnoreCase( qName ) ) {
136136
docHeader.setBasic( false );
137137
} else {
138138
docHeader.setBasic( true );
139139
}
140140
this.currentElement = docHeader;
141-
} else if ( "footer".equalsIgnoreCase( qName ) || "footer-ext".equalsIgnoreCase( qName ) ) {
141+
} else if ( DocFooter.TAG_NAME.equalsIgnoreCase( qName ) || DocFooter.TAG_NAME_EXT.equalsIgnoreCase( qName ) ) {
142142
DocFooter docFooter = this.docBase.getDocFooter();
143143
handleHeaderFooter( docFooter , props );
144144
docFooter.setUseFooter( true );
145-
if ( "footer-ext".equalsIgnoreCase( qName ) ) {
145+
if ( DocFooter.TAG_NAME_EXT.equalsIgnoreCase( qName ) ) {
146146
docFooter.setBasic( false );
147147
} else {
148148
docFooter.setBasic( true );

fj-doc-bom-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-bom-core</name>

fj-doc-bom-fop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-bom-fop</name>

fj-doc-freemarker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>1.4.1-rc.002</version>
10+
<version>1.4.2-rc.001</version>
1111
</parent>
1212

1313
<name>fj-doc-freemarker</name>

0 commit comments

Comments
 (0)