68
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Apr 26, 2023 — Apr 26, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
add back jdk version to MANIFEST.MF More... 4 months ago
remove @timestamps@ from version.properties More... 4 months ago
README: Added note about building distribution artifacts. More... 4 months ago
Merge branch 'apache:2.3-gae' into make-build-reproducible More... 4 months ago
improve timestamps and permissions for jar outputs More... 4 months ago
remove @ tokens in comments of version.properties More... 4 months ago
only set file timestamps and permissions for jar More... 4 months ago
hardcode buildTimestamp for reproducibility More... 4 months ago
Actually updated dependencies to Servlet 3.0 and JSP 2.2. (Also, some minor code cleanup.) More... 4 months ago
Dropped support for very old Servlet and JSP versions, and now requiring at least Servlet 3.0 and JSP 2.2. This way, we only need to support a single javax Servlet/JSP version, and could remove the complications from supporting multiple old versions. Also, with this, the "jsp20" and "jsp21" Gradle configurations were unified as "javaxServlet" (because later we want to have "jakartaServlet" too). More... 4 months ago
Build: Map camel case configuration names to dashed directory names. (So when we will have "javaxServlet", that will be mapped to "freemarker-javax-servlet", rather than to "freemarker-javaxServlet".) More... 4 months ago
FREEMARKER-219: The truncate family of built-ins, as in maybeLong?truncate(10, ''), if the terminator string is set to 0 length, now it will not add a space before the terminator string when the cut happened exactly after the end of a word. Also, improved truncate-related documentation. More... 4 months ago
add gradle plugin to auto download JDKs needed fo build More... 4 months ago
try to make build reproducible More... 4 months ago
Build: Include gradlew related files in the source distro, except the jar. Mention this in the README. More... 4 months ago
README: Gradle must run on at least Java 16, or else it couldn't find the JDK 16 toolchain. More... 4 months ago
Added some more help to gradle.properties. Minor README adjustments. More... 4 months ago
Removed references to zh_CN manual, that was removed for a while. More... 4 months ago
#79 Gradle: Added to version history More... 4 months ago
Merge pull request #79 from kelemen/FREEMARKER-204-gradle-build More... 4 months ago
Updated the README to reflect the build changes. More... 4 months ago
Signature configuration is now more configurable via the `freemarker.signMethod` property. The possible values are: none, gradle_properties, gpg_command. More... 4 months ago
It is now possible to pass the credentials for deploying into the Apache Maven repository. More... 4 months ago
Refactored Java version configuration management. More... 4 months ago
No longer using the deprecated org.gradle.api.Project.buildDir More... 4 months ago
Upgraded build to Gradle 8.5. More... 4 months ago
Removed Javadoc style adjustments. More... 4 months ago
Merge pull request #89 from nolaviz/nolaviz-patch1 More... 4 months ago
PR #89 TemplateProcessingTracer reworked: - Instead of passing several arguments to the TemplateProcessingTracer method, only pass a single TracedElement object. This allow use to add new methods later without breaking backward compatibility. - Added TracedElement.getDescription() to give a single-line canonical description of the element (same format that we use in FTL stack taces) - Expose the Environment object to TemplateProcessingTracer methods - Do not expose the TracedElement to exitElement, because we can't always ensure that it's available because of some internal tricks - Added special branch to iterator directives and if-elseif-else, as because of the element stack tricks they apply normally, some elements were hidden from the tracer - Some minor renaming. - Added getter to Environment. - Extended test coverage, and fixed quotation logic in the test (it was broken for example for ?interpret-ed snippets) - Added more documentation More... 4 months ago
For PR #88 forceAutoEscape: Documentation More... 4 months ago