freemarker icon indicating copy to clipboard operation
freemarker copied to clipboard

Apache Freemarker

Results 15 freemarker issues
Sort by recently updated
recently updated
newest added

> :warning: This PR is on top of #80 (Ported JIRA-204 Gradle build to version 3)

In addition to the port: This also makes `SimpleCharStream` (generated by javacc) package private (as was intended).

For easier review: - Many files were moved around for easier compilation (i.e., there is no need to add file filters due to different dependencies) - Most files were just...

More or less a test to run the ant build on each push using github actions.

Related to: https://issues.apache.org/jira/browse/FREEMARKER-177

many open source projects depend on Freemarker. They initialize Freemarker by calling the default Configuration constructor. e.g. JODReports. The default constructor - new Configuration() has built API enabled and can...

## What This PR is to make it possible to import freemarker in a [bndtools](https://github.com/bndtools/bnd) Eclipse project (OSGI). See https://bndtools.org/concepts.html This allows for easier debugging and development when you are...

The existing logic is all-or-nothing: either an output format permits mixed content, in which case output of any other format may be interspersed in it, or it does not -...

The current `switch` directive is not recommended due to its fall-through behavior being regarded as error-prone. To solve this problem, we introduce a new `on` directive as an alternative to...

Since Java 7 `StandardCharsets` can be used for standard charsets. It prevents the unnecessary lookup of the charset and in addition no `UnsupportedEncodingException` can be thrown.