]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fixed bug that stopped XTCommandLine from working. contributed by Bill Raudabaugh
authorjtauber <jtauber@unknown>
Fri, 3 Dec 1999 08:36:49 +0000 (08:36 +0000)
committerjtauber <jtauber@unknown>
Fri, 3 Dec 1999 08:36:49 +0000 (08:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193260 13f79535-47bb-0310-9956-ffa450edef68

STATUS
src/org/apache/fop/apps/XTCommandLine.java

diff --git a/STATUS b/STATUS
index ae3c4dd810543016a0686a009c2edd65091d964a..8191e0d62f88d4c336c5112edbde0fa2583c4fac 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -9,6 +9,7 @@ Get images working
 [DONE] Incorporate Arved Sandstrom's simple-link implementation
 [PARTIAL] Implement basic keeps
 [PARTIAL] Incorporate Eric Schaeffer's further table fixes
+Implement MessageHandler (or similar)
 
 Other Bugs to fix:
 
@@ -33,6 +34,8 @@ Todo's and problems with AWT Previewer:
 Done since 0.12.0 release:
 
 basic support for padding-{top,left,bottom,right} on blocks.
+implemented simple-link (don't think it works, though)
+XTCommandLine now works again
 
 Done for 0.12.0 release:
 
index 21fa398de05ffc701d3fc85e06e3d9a10885540b..71e4d4a9725036ac98d77d040e06fd60cea9ee75 100644 (file)
@@ -22,7 +22,7 @@
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
  
- 4. The names "Fop" and  "Apache Software Foundation"  must not be used to
+ 4. The names "FOP" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
@@ -48,6 +48,7 @@
  Software Foundation, please see <http://www.apache.org/>.
  
  */
+
 package org.apache.fop.apps;
 
 import org.apache.fop.render.pdf.PDFRenderer;
@@ -117,7 +118,7 @@ public class XTCommandLine extends CommandLine {
            driver.addElementMapping("org.apache.fop.fo.StandardElementMapping");
            driver.addElementMapping("org.apache.fop.svg.SVGElementMapping");
            driver.setWriter(new PrintWriter(new FileWriter(args[2])));
-           driver.buildFOTree(parser, fileInputSource(args[0]));
+           driver.buildFOTree(xslProcessor, fileInputSource(args[0]));
            driver.format();
            driver.render();
        } catch (Exception e) {