Skip to content

Commit 34b1107

Browse files
committed
0.3.3.3 (2021-02-01)
-------------------- + Added some dirext xml api call + Removed some depecrated call to apache POI
1 parent d39fd59 commit 34b1107

File tree

13 files changed

+26
-12
lines changed

13 files changed

+26
-12
lines changed

docgen/parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title" : "Venus (Fugerit Document Generation Framework)",
33
"name": "Venus",
44
"version" : "0.3.3.3",
5-
"date" : "XX/01/2021",
5+
"date" : "01/02/2021",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
0.3.3.3 (2021-01-XX)
1+
0.3.3.3 (2021-02-01)
22
--------------------
3+
+ Added some dirext xml api call
34
+ Removed some depecrated call to apache POI
45

56
0.3.3.2 (2021-01-07)

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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

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

fj-doc-base/src/main/java/org/fugerit/java/doc/base/facade/DocHandlerFacade.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package org.fugerit.java.doc.base.facade;
22

3+
import java.io.OutputStream;
4+
import java.io.Reader;
35
import java.io.Serializable;
46
import java.util.Collection;
57
import java.util.HashMap;
@@ -84,6 +86,17 @@ public void handle( DocInput docInput, DocOutput docOutput ) throws Exception {
8486
throw new ConfigException( "DocHandlerFacade - No handler defined for type : "+type );
8587
}
8688
}
89+
90+
public void direct( Reader xml, String type, DocOutput docOutput ) throws Exception {
91+
DocInput docInput = DocInput.newInput( type , xml );
92+
this.handle( docInput , docOutput);
93+
}
94+
95+
public void direct( Reader xml, String type, OutputStream os ) throws Exception {
96+
DocInput docInput = DocInput.newInput( type , xml );
97+
DocOutput docOutput = DocOutput.newOutput( os );
98+
this.handle( docInput , docOutput );
99+
}
87100

88101
public DocTypeHandler findHandler( String id ) {
89102
return this.mapHandlers.get( id );

fj-doc-ent/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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

1313
<name>fj-doc-ent</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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

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

fj-doc-mod-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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

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

fj-doc-mod-itext/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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

1313
<name>fj-doc-mod-itext</name>

fj-doc-mod-jxl/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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

1313
<name>fj-doc-mod-jxl</name>

fj-doc-mod-pdfbox/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>0.3.3.2</version>
10+
<version>0.3.3.3</version>
1111
</parent>
1212

1313
<name>fj-doc-mod-pdfbox</name>

0 commit comments

Comments
 (0)