diff options
author | Manuel Mall <manuel@apache.org> | 2007-01-08 03:19:39 +0000 |
---|---|---|
committer | Manuel Mall <manuel@apache.org> | 2007-01-08 03:19:39 +0000 |
commit | 6ad7a4a7071c278e8f1c3bd551a3f8c9f85c8574 (patch) | |
tree | b5ea9dfeb84727e9d824a0e8e1ee4102b44c20cb /src/java | |
parent | 64ad16811f582e3b803344c9686019ce3d33f809 (diff) | |
download | xmlgraphics-fop-6ad7a4a7071c278e8f1c3bd551a3f8c9f85c8574.tar.gz xmlgraphics-fop-6ad7a4a7071c278e8f1c3bd551a3f8c9f85c8574.zip |
Added afp to command line options help, marked mif and svg as experimental
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@493927 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/fop/cli/CommandLineOptions.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/cli/CommandLineOptions.java b/src/java/org/apache/fop/cli/CommandLineOptions.java index cfd5a878e..ce6aa64b8 100644 --- a/src/java/org/apache/fop/cli/CommandLineOptions.java +++ b/src/java/org/apache/fop/cli/CommandLineOptions.java @@ -929,14 +929,13 @@ public class CommandLineOptions { + " -pdfa1b outfile input will be rendered as PDF/A-1b compliant PDF\n" + " (outfile req'd, same as \"-pdf outfile -pdfprofile PDF/A-1b\")\n" + " -awt input will be displayed on screen \n" - + " -mif outfile input will be rendered as MIF (FrameMaker) (outfile req'd)\n" + " -rtf outfile input will be rendered as RTF (outfile req'd)\n" - + " -tiff outfile input will be rendered as TIFF (outfile req'd)\n" - + " -png outfile input will be rendered as PNG (outfile req'd)\n" + " -pcl outfile input will be rendered as PCL (outfile req'd) \n" + " -ps outfile input will be rendered as PostScript (outfile req'd) \n" + + " -afp outfile input will be rendered as AFP (outfile req'd)\n" + + " -tiff outfile input will be rendered as TIFF (outfile req'd)\n" + + " -png outfile input will be rendered as PNG (outfile req'd)\n" + " -txt outfile input will be rendered as plain text (outfile req'd) \n" - + " -svg outfile input will be rendered as an SVG slides file (outfile req'd) \n" + " -at [mime] out representation of area tree as XML (outfile req'd) \n" + " specify optional mime output to allow AT to be converted\n" + " to final format later\n" @@ -945,6 +944,10 @@ public class CommandLineOptions { + " -out mime outfile input will be rendered using the given MIME type\n" + " (outfile req'd) Example: \"-out application/pdf D:\\out.pdf\"\n" + " (Tip: \"-out list\" prints the list of supported MIME types)\n" + + " -mif outfile input will be rendered as MIF (FrameMaker) (outfile req'd)\n" + + " Experimental feature - requires additional fop-sandbox.jar.\n" + + " -svg outfile input will be rendered as an SVG slides file (outfile req'd) \n" + + " Experimental feature - requires additional fop-sandbox.jar.\n" + "\n" + " -foout outfile input will only be XSL transformed. The intermediate \n" + " XSL-FO file is saved and no rendering is performed. \n" |