~ubuntu-branches/ubuntu/lucid/libjxp-java/lucid

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, gregor herrmann, tony mancill
  • Date: 2009-08-19 17:37:16 UTC
  • Revision ID: james.westby@ubuntu.com-20090819173716-md9ibid0224vhyh8
Tags: 1.6.1-1
[ 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).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: libjxp-java
 
2
Section: java
 
3
Priority: extra
 
4
Maintainer: gregor herrmann <gregoa@debian.org>
 
5
Uploaders: tony mancill <tmancill@debian.org>
 
6
Build-Depends: debhelper (>= 5), ant, quilt
 
7
Build-Depends-Indep: default-jdk-builddep, junit, libcommons-fileupload-java,
 
8
 libonemind-commons-java-java, libonemind-commons-invoke-java, junit, ant-optional
 
9
Standards-Version: 3.8.3
 
10
Homepage: http://jxp.sourceforge.net/
 
11
Vcs-Svn: http://svn.toastfreeware.priv.at/debian/libjxp-java/trunk/
 
12
Vcs-Browser: http://svn.toastfreeware.priv.at/wsvn/ToastfreewareDebian/libjxp-java
 
13
 
 
14
Package: libjxp-java
 
15
Architecture: all
 
16
Depends: default-jre-headless | java-runtime-headless
 
17
Description: Java template engine/script processor
 
18
 Jxp (Java scripted page) is a script-processor that process JSP-like files.
 
19
 It contains a parser to parse the script file into an abstract syntax tree
 
20
 and a tree processor (JxpProcessor) that will process the syntax tree to
 
21
 execute the code using reflection API to produce output. The main uses of Jxp
 
22
 are:
 
23
 .
 
24
   * as a script language engine to increase flexibility in the user
 
25
     application
 
26
   * as a template engine to produce dynamic text output
 
27
 .
 
28
 Some of the main features of Jxp include:
 
29
 .
 
30
   * Java as script/template language. Why learn another one? ;)
 
31
   * Run JSP-like code outside of servlet container
 
32
   * support common java language 1.4 constructs (partial 1.5 syntax support
 
33
     on jdk 1.4)
 
34
   * support common JSP constructs including import directive, declaration, EL
 
35
     etc (taglib not supported, yet)
 
36
   * practical template sources management framework
 
37
   * support caching of parsed syntax tree to eliminate reparse of template
 
38
   * a servlet implementation to enable web-scripting
 
39
   * extensible processing context for defining built-in function on the
 
40
     scripts