mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-10-04 11:26:44 -04:00
Cleaning up documentation. Renamed package.html to package_info.java.
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
<HTML>
|
||||
|
||||
<BODY>
|
||||
Contains various image-outputting servlets, that should run under any servlet engine. To create your own image servlet, simply subclass the servlet
|
||||
<CODE>ImageServlet</CODE>. Optionally implement the interface
|
||||
<CODE>ImagePainterServlet</CODE>, if you want to do painting.
|
||||
<P>
|
||||
Some of these methods may require use of the native graphics libraries
|
||||
supported by the JVM, like the X libraries on Unix systems, and should be
|
||||
run with JRE <STRONG>1.4</STRONG> or later, and with the option:
|
||||
<DL>
|
||||
<DD><CODE>-Djawa.awt.headless=true</CODE></DD>
|
||||
</DL>
|
||||
See the document
|
||||
<A href="http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless">AWT Enhancements</A> and bugtraq report
|
||||
<A href="http://developer.java.sun.com/developer/bugParade/bugs/4281163.html">4281163</A> for more information on this issue.
|
||||
<P>
|
||||
If you cannot use JRE 1.4 for any reason, or do not want to use the X
|
||||
libraries, a possibilty is to use the
|
||||
<A href="http://www.eteks.com/pja/en/">PJA package</A> (com.eteks.pja),
|
||||
and start the JVM with the following options:
|
||||
<DL>
|
||||
<DD><CODE>-Xbootclasspath/a:<path to pja.jar></CODE></DD>
|
||||
<DD><CODE>-Dawt.toolkit=com.eteks.awt.PJAToolkit</CODE></DD>
|
||||
<DD><CODE>-Djava.awt.graphicsenv=com.eteks.java2d.PJAGraphicsEnvironment</CODE></DD>
|
||||
<DD><CODE>-Djava.awt.fonts=<path where True Type fonts files will be loaded from></CODE></DD>
|
||||
</DL>
|
||||
<P>
|
||||
Please note that creation of PNG images (from bytes or URL's) are only
|
||||
supported in JRE 1.3 and later, trying to load them from an earlier version,
|
||||
will result in errors.
|
||||
|
||||
@see com.twelvemonkeys.servlet.image.ImageServlet
|
||||
@see com.twelvemonkeys.servlet.image.ImagePainterServlet
|
||||
|
||||
</BODY>
|
||||
|
||||
</HTML>
|
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* Contains various image-outputting servlets, that should run under any servlet engine. To create your own image servlet, simply subclass the servlet
|
||||
* {@code ImageServlet}. Optionally implement the interface
|
||||
* {@code ImagePainterServlet}, if you want to do painting.
|
||||
* <P>
|
||||
* Some of these methods may require use of the native graphics libraries
|
||||
* supported by the JVM, like the X libraries on Unix systems, and should be
|
||||
* run with JRE <STRONG>1.4</STRONG> or later, and with the option:
|
||||
* <DL>
|
||||
* <DD>{@code -Djawa.awt.headless=true}</DD>
|
||||
* </DL>
|
||||
* See the document
|
||||
* <A href="http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless">AWT Enhancements</A> and bugtraq report
|
||||
* <A href="http://developer.java.sun.com/developer/bugParade/bugs/4281163.html">4281163</A> for more information on this issue.
|
||||
* <P>
|
||||
* If you cannot use JRE 1.4 for any reason, or do not want to use the X
|
||||
* libraries, a possibilty is to use the
|
||||
* <A href="http://www.eteks.com/pja/en/">PJA package</A> (com.eteks.pja),
|
||||
* and start the JVM with the following options:
|
||||
* <DL>
|
||||
* <DD>{@code -Xbootclasspath/a:<path to pja.jar>}</DD>
|
||||
* <DD>{@code -Dawt.toolkit=com.eteks.awt.PJAToolkit}</DD>
|
||||
* <DD>{@code -Djava.awt.graphicsenv=com.eteks.java2d.PJAGraphicsEnvironment}</DD>
|
||||
* <DD>{@code -Djava.awt.fonts=<path where True Type fonts files will be loaded from>}</DD>
|
||||
* </DL>
|
||||
* <P>
|
||||
* Please note that creation of PNG images (from bytes or URL's) are only
|
||||
* supported in JRE 1.3 and later, trying to load them from an earlier version,
|
||||
* will result in errors.
|
||||
*
|
||||
* @see com.twelvemonkeys.servlet.image.ImageServlet
|
||||
* @see com.twelvemonkeys.servlet.image.ImagePainterServlet
|
||||
*/
|
||||
package com.twelvemonkeys.servlet.image;
|
@@ -1,14 +0,0 @@
|
||||
<HTML>
|
||||
|
||||
<BODY>
|
||||
Dynamo Droplet-like functionality for JSP.
|
||||
|
||||
This package is early beta, not for commercial use! :-)
|
||||
Read: The interfaces and classes in this package (and subpackages) will be
|
||||
developed and modified for a while.
|
||||
|
||||
TODO: Insert taglib-descriptor here?
|
||||
|
||||
</BODY>
|
||||
|
||||
</HTML>
|
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* Dynamo Droplet-like functionality for JSP.
|
||||
*
|
||||
* This package is early beta, not for commercial use! :-)
|
||||
* Read: The interfaces and classes in this package (and subpackages) will be
|
||||
* developed and modified for a while.
|
||||
*
|
||||
* TODO: Insert taglib-descriptor here?
|
||||
*/
|
||||
package com.twelvemonkeys.servlet.jsp.droplet;
|
@@ -1,7 +0,0 @@
|
||||
<HTML>
|
||||
|
||||
<BODY>
|
||||
JSP
|
||||
</BODY>
|
||||
|
||||
</HTML>
|
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* JSP support.
|
||||
*/
|
||||
package com.twelvemonkeys.servlet.jsp;
|
@@ -1,7 +0,0 @@
|
||||
<HTML>
|
||||
|
||||
<BODY>
|
||||
The TwelveMonkeys common TagLib.
|
||||
</BODY>
|
||||
|
||||
</HTML>
|
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* The TwelveMonkeys common TagLib.
|
||||
*/
|
||||
package com.twelvemonkeys.servlet.jsp.taglib;
|
@@ -1,7 +0,0 @@
|
||||
<HTML>
|
||||
|
||||
<BODY>
|
||||
Contains servlet support classes.
|
||||
</BODY>
|
||||
|
||||
</HTML>
|
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Contains servlet support classes.
|
||||
*/
|
||||
package com.twelvemonkeys.servlet;
|
Reference in New Issue
Block a user