diff options
author | Keiron Liddle <keiron@apache.org> | 2002-08-20 08:09:00 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2002-08-20 08:09:00 +0000 |
commit | 87043b9e254777402d1df0f308f8766777583ba4 (patch) | |
tree | 319b7051f890134a70fdfe2ef7bf7c3f3c05ac65 /contrib/plan | |
parent | 470ede29b0555d1ff6c695ee22faa1bc542df190 (diff) | |
download | xmlgraphics-fop-87043b9e254777402d1df0f308f8766777583ba4.tar.gz xmlgraphics-fop-87043b9e254777402d1df0f308f8766777583ba4.zip |
updated classpath, fixed some small errors
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195109 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'contrib/plan')
-rwxr-xr-x | contrib/plan/build.sh | 2 | ||||
-rw-r--r-- | contrib/plan/src/org/apache/fop/plan/SimplePlanDrawer.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/plan/build.sh b/contrib/plan/build.sh index 481da7369..82972e6eb 100755 --- a/contrib/plan/build.sh +++ b/contrib/plan/build.sh @@ -12,7 +12,7 @@ if [ "$JAVA_HOME" = "" ] ; then exit 1 fi LIBDIR=../../lib -LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:$LIBDIR/ant.jar:$LIBDIR/batik.jar:$LIBDIR/buildtools.jar:$LIBDIR/xerces-1.4.3.jar:$LIBDIR/xalan-2.2D11.jar:../../build/fop.jar:$LIBDIR/avalon-framework-cvs-20020806.jar +LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:$LIBDIR/ant.jar:$LIBDIR/batik.jar:$LIBDIR/buildtools.jar:$LIBDIR/xercesImpl-2.0.1.jar:$LIBDIR/xalan-2.2D11.jar:$LIBDIR/xml-apis.jar:../../build/fop.jar:$LIBDIR/avalon-framework-cvs-20020806.jar ANT_HOME=$LIBDIR echo diff --git a/contrib/plan/src/org/apache/fop/plan/SimplePlanDrawer.java b/contrib/plan/src/org/apache/fop/plan/SimplePlanDrawer.java index e67ca9447..237a58749 100644 --- a/contrib/plan/src/org/apache/fop/plan/SimplePlanDrawer.java +++ b/contrib/plan/src/org/apache/fop/plan/SimplePlanDrawer.java @@ -275,7 +275,7 @@ public class SimplePlanDrawer implements PlanDrawer { line = SVGUtilities.createLine(doc, (float)(200 + (currentDays + 0.5) * 300 / 35), graphTop, (float)(200 + (currentDays + 0.5) * 300 / 35), height); - line.setAttributeNS(null, "style", "fill:none;stroke:rgb(200,50,50);stroke-dasharray:5 5"); + line.setAttributeNS(null, "style", "fill:none;stroke:rgb(200,50,50);stroke-dasharray:5,5"); svgRoot.appendChild(line); |