-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from OP-TED/release/0.9.0
Release/0.9.0
- Loading branch information
Showing
17 changed files
with
6,261 additions
and
85 deletions.
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
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 |
---|---|---|
@@ -1,20 +1,19 @@ | ||
# eForms Notice Viewer 0.8.0 - Release Notes | ||
# eForms Notice Viewer 0.9.0 - Release Notes | ||
|
||
_The eForms Notice Viewer is a sample command line application that demonstrates how you can use the [eForms SDK](https://github.com/OP-TED/eForms-SDK) in a metadata driven application that visualises eForms notices._ | ||
|
||
--- | ||
## In this release: | ||
|
||
- Fixed several bugs. | ||
- Improved unit testing. | ||
- Refactored the NoticeViewer class to improve code clarity. | ||
- Added support for improved numeric formatting provided by EFX Toolkit 1.3.0. | ||
- Added support for improved rendering of multilingual text fields provided by EFX Toolkit 1.3.0 | ||
This is the first version of the Notice Viewer, that uses the new, pre-release version 2.0.0-alpha.1 of the EFX Toolkit. As a result, the application: | ||
|
||
--- | ||
- Now supports EFX-2 templates, and therefore can visualise notices created with SDK-2. | ||
- Can no longer visualise notices created with pre-release versions of SDK-1 (SDK 0.x.x). | ||
|
||
--- | ||
|
||
Documentation for this sample application is available at: https://docs.ted.europa.eu/eforms/latest/notice-viewer | ||
|
||
This version depends on: | ||
- [EFX toolkit for Java](https://github.com/OP-TED/efx-toolkit-java) version 1.3.0. | ||
- [EFX toolkit for Java](https://github.com/OP-TED/efx-toolkit-java) version 2.0.0-alpha.1. | ||
- [eForms Core for Java](https://github.com/OP-TED/eforms-core-java) library version 1.0.5. |
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
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
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
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
11 changes: 8 additions & 3 deletions
11
src/main/resources/templates/xsl_markup/fragment_invocation.ftl
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 |
---|---|---|
@@ -1,9 +1,14 @@ | ||
<#-- | ||
Available variables: | ||
- context: Context path | ||
- name: Content block ID | ||
- name: Content block identifier | ||
- context: Context XPath | ||
- variables: Lits of additional variables (optional) | ||
--> | ||
|
||
<xsl:for-each select="${context}"> | ||
<xsl:call-template name="${name}"/> | ||
<xsl:call-template name="${name}"> | ||
<#list variables as variable> | ||
<xsl:with-param name="${variable[0]}" select = "${variable[1]}" /> | ||
</#list> | ||
</xsl:call-template> | ||
</xsl:for-each> |
Oops, something went wrong.