Ready for release.
authorTony Graham
Fri, 14 Feb 2014 15:17:25 +0000
changeset 33 3eaa6a425b51
parent 32 4927a0669498
child 34 950bc0ee9a28
Ready for release.
FOPRunXSLTExt/examples/example5.xml
FOPRunXSLTExt/examples/example5.xsl
FOPRunXSLTExt/examples/formatting.xsl
FOPRunXSLTExt/examples/runsaxon9he_ahf61.bat
FOPRunXSLTExt/examples/runsaxon9he_fop10.bat
FOPRunXSLTExt/nbproject/private/private.xml
--- a/FOPRunXSLTExt/examples/example5.xml	Sun Feb 09 22:29:00 2014 +0000
+++ b/FOPRunXSLTExt/examples/example5.xml	Fri Feb 14 15:17:25 2014 +0000
@@ -2,6 +2,10 @@
 <header>Print and Page Layout Community Group</header>
 
 <box id="box001" width="360pt" height="360pt">
-<paragraph id="para001">The Print and Page Layout Community Group is the "virtual water cooler" where you can hang out.</paragraph>
+<paragraph id="para001">The Print and Page Layout Community Group is open to all aspects of page
+layout theory and practice. We can and will cover everything from the
+Crystal Goblet through to specifications and on to the nitty-gritty of
+writing stylesheets. You will find XSL-FO discussed here, but you will
+also find other stylesheet languages, and all are equally welcome.</paragraph>
 </box>
 </example>
--- a/FOPRunXSLTExt/examples/example5.xsl	Sun Feb 09 22:29:00 2014 +0000
+++ b/FOPRunXSLTExt/examples/example5.xsl	Fri Feb 14 15:17:25 2014 +0000
@@ -112,7 +112,7 @@
 
   <xsl:variable
       name="bpd"
-      select="ppl:block-bdp($block)"
+      select="ppl:block-bpd($block)"
       as="xs:double" />
 
   <xsl:variable
--- a/FOPRunXSLTExt/examples/formatting.xsl	Sun Feb 09 22:29:00 2014 +0000
+++ b/FOPRunXSLTExt/examples/formatting.xsl	Fri Feb 14 15:17:25 2014 +0000
@@ -61,7 +61,7 @@
 </xsl:template>
 
 <xsl:template match="paragraph">
-  <fo:block id="{@id}" text-indent="5mm" space-before="3pt">
+  <fo:block id="{@id}" text-align="justify" space-before="3pt">
     <xsl:apply-templates/>
   </fo:block>
 </xsl:template>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/FOPRunXSLTExt/examples/runsaxon9he_ahf61.bat	Fri Feb 14 15:17:25 2014 +0000
@@ -0,0 +1,53 @@
+@ECHO OFF
+
+rem The current directory
+set FOPRUNXSLTEXT_HOME=%~dp0
+
+AHF61_64_HOME="AHFCmd.exe"
+export AHF61_64_HOME
+
+AHF61_64_LIB_FOLDER=${AHF61_64_HOME}/lib
+AHF61_64_BIN_FOLDER=${AHF61_64_HOME}/bin
+AHF61_64_ETC_FOLDER=${AHF61_64_HOME}/etc
+AHF61_64_SDATA_FOLDER=${AHF61_64_HOME}/sdata
+
+LD_LIBRARY_PATH=${AHF61_64_LIB_FOLDER}:${LD_LIBRARY_PATH}
+export LD_LIBRARY_PATH
+
+AHF61_64_LIC_PATH=${AHF61_64_ETC_FOLDER}
+export AHF61_64_LIC_PATH
+
+AHF61_64_HYPDIC_PATH=${AHF61_64_ETC_FOLDER}/hyphenation
+export AHF61_64_HYPDIC_PATH
+
+AHF61_64_DMC_TBLPATH=${AHF61_64_SDATA_FOLDER}/base2
+export AHF61_64_DMC_TBLPATH
+
+AHF61_64_DEFAULT_HTML_CSS=${AHF61_64_ETC_FOLDER}/html.css
+export AHF61_64_DEFAULT_HTML_CSS
+
+AHF61_64_FONT_CONFIGFILE=${AHF61_64_ETC_FOLDER}/font-config.xml
+export AHF61_64_FONT_CONFIGFILE
+
+rem Saxon 9.5 or later jar file.  Modify as
+rem necessary for location of Saxon jar on your
+rem system.
+set SAXON=C:\saxon\saxon9he.jar
+
+rem Location of unzipped FOP 1.0 binary distribution.
+set FOP_HOME=%~dp0\fop-1.0
+
+rem Set the classpath for use by Java.
+set CP=%SAXON%
+set CP=%CP%;%FOP_HOME%\build\fop.jar
+set CP=%CP%;%FOP_HOME%\lib\xmlgraphics-commons-1.4.jar
+set CP=%CP%;%FOP_HOME%\lib\commons-logging-1.0.4.jar
+set CP=%CP%;%FOP_HOME%\lib\commons-io-1.3.1.jar
+set CP=%CP%;%FOP_HOME%\lib\avalon-framework-4.2.0.jar
+set CP=%CP%;%FOP_HOME%\lib\batik-all-1.7.jar
+set CP=%CP%;%FOP_HOME%\lib\serializer-2.7.0.jar
+set CP=%CP%;%FOP_HOME%\lib\xalan-2.7.0.jar
+set CP=%CP%;%FOP_HOME%\lib\xerxesImpl-2.7.1.jar
+set CP=%CP%;%FOPRUNXSLTEXT_HOME%\FOPRunXSLTExt.jar
+
+java -cp %CP% net.sf.saxon.Transform -init:org.w3c.ppl.xslt.ext.fop.saxon.RunFOPExtInitializer -s:%1 -xsl:%2 -o:%3 -it:main dest_dir=%4 area_tree_filename=%5
--- a/FOPRunXSLTExt/examples/runsaxon9he_fop10.bat	Sun Feb 09 22:29:00 2014 +0000
+++ b/FOPRunXSLTExt/examples/runsaxon9he_fop10.bat	Fri Feb 14 15:17:25 2014 +0000
@@ -3,7 +3,7 @@
 rem The current directory
 set FOPRUNXSLTEXT_HOME=%~dp0
 
-rem Saxon 9.4 or later jar file.  Modify as
+rem Saxon 9.5 or later jar file.  Modify as
 rem necessary for location of Saxon jar on your
 rem system.
 set SAXON=C:\saxon\saxon9he.jar
--- a/FOPRunXSLTExt/nbproject/private/private.xml	Sun Feb 09 22:29:00 2014 +0000
+++ b/FOPRunXSLTExt/nbproject/private/private.xml	Fri Feb 14 15:17:25 2014 +0000
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project-private xmlns="http://www.netbeans.org/ns/project-private/1">
+    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>
     <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
 </project-private>