commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commit-cp] classpath ChangeLog doc/tools.texinfo


From: Thomas Fitzsimmons
Subject: [commit-cp] classpath ChangeLog doc/tools.texinfo
Date: Mon, 12 Jun 2006 00:58:33 +0000

CVSROOT:        /sources/classpath
Module name:    classpath
Changes by:     Thomas Fitzsimmons <fitzsim>    06/06/12 00:58:33

Modified files:
        .              : ChangeLog 
        doc            : tools.texinfo 

Log message:
        2006-06-11  Thomas Fitzsimmons  <address@hidden>
        
                * doc/tools.texinfo
                (Applet Tools): New chapter.
                (appletviewer Tool): New section.
                (gcjwebplugin): New section.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7773&r2=1.7774
http://cvs.savannah.gnu.org/viewcvs/classpath/doc/tools.texinfo?cvsroot=classpath&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/classpath/classpath/ChangeLog,v
retrieving revision 1.7773
retrieving revision 1.7774
diff -u -b -r1.7773 -r1.7774
--- ChangeLog   11 Jun 2006 22:02:13 -0000      1.7773
+++ ChangeLog   12 Jun 2006 00:58:31 -0000      1.7774
@@ -1,3 +1,10 @@
+2006-06-11  Thomas Fitzsimmons  <address@hidden>
+
+       * doc/tools.texinfo
+       (Applet Tools): New chapter.
+       (appletviewer Tool): New section.
+       (gcjwebplugin): New section.
+
 2006-06-11  Mark Wielaard  <address@hidden>
 
        * gnu/java/awt/peer/gtk/GdkPixbufDecoder.java (streamImage):

Index: doc/tools.texinfo
===================================================================
RCS file: /sources/classpath/classpath/doc/tools.texinfo,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- doc/tools.texinfo   11 Jun 2006 10:40:51 -0000      1.3
+++ doc/tools.texinfo   12 Jun 2006 00:58:32 -0000      1.4
@@ -40,7 +40,7 @@
 @contents
 
 @ifinfo
address@hidden Top, Security Tools, (dir), (dir)
address@hidden Top, Applet Tools, (dir), (dir)
 @top GNU Classpath Tools Guide
 
 This document contains important information you need to know in order to use
@@ -53,12 +53,18 @@
 @end ifinfo
 
 @menu
+* Applet Tools::               Work with applets
 * Security Tools::             Work securely with Java applications
 * I18N Issues::                How to add support for non-English languages
 
 @detailmenu
  --- The Detailed Node Listing ---
 
+Applet Tools
+
+* appletviewer Tool::          Load applets
+* gcjwebplugin::               Load applets in a web browser
+
 Security Tools
 
 * jarsigner Tool::             Sign and verify .JAR files
@@ -115,7 +121,150 @@
 
 @comment ----------------------------------------------------------------------
 
address@hidden Security Tools, I18N Issues, Top, Top
address@hidden Applet Tools, Security Tools, Top, Top
address@hidden node-name, next, previous, up
address@hidden Applet Tools
+
+Two Applet Tools are available with GNU Classpath: @b{appletviewer}
+and @b{gcjwebplugin}.
+
address@hidden
+* appletviewer Tool::          Load applets
+* gcjwebplugin::               Load applets in a web browser
address@hidden menu
+
+If while using these tools you think you found a bug, then please report it at 
@uref{http://www.gnu.org/software/classpath/bugs.html,classpath-bugs}.
+
address@hidden 
----------------------------------------------------------------------
+
address@hidden appletviewer Tool, gcjwebplugin, Applet Tools, Applet Tools
address@hidden node-name, next, previous, up
address@hidden The @code{appletviewer} Tool
+
address@hidden @b
+
address@hidden SYNOPSIS
address@hidden [OPTION]... address@hidden
address@hidden [OPTION]... -code address@hidden
address@hidden [OPTION]... -plugin INPUT,OUTPUT}
+
address@hidden DESCRIPTION
+The @code{appletviewer} tool loads and runs an applet.
+
+Use the first form to test applets specified by tag.  The URL should
+resolve to an HTML document from which the @code{appletviewer} will
+extract applet tags.  The APPLET, EMBED and OBJECT tags are supported.
+If a given document contains multiple applet tags, all the applets
+will be loaded, with each applet appearing in its own window.
+Likewise, when multiple URLs are specified, each applet tag instance
+is given its own window.  If a given document contains no recognized
+tags the @code{appletviewer} does nothing.
+
address@hidden
address@hidden http://www.gnu.org/software/classpath/}
address@hidden example
+
+Use the second form to test an applet in development.  This form
+allows applet tag attributes to be supplied on the command line.  Only
+one applet may be specified using the @code{-code} option.  The
address@hidden option overrides the URL form -- any URLs specified will
+be ignored.
+
address@hidden
address@hidden -code Test.class -param datafile,data.txt}
address@hidden example
+
address@hidden uses the third form to communicate with the
address@hidden through named pipes.
+
address@hidden URL OPTIONS
address@hidden @b
address@hidden -debug
+This option is not yet implemented but is provided for compatibility.
+
address@hidden -encoding CHARSET
+Use this option to specify an alternate character encoding for the
+specified HTML page.
+
address@hidden table
+
address@hidden APPLET TAG OPTIONS
address@hidden @b
address@hidden -code CODE
+Use the @code{-code} option to specify the value of the applet tag
+CODE attribute.
+
address@hidden -codebase CODEBASE
+Use the @code{-codebase} option to specify the value of the applet tag
+CODEBASE attribute.
+
address@hidden -archive ARCHIVE
+Use the @code{-archive} option to specify the value of the applet tag
+ARCHIVE attribute.
+
address@hidden -width WIDTH
+Use the @code{-width} option to specify the value of the applet tag
+WIDTH attribute.
+
address@hidden -height HEIGHT
+Use the @code{-height} option to specify the value of the applet tag
+HEIGHT attribute.
+
address@hidden -param NAME,VALUE
+Use the @code{-param} option to specify values for the NAME and VALUE
+attributes of an applet PARAM tag.
+
address@hidden table
+
address@hidden PLUGIN OPTION
address@hidden @b
address@hidden -plugin INPUT,OUTPUT
address@hidden uses the @code{-plugin} option to specify the
+named pipe the @code{appletviewer} should use for receiving commands
+(INPUT) and the one it should use for sending commands to
address@hidden (OUTPUT).
+
address@hidden table
+
address@hidden DEBUGGING OPTION
address@hidden @b
address@hidden -verbose
+Use the @code{-verbose} option to have the @code{appletviewer} print
+debugging messages.
+
address@hidden table
+
address@hidden STANDARD OPTIONS
address@hidden @b
address@hidden -help
+Use the @code{-help} option to have the @code{appletviewer} print a
+usage message, then exit.
+
address@hidden -version
+Use the @code{-version} option to have the @code{appletviewer} print
+its version, then exit.
+
address@hidden -JOPTION
+Use the @code{-J} option to pass OPTION to the virtual machine that
+will run the @code{appletviewer}.  Unlike other options, there must
+not be a space between the -J and OPTION.
+
address@hidden table
address@hidden table
+
address@hidden 
----------------------------------------------------------------------
+
address@hidden gcjwebplugin, , appletviewer Tool, Applet Tools
address@hidden node-name, next, previous, up
address@hidden The @code{gcjwebplugin} Tool
+
address@hidden is a plugin that adds applet support to web
+browsers.  Currently @code{gcjwebplugin} only supports Mozilla-based
+browsers (e.g., Firefox, Galeon, Mozilla).
+
address@hidden 
----------------------------------------------------------------------
+
address@hidden Security Tools, I18N Issues, Applet Tools, Top
 @comment node-name, next, previous, up
 @chapter Security Tools
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]