libjxp-java 1.6.1-6.1 source package in Ubuntu

Changelog

libjxp-java (1.6.1-6.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Fri, 08 Jan 2021 14:12:32 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe java
Noble release universe java
Mantic release universe java
Lunar release universe java
Jammy release universe java

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libjxp-java_1.6.1-6.1.dsc 2.1 KiB edd8a938349a6ce170909b8c6220b22c441d47f3ba731c71c58a649ae832d8e1
libjxp-java_1.6.1.orig.tar.gz 117.0 KiB 72521a2d97054c15100979e90889da54012e59724bccfd436071a5d6c94a8903
libjxp-java_1.6.1-6.1.debian.tar.xz 4.5 KiB 91908a2dc8142aefa320aa3367915288245850d9cdba02751fb77c0993defbde

Available diffs

No changes file available.

Binary packages built by this source

libjxp-java: Java template engine/script processor

 Jxp (Java scripted page) is a script-processor that process JSP-like files.
 It contains a parser to parse the script file into an abstract syntax tree
 and a tree processor (JxpProcessor) that will process the syntax tree to
 execute the code using reflection API to produce output. The main uses of Jxp
 are:
 .
   * as a script language engine to increase flexibility in the user
     application
   * as a template engine to produce dynamic text output
 .
 Some of the main features of Jxp include:
 .
   * Java as script/template language. Why learn another one? ;)
   * Run JSP-like code outside of servlet container
   * support common java language 1.4 constructs (partial 1.5 syntax support
     on jdk 1.4)
   * support common JSP constructs including import directive, declaration, EL
     etc (taglib not supported, yet)
   * practical template sources management framework
   * support caching of parsed syntax tree to eliminate reparse of template
   * a servlet implementation to enable web-scripting
   * extensible processing context for defining built-in function on the
     scripts