zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #15034
[Merge] lp:~zorba-coders/zorba/archive-doc into lp:zorba/archive-module
William Candillon has proposed merging lp:~zorba-coders/zorba/archive-doc into lp:zorba/archive-module.
Commit message:
Minor documentation improvement.
Requested reviews:
William Candillon (wcandillon)
Matthias Brantner (matthias-brantner)
For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/archive-doc/+merge/126972
Minor documentation improvement.
--
https://code.launchpad.net/~zorba-coders/zorba/archive-doc/+merge/126972
Your team Zorba Coders is subscribed to branch lp:zorba/archive-module.
=== modified file 'src/archive_module.xq'
--- src/archive_module.xq 2012-08-02 21:11:32 +0000
+++ src/archive_module.xq 2012-09-28 14:01:27 +0000
@@ -32,6 +32,7 @@
: @author Luis Rodgriguez, Juan Zacarias, and Matthias Brantner
:
: @library <a href="http://code.google.com/p/libarchive/">libarchive</a>
+ : @project Zorba/Archive
:)
module namespace a = "http://www.zorba-xquery.com/modules/archive";
@@ -89,22 +90,18 @@
:
: <p>For example, the following sequence may be used to describe an archive
: containing three elements:
- : <pre>
- : <a:entry last-modified="{fn:current-dateTime()}">myfile.txt</a:entry>
- : <a:entry encoding="ISO-8859-1" compression="store">dir/myfile.xml</a:entry>
- : </pre>
+ : <pre class="ace-static" ace-mode="xquery"><![CDATA[<a:entry last-modified="{fn:current-dateTime()}">myfile.txt</a:entry>
+ : <a:entry encoding="ISO-8859-1" compression="store">dir/myfile.xml</a:entry>]]></pre>
: </p>
:
: <p>The $options argument may be used to describe general options for the
: archive. For example, the following option element can be used to create a ZIP
: archive in which all entries are compressed with the DEFLATE compression
: algorithm:
- : <pre>
- : <archive:options>
- : <archive:format>ZIP</archive:format>
- : <archive:compression>DEFLATE</archive:compression>
- : </archive:options>
- : </pre>
+ : <pre class="ace-static" ace-mode="xquery"><![CDATA[<archive:options>
+ : <archive:format>ZIP</archive:format>
+ : <archive:compression>DEFLATE</archive:compression>
+ : </archive:options>]]></pre>
: </p>
:
: <p>The result of the function is the generated archive as a item of type
@@ -274,12 +271,10 @@
: Returns the algorithm and format options of the given archive.
: For example, for a ZIP archive, the following options element
: would be returned:
- : <pre>
- : <archive:options>
- : <archive:format>ZIP</archive:format>
- : <archive:compressionDEFLATE</archive:compression>
- : </archive:options>
- : </pre>
+ : <pre class="ace-static" ace-mode="xquery"><![CDATA[<archive:options>
+ : <archive:format>ZIP</archive:format>
+ : <archive:compressionDEFLATE</archive:compression>
+ : </archive:options>]]></pre>
:
: @param $archive the archive as xs:base64Binary
:
Follow ups