zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #15223
[Merge] lp:~zorba-coders/zorba/data-formatting-doc into lp:zorba/data-formatting-module
William Candillon has proposed merging lp:~zorba-coders/zorba/data-formatting-doc into lp:zorba/data-formatting-module.
Requested reviews:
William Candillon (wcandillon)
Cezar Andrei (cezar-andrei)
For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/data-formatting-doc/+merge/127666
Minor documentation improvements.
--
https://code.launchpad.net/~zorba-coders/zorba/data-formatting-doc/+merge/127666
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-module.
=== modified file 'src/com/zorba-xquery/www/modules/xsl-fo.xq'
--- src/com/zorba-xquery/www/modules/xsl-fo.xq 2012-04-11 13:45:56 +0000
+++ src/com/zorba-xquery/www/modules/xsl-fo.xq 2012-10-03 08:27:25 +0000
@@ -21,8 +21,7 @@
: to various formats such as PDF, EPS, PCL, AFP, Text, PNG, Postscript, RTF, and TIFF.
: For instance, the following example converts a simple XSL-FO document to PDF:
: <br />
- : <pre class="brush: xquery;">
- : import module namespace fop = "http://www.zorba-xquery.com/modules/xsl-fo";
+ : <pre class="ace-static" ace-mode="xquery"><![CDATA[import module namespace fop = "http://www.zorba-xquery.com/modules/xsl-fo";
: import module namespace file = "http://expath.org/ns/file";
:
: declare namespace fo = "http://www.w3.org/1999/XSL/Format";
@@ -41,8 +40,7 @@
: </fo:page-sequence>
: </fo:root>
: let $pdf := fop:generator($fop:PDF, $xsl-fo)
- : return file:write-binary("simple.pdf", $pdf)
- : </pre>
+ : return file:write-binary("simple.pdf", $pdf)]]></pre>
: <br />
: This module uses Apache-FOP to generate content from an XSL-FO document.
: See <a href="http://xmlgraphics.apache.org/fop/">the Apache FOP documentation</a> for further information.
@@ -57,7 +55,7 @@
: @author Markus Pilman
: @see http://xmlgraphics.apache.org/fop/
: @library <a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK - Java Development Kit</a>
- : @project data processing/data formatting
+ : @project Zorba/Data Formatting/XSL-FO
:)
module namespace xsl-fo = "http://www.zorba-xquery.com/modules/xsl-fo";
Follow ups