Author: nick
Date: Thu Sep 11 08:48:34 2014
New Revision: 1624227
URL: http://svn.apache.org/r1624227
Log:
Changelog and javadoc update
Modified:
poi/site/publish/apidocs/index-all.html
poi/site/publish/apidocs/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html
poi/site/publish/changes.html
poi/site/publish/changes.rss
poi/site/src/documentation/content/xdocs/status.xml
Modified: poi/site/publish/apidocs/index-all.html
URL:
http://svn.apache.org/viewvc/poi/site/publish/apidocs/index-all.html?rev=1624227&r1=1624226&r2=1624227&view=diff
==============================================================================
--- poi/site/publish/apidocs/index-all.html (original)
+++ poi/site/publish/apidocs/index-all.html Thu Sep 11 08:48:34 2014
@@ -45964,6 +45964,10 @@ return null</div>
<dd>
<div class="block">Creates a POIFSFileSystem from an open
<tt>FileChannel</tt>.</div>
</dd>
+<dt><span class="strong"><a
href="./org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#NPOIFSFileSystem(java.nio.channels.FileChannel,%20boolean)">NPOIFSFileSystem(FileChannel,
boolean)</a></span> - Constructor for class org.apache.poi.poifs.filesystem.<a
href="./org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html" title="class in
org.apache.poi.poifs.filesystem">NPOIFSFileSystem</a></dt>
+<dd>
+<div class="block">Creates a POIFSFileSystem from an open
<tt>FileChannel</tt>.</div>
+</dd>
<dt><span class="strong"><a
href="./org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#NPOIFSFileSystem(java.io.InputStream)">NPOIFSFileSystem(InputStream)</a></span>
- Constructor for class org.apache.poi.poifs.filesystem.<a
href="./org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html" title="class in
org.apache.poi.poifs.filesystem">NPOIFSFileSystem</a></dt>
<dd>
<div class="block">Create a POIFSFileSystem from an <tt>InputStream</tt>.</div>
Modified:
poi/site/publish/apidocs/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html
URL:
http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html?rev=1624227&r1=1624226&r2=1624227&view=diff
==============================================================================
---
poi/site/publish/apidocs/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html
(original)
+++
poi/site/publish/apidocs/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html
Thu Sep 11 08:48:34 2014
@@ -163,6 +163,12 @@ implements <a href="../../../../../org/a
</td>
</tr>
<tr class="altColor">
+<td class="colOne"><code><strong><a
href="../../../../../org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#NPOIFSFileSystem(java.nio.channels.FileChannel,%20boolean)">NPOIFSFileSystem</a></strong>(java.nio.channels.FileChannel channel,
+ boolean readOnly)</code>
+<div class="block">Creates a POIFSFileSystem from an open
<tt>FileChannel</tt>.</div>
+</td>
+</tr>
+<tr class="rowColor">
<td class="colOne"><code><strong><a
href="../../../../../org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#NPOIFSFileSystem(java.io.InputStream)">NPOIFSFileSystem</a></strong>(java.io.InputStream stream)</code>
<div class="block">Create a POIFSFileSystem from an <tt>InputStream</tt>.</div>
</td>
@@ -419,7 +425,7 @@ implements <a href="../../../../../org/a
<p>Note that with this constructor, you will need to call <a
href="../../../../../org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#close()"><code>close()</code></a>
when you're done to have the underlying file closed, as the file is
kept open during normal operation to read the data out.</p></div>
-<dl><dt><span class="strong">Parameters:</span></dt><dd><code>file</code> -
the File from which to read the data</dd>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>file</code> -
the File from which to read or read/write the
data</dd><dd><code>readOnly</code> - whether the POIFileSystem will only be
used in read-only mode</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - on errors reading, or on invalid
data</dd></dl>
</li>
@@ -433,7 +439,8 @@ implements <a href="../../../../../org/a
<pre>public NPOIFSFileSystem(java.nio.channels.FileChannel channel)
throws java.io.IOException</pre>
<div class="block"><p>Creates a POIFSFileSystem from an open
<tt>FileChannel</tt>. This uses
- less memory than creating from an <tt>InputStream</tt>.</p>
+ less memory than creating from an <tt>InputStream</tt>. The stream will
+ be used in read-write mode.</p>
<p>Note that with this constructor, you will need to call <a
href="../../../../../org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#close()"><code>close()</code></a>
when you're done to have the underlying Channel closed, as the channel is
@@ -443,6 +450,26 @@ implements <a href="../../../../../org/a
<dd><code>java.io.IOException</code> - on errors reading, or on invalid
data</dd></dl>
</li>
</ul>
+<a name="NPOIFSFileSystem(java.nio.channels.FileChannel, boolean)">
+<!-- -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NPOIFSFileSystem</h4>
+<pre>public NPOIFSFileSystem(java.nio.channels.FileChannel channel,
+ boolean readOnly)
+ throws java.io.IOException</pre>
+<div class="block"><p>Creates a POIFSFileSystem from an open
<tt>FileChannel</tt>. This uses
+ less memory than creating from an <tt>InputStream</tt>.</p>
+
+ <p>Note that with this constructor, you will need to call <a
href="../../../../../org/apache/poi/poifs/filesystem/NPOIFSFileSystem.html#close()"><code>close()</code></a>
+ when you're done to have the underlying Channel closed, as the channel is
+ kept open during normal operation to read the data out.</p></div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>channel</code> -
the FileChannel from which to read or read/write the
data</dd><dd><code>readOnly</code> - whether the POIFileSystem will only be
used in read-only mode</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code>java.io.IOException</code> - on errors reading, or on invalid
data</dd></dl>
+</li>
+</ul>
<a name="NPOIFSFileSystem(java.io.InputStream)">
<!-- -->
</a>
Modified: poi/site/publish/changes.html
URL:
http://svn.apache.org/viewvc/poi/site/publish/changes.html?rev=1624227&r1=1624226&r2=1624227&view=diff
==============================================================================
--- poi/site/publish/changes.html (original)
+++ poi/site/publish/changes.html Thu Sep 11 08:48:34 2014
@@ -257,6 +257,9 @@ if (VERSION > 3) {
<ul>
<li>
+<img class="icon" alt="add" src="images/add.jpg"> <a
href="http://issues.apache.org/bugzilla/show_bug.cgi?id=56956">56956</a> - Add
a NPOIFSFileSystem constructor with a FileChannel and the read-only option</li>
+
+<li>
<img class="icon" alt="fix" src="images/fix.jpg"> <a
href="http://issues.apache.org/bugzilla/show_bug.cgi?id=56914">56914</a> -
XSSFRowShifter.updateConditionalFormatting throws IOOBE when there are more
than 1 CTConditionalFormatting</li>
<li>
Modified: poi/site/publish/changes.rss
URL:
http://svn.apache.org/viewvc/poi/site/publish/changes.rss?rev=1624227&r1=1624226&r2=1624227&view=diff
==============================================================================
--- poi/site/publish/changes.rss (original)
+++ poi/site/publish/changes.rss Thu Sep 11 08:48:34 2014
@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
"http://my.netscape.com/publish/formats/rss-0.91.dtd">
-<rss version="0.91"><channel><title>POI
Changes</title><link>http://poi.apache.org/changes.html</link><description>POI
Changes</description><language>en-us</language><item><title> fix(bug
56914)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56914) - XSSFRowShifter.updateConditionalFormatting
throws IOOBE when there are more than 1
CTConditionalFormatting</description></item><item><title> fix(bug
56913)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56913) - Replace usages of o.a.p.util.ArrayUtil.copyOf*
methods with replacements from j.u.Arrays</description></item><item><title>
fix(bug
51483)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 51483) - XSSF locking of specific features not
working</description></item><item><title> fix(bug
48195)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 48195)
- Formulas: Fix incorrect evaluation of IF() with ROW()/COLUMN() as
else-result.</description></item><item><title> fix(bug
55280)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 55280) - XSSF: Greatly improve performance of shifting
rows in sheets with many merged regions.</description></item><item><title>
fix(bug
51222)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 51222) - XSSFColor.getARGBHex() returns wrong color for
Excel 2007 xlsx file</description></item><item><title> fix(bug
56730)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56730) - Fix exporting XML if schema contains
ref-elements</description></item><item><title> fix(bug
56864)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56864) - XWPFLatentStyles.isLatentStyle always returns
true if there is at least 1 lsdException</descriptio
n></item><item><title> fix(bug
56854)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56854) - XMLBeans performance when using getXXXList()
and other proxy methods</description></item></channel></rss>
\ No newline at end of file
+<rss version="0.91"><channel><title>POI
Changes</title><link>http://poi.apache.org/changes.html</link><description>POI
Changes</description><language>en-us</language><item><title> add(bug
56956)</title><link>http://poi.apache.org/changes.html</link><description> add
by POI Developers (bug 56956) - Add a NPOIFSFileSystem constructor with a
FileChannel and the read-only option</description></item><item><title> fix(bug
56914)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56914) - XSSFRowShifter.updateConditionalFormatting
throws IOOBE when there are more than 1
CTConditionalFormatting</description></item><item><title> fix(bug
56913)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56913) - Replace usages of o.a.p.util.ArrayUtil.copyOf*
methods with replacements from j.u.Arrays</description></item><item><title>
fix(bug
51483)</title><link>http://poi.apache.org/changes.html</link><description>
fix by POI Developers (bug 51483) - XSSF locking of specific features not
working</description></item><item><title> fix(bug
48195)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 48195) - Formulas: Fix incorrect evaluation of IF() with
ROW()/COLUMN() as else-result.</description></item><item><title> fix(bug
55280)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 55280) - XSSF: Greatly improve performance of shifting
rows in sheets with many merged regions.</description></item><item><title>
fix(bug
51222)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 51222) - XSSFColor.getARGBHex() returns wrong color for
Excel 2007 xlsx file</description></item><item><title> fix(bug
56730)</title><link>http://poi.apache.org/changes.html</link><description> fix
by POI Developers (bug 56730) - Fix exporting XML if schema contains
ref-elements</description></item
><item><title> fix(bug
>56864)</title><link>http://poi.apache.org/changes.html</link><description>
>fix by POI Developers (bug 56864) - XWPFLatentStyles.isLatentStyle always
>returns true if there is at least 1
>lsdException</description></item><item><title> fix(bug
>56854)</title><link>http://poi.apache.org/changes.html</link><description>
>fix by POI Developers (bug 56854) - XMLBeans performance when using
>getXXXList() and other proxy methods</description></item></channel></rss>
\ No newline at end of file
Modified: poi/site/src/documentation/content/xdocs/status.xml
URL:
http://svn.apache.org/viewvc/poi/site/src/documentation/content/xdocs/status.xml?rev=1624227&r1=1624226&r2=1624227&view=diff
==============================================================================
--- poi/site/src/documentation/content/xdocs/status.xml (original)
+++ poi/site/src/documentation/content/xdocs/status.xml Thu Sep 11 08:48:34 2014
@@ -38,6 +38,7 @@
</devs>
<release version="3.11-beta3" date="2014-??-??">
+ <action dev="PD" type="add" fixes-bug="56956">Add a NPOIFSFileSystem
constructor with a FileChannel and the read-only option</action>
<action dev="PD" type="fix"
fixes-bug="56914">XSSFRowShifter.updateConditionalFormatting throws IOOBE when
there are more than 1 CTConditionalFormatting</action>
<action dev="PD" type="fix" fixes-bug="56913">Replace usages of
o.a.p.util.ArrayUtil.copyOf* methods with replacements from j.u.Arrays</action>
<action dev="PD" type="fix" fixes-bug="51483">XSSF locking of specific
features not working</action>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]