Cleaning up documentation. Renamed package.html to package_info.java.

This commit is contained in:
Harald Kuhr
2009-10-21 18:43:49 +02:00
parent ac68a31c36
commit 1c22280f51
45 changed files with 286 additions and 324 deletions

View File

@@ -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:&lt;path to pja.jar&gt;</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=&lt;path where True Type fonts files will be loaded from&gt;</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>

View File

@@ -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:&lt;path to pja.jar&gt;}</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=&lt;path where True Type fonts files will be loaded from&gt;}</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;

View File

@@ -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>

View File

@@ -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;

View File

@@ -1,7 +0,0 @@
<HTML>
<BODY>
JSP
</BODY>
</HTML>

View File

@@ -0,0 +1,4 @@
/**
* JSP support.
*/
package com.twelvemonkeys.servlet.jsp;

View File

@@ -1,7 +0,0 @@
<HTML>
<BODY>
The TwelveMonkeys common TagLib.
</BODY>
</HTML>

View File

@@ -0,0 +1,4 @@
/**
* The TwelveMonkeys common TagLib.
*/
package com.twelvemonkeys.servlet.jsp.taglib;

View File

@@ -1,7 +0,0 @@
<HTML>
<BODY>
Contains servlet support classes.
</BODY>
</HTML>

View File

@@ -0,0 +1,4 @@
/**
* Contains servlet support classes.
*/
package com.twelvemonkeys.servlet;