libjxp-java 1.6.1-1 source package in Ubuntu

Changelog

libjxp-java (1.6.1-1) unstable; urgency=low

  [ gregor herrmann ]
  * Initial release (Closes: #519122)

  [ tony mancill ]
  * Include clarifying statement in debian/copyright regarding SPL
    licensed files now distributed under the BSD license.
  * debian/rules sets DISPLAY (needed for junit tests)

  [ gregor herrmann ]
  * Set Standards-Version to 3.8.3 (no changes).
 -- Ubuntu Archive Auto-Sync <email address hidden>   Thu,  19 Nov 2009 22:05:16 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Lucid
Original maintainer:
gregor herrmann
Architectures:
all
Section:
java
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe java

Builds

Lucid: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libjxp-java_1.6.1.orig.tar.gz 117.0 KiB 72521a2d97054c15100979e90889da54012e59724bccfd436071a5d6c94a8903
libjxp-java_1.6.1-1.diff.gz 4.4 KiB 08aa0639d0b782b3f0540bbb19d5c65fd4d0ec394c25d526f51f80d6c55b48c4
libjxp-java_1.6.1-1.dsc 1.3 KiB 821da65fd916f90f2a23c90913db60d058b7f75f38163a549cc53d1a225d7630

View changes file

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