misc fixes in site docs

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1141906 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2011-07-01 11:43:06 +00:00
parent 9930e7099f
commit fcb9fce801
6 changed files with 28 additions and 23 deletions

View File

@ -91,11 +91,11 @@
</tr> </tr>
<tr> <tr>
<td>compile</td> <td>compile</td>
<td>Compiles all files from main, contrib and scratchpad</td> <td>Compiles all files from main, ooxml and scratchpad</td>
</tr> </tr>
<tr> <tr>
<td>test</td> <td>test</td>
<td>Run all unit tests from main, ooxml, contrib and scratchpad</td> <td>Run all unit tests from main, ooxml and scratchpad</td>
</tr> </tr>
<tr> <tr>
<td>jar</td> <td>jar</td>

View File

@ -352,8 +352,8 @@ else
only difference is that they are not located in the POI filesystem's root only difference is that they are not located in the POI filesystem's root
but in a <strong>nested directory</strong> instead. Just register a but in a <strong>nested directory</strong> instead. Just register a
<code>POIFSReaderListener</code> for the property set streams you are <code>POIFSReaderListener</code> for the property set streams you are
interested in. For example, the <em>POIBrowser</em> application in the interested in. For example, the <em>POIBrowser</em> application
contrib section tries to open each and every document in a POI filesystem tries to open each and every document in a POI filesystem
as a property set stream. If this operation was successful it displays the as a property set stream. If this operation was successful it displays the
properties.</p> properties.</p>
</section> </section>

View File

@ -288,8 +288,18 @@
"Examples" section of the <link href="apidocs/overview-summary.html">POI API "Examples" section of the <link href="apidocs/overview-summary.html">POI API
documentation</link>. documentation</link>.
</p> </p>
<section><title>POI Browser</title>
<p> <p>
Also note that we now include all of the examples in the distribution. The POI Browser is a very simple Swing GUI tool that displays the
internal structure of a Microsoft Office file and especially the
property set streams. Further information and instructions how to
execute it can be found in the <link
href="http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/poifs/poibrowser/POIBrowser.java">POI
source code</link>.
</p>
</section>
<p>
All of the examples are inclided in POI distributions as a poi-examples artifact.
</p> </p>
</section> </section>
<section><title>Contributed Software</title> <section><title>Contributed Software</title>
@ -299,17 +309,12 @@
is not explicitly recommended or even maintained by the POI team, but is not explicitly recommended or even maintained by the POI team, but
it might still be useful to you. it might still be useful to you.
</p> </p>
<section><title>POI Browser</title>
<p> <p>
The POI Browser is a very simple Swing GUI tool that displays the See <link href="poi-ruby.html">POI Ruby Bindings</link> and other code in the
internal structure of a Microsoft Office file and especially the <link
property set streams. Further information and instructions how to href="http://svn.apache.org/repos/asf/poi/trunk/src/contrib/">poi-contrib module</link>
execute it can be found in the <link
href="apidocs/org/apache/poi/contrib/poibrowser/package-summary.html#package_description">POI
Browser package description</link>.
</p> </p>
</section> </section>
</section>
</body> </body>
<footer> <footer>
<legal> <legal>

View File

@ -51,7 +51,7 @@
</section> </section>
<section><title>Subversion</title> <section><title>Subversion</title>
<p> <p>
The POI-Ruby module sits under the POI <link href="http://jakarta.apache.org/site/cvsindex.html">Subversion</link> in the <em>src/contrib/poi-ruby</em> directory. Running <em>make</em> The POI-Ruby module sits under the POI <link href="http://svn.apache.org/repos/asf/poi/trunk/src/contrib/poi-ruby/">Subversion</link>. Running <em>make</em>
inside that directory will create a loadable ruby extention <em>poi4r.so</em> in the release subdirectory. Tests inside that directory will create a loadable ruby extention <em>poi4r.so</em> in the release subdirectory. Tests
are in the <em>tests/</em> subdirectory, and should be run from the <em>poi-ruby</em> directory. Please read the tests to figure out the usage. are in the <em>tests/</em> subdirectory, and should be run from the <em>poi-ruby</em> directory. Please read the tests to figure out the usage.
</p> </p>

View File

@ -27,7 +27,7 @@
</authors> </authors>
</header> </header>
<body> <body>
<section><title>Version 2.5 limitations</title> <section><title>Version 3.7 limitations</title>
<p> <p>
The intent of this document is to outline some of the known limitations of the The intent of this document is to outline some of the known limitations of the
POI HSSF API's. It is not intended to be complete list of every bug or missing POI HSSF API's. It is not intended to be complete list of every bug or missing

View File

@ -336,7 +336,7 @@
Sheet sheet1 = wb.getSheetAt(0); Sheet sheet1 = wb.getSheetAt(0);
for (Row row : sheet1) { for (Row row : sheet1) {
for (Cell cell : row) { for (Cell cell : row) {
CellReference cellRef = new CellReference(row.getRowNum(), cell.getCellNum()); CellReference cellRef = new CellReference(row.getRowNum(), cell.getColumnIndex());
System.out.print(cellRef.formatAsString()); System.out.print(cellRef.formatAsString());
System.out.print(" - "); System.out.print(" - ");
@ -711,7 +711,7 @@ Examples:
<anchor id="ConvenienceFunctions"/> <anchor id="ConvenienceFunctions"/>
<section><title>Using the Convenience Functions</title> <section><title>Using the Convenience Functions</title>
<p> <p>
The convenience functions live in contrib and provide The convenience functions provide
utility features such as setting borders around merged utility features such as setting borders around merged
regions and changing style attributes without explicitly regions and changing style attributes without explicitly
creating new styles. creating new styles.