Skip to content

Commit 854f599

Browse files
committed
now default chain in FreemarkerDocProcessConfig.newSimpleConfig() maps
all attributes to freemarker template.
1 parent dac3b95 commit 854f599

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- now default chain in FreemarkerDocProcessConfig.newSimpleConfig() maps all attributes to freemarker template.
13+
1014
## [3.0.5] - 2023-09-17
1115

1216
### Added

fj-doc-freemarker/src/main/java/org/fugerit/java/doc/freemarker/process/FreemarkerDocProcessConfigFacade.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static FreemarkerDocProcessConfig newSimpleConfig( String id, String temp
7676
FreeMarkerComplexProcessStep processStep = new FreeMarkerComplexProcessStep();
7777
Properties processAtts = new Properties();
7878
processAtts.setProperty( "template-path" , "${chainId}.ftl" );
79-
processAtts.setProperty( "map-atts" , "simpleTableModel" );
79+
processAtts.setProperty( FreeMarkerComplexProcessStep.ATT_MAP_ALL , BooleanUtils.BOOLEAN_TRUE );
8080
processStep.setCustomConfig( processAtts );
8181
processStep.setChainId( idChain );
8282
defaultChain.getFilterChain().add( processStep );

0 commit comments

Comments
 (0)