You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2018/10/30 11:59:10 UTC

svn commit: r1845229 [2/2] - in /poi/site/publish: ./ apidocs/ components/ components/diagram/ components/document/ components/hmef/ components/hpbf/ components/hpsf/ components/hsmf/ components/oxml4j/ components/poifs/ components/slideshow/ component...

Modified: poi/site/publish/components/spreadsheet/limitations.html
URL: http://svn.apache.org/viewvc/poi/site/publish/components/spreadsheet/limitations.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/components/spreadsheet/limitations.html (original)
+++ poi/site/publish/components/spreadsheet/limitations.html Tue Oct 30 11:59:09 2018
@@ -111,7 +111,7 @@ document.write("Last Published: " + docu
 <a href="../../components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="../../apidocs/index.html">Javadocs</a>
+<a href="../../apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_selected_1.1.3', '../../skin/')" id="menu_selected_1.1.3Title" class="menutitle" style="background-image: url('../../skin/images/chapter_open.gif');">Excel (HSSF/XSSF)</div>
 <div id="menu_selected_1.1.3" class="selectedmenuitemgroup" style="display: block;">
@@ -303,7 +303,7 @@ document.write("Last Published: " + docu
 						
 <li>
 							There are some inherent limits in the Excel file formats. These are defined in class 
-							<a href="../../apidocs/org/apache/poi/ss/SpreadsheetVersion.html">SpreadsheetVersion</a>.
+							<a href="../../apidocs/dev/org/apache/poi/ss/SpreadsheetVersion.html">SpreadsheetVersion</a>.
 							As long as you have enough main-memory, you should be able to handle files up to these limits. For huge files 
 							using the default POI classes you will likely need a very large amount of memory.
 							<br>
@@ -368,8 +368,8 @@ document.write("Last Published: " + docu
                     Macros can not be created. The are currently no plans to support macros.
                     However, reading and re-writing files containing macros will safely preserve 
                     the macros. Recent versions of Apache POI support extracting the macro data
-					via <a href="../../apidocs/org/apache/poi/poifs/macros/VBAMacroExtractor.html">VBAMacroExtractor</a>
-					and <a href="../../apidocs/org/apache/poi/poifs/macros/VBAMacroReader.html">VBAMacroReader</a>
+					via <a href="../../apidocs/dev/org/apache/poi/poifs/macros/VBAMacroExtractor.html">VBAMacroExtractor</a>
+					and <a href="../../apidocs/dev/org/apache/poi/poifs/macros/VBAMacroReader.html">VBAMacroReader</a>
 <br>
 <br>
                 

Modified: poi/site/publish/components/spreadsheet/quick-guide.html
URL: http://svn.apache.org/viewvc/poi/site/publish/components/spreadsheet/quick-guide.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/components/spreadsheet/quick-guide.html (original)
+++ poi/site/publish/components/spreadsheet/quick-guide.html Tue Oct 30 11:59:09 2018
@@ -111,7 +111,7 @@ document.write("Last Published: " + docu
 <a href="../../components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="../../apidocs/index.html">Javadocs</a>
+<a href="../../apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_selected_1.1.3', '../../skin/')" id="menu_selected_1.1.3Title" class="menutitle" style="background-image: url('../../skin/images/chapter_open.gif');">Excel (HSSF/XSSF)</div>
 <div id="menu_selected_1.1.3" class="selectedmenuitemgroup" style="display: block;">
@@ -754,7 +754,7 @@ document.write("Last Published: " + docu
 <p>In cases such as these, you should fetch the first and last column
             information for a row, then call <em>getCell(int, MissingCellPolicy)</em>
             to fetch the cell. Use a 
-            <a href="../../apidocs/org/apache/poi/ss/usermodel/Row.MissingCellPolicy.html">MissingCellPolicy</a>
+            <a href="../../apidocs/dev/org/apache/poi/ss/usermodel/Row.MissingCellPolicy.html">MissingCellPolicy</a>
             to control how blank or null cells are handled.</p>
 <pre class="code">
     // Decide which rows to process
@@ -2866,7 +2866,7 @@ the data to populate another drop down l
 <p>
          To apply a single set of text formatting (colour, style, font etc)
          to a cell, you should create a 
-         <a href="/../apidocs/org/apache/poi/ss/usermodel/CellStyle.html">CellStyle</a>
+         <a href="/../apidocs/dev/org/apache/poi/ss/usermodel/CellStyle.html">CellStyle</a>
          for the workbook, then apply to the cells.
         </p>
 <pre class="code">
@@ -2903,16 +2903,16 @@ the data to populate another drop down l
 <p>
          To apply different formatting to different parts of a cell, you
          need to use 
-         <a href="../../apidocs/org/apache/poi/ss/usermodel/RichTextString.html">RichTextString</a>,
+         <a href="../../apidocs/dev/org/apache/poi/ss/usermodel/RichTextString.html">RichTextString</a>,
          which permits styling of parts of the text within the cell.
         </p>
 <p>
          There are some slight differences between HSSF and XSSF, especially
          around font colours (the two formats store colours quite differently
          internally), refer to the
-         <a href="../../apidocs/org/apache/poi/hssf/usermodel/HSSFRichTextString.html">HSSF Rich Text String</a>
+         <a href="../../apidocs/dev/org/apache/poi/hssf/usermodel/HSSFRichTextString.html">HSSF Rich Text String</a>
          and
-         <a href="../../apidocs/org/apache/poi/xssf/usermodel/XSSFRichTextString.html">XSSF Rich Text String</a>
+         <a href="../../apidocs/dev/org/apache/poi/xssf/usermodel/XSSFRichTextString.html">XSSF Rich Text String</a>
          javadocs for more details.
         </p>
 </div>

Modified: poi/site/publish/components/spreadsheet/record-generator.html
URL: http://svn.apache.org/viewvc/poi/site/publish/components/spreadsheet/record-generator.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/components/spreadsheet/record-generator.html (original)
+++ poi/site/publish/components/spreadsheet/record-generator.html Tue Oct 30 11:59:09 2018
@@ -111,7 +111,7 @@ document.write("Last Published: " + docu
 <a href="../../components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="../../apidocs/index.html">Javadocs</a>
+<a href="../../apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_selected_1.1.3', '../../skin/')" id="menu_selected_1.1.3Title" class="menutitle" style="background-image: url('../../skin/images/chapter_open.gif');">Excel (HSSF/XSSF)</div>
 <div id="menu_selected_1.1.3" class="selectedmenuitemgroup" style="display: block;">

Modified: poi/site/publish/components/spreadsheet/use-case.html
URL: http://svn.apache.org/viewvc/poi/site/publish/components/spreadsheet/use-case.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/components/spreadsheet/use-case.html (original)
+++ poi/site/publish/components/spreadsheet/use-case.html Tue Oct 30 11:59:09 2018
@@ -111,7 +111,7 @@ document.write("Last Published: " + docu
 <a href="../../components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="../../apidocs/index.html">Javadocs</a>
+<a href="../../apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_selected_1.1.3', '../../skin/')" id="menu_selected_1.1.3Title" class="menutitle" style="background-image: url('../../skin/images/chapter_open.gif');">Excel (HSSF/XSSF)</div>
 <div id="menu_selected_1.1.3" class="selectedmenuitemgroup" style="display: block;">

Modified: poi/site/publish/components/spreadsheet/user-defined-functions.html
URL: http://svn.apache.org/viewvc/poi/site/publish/components/spreadsheet/user-defined-functions.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/components/spreadsheet/user-defined-functions.html (original)
+++ poi/site/publish/components/spreadsheet/user-defined-functions.html Tue Oct 30 11:59:09 2018
@@ -111,7 +111,7 @@ document.write("Last Published: " + docu
 <a href="../../components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="../../apidocs/index.html">Javadocs</a>
+<a href="../../apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_selected_1.1.3', '../../skin/')" id="menu_selected_1.1.3Title" class="menutitle" style="background-image: url('../../skin/images/chapter_open.gif');">Excel (HSSF/XSSF)</div>
 <div id="menu_selected_1.1.3" class="selectedmenuitemgroup" style="display: block;">

Modified: poi/site/publish/encryption.html
URL: http://svn.apache.org/viewvc/poi/site/publish/encryption.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/encryption.html (original)
+++ poi/site/publish/encryption.html Tue Oct 30 11:59:09 2018
@@ -181,8 +181,8 @@ document.write("Last Published: " + docu
         
 <li>Binary formats (.xls, .ppt, .doc, ...)<br>
         encryption is format-dependent and needs to be implemented per format differently.<br>
-        Use <a href="apidocs/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html">
-        Biff8EncryptionKey</a>.<a href="apidocs/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html#setCurrentUserPassword(java.lang.String)">setCurrentUserPassword</a>(String password)
+        Use <a href="apidocs/dev/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html">
+        Biff8EncryptionKey</a>.<a href="apidocs/dev/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html#setCurrentUserPassword(java.lang.String)">setCurrentUserPassword</a>(String password)
         to specify the decryption password before opening the file or (where applicable) before saving.
         Setting a null password before saving removes the password protection.<br>
         The password is set in a thread local variable. Do not forget to reset it to null after text extraction.
@@ -307,8 +307,8 @@ document.write("Last Published: " + docu
 <h2 class="boxed">Binary formats</h2>
 <div class="section">
 <p>As mentioned above, use
-        <a href="apidocs/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html">
-        Biff8EncryptionKey</a>.<a href="apidocs/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html#setCurrentUserPassword(java.lang.String)">setCurrentUserPassword</a>(String password)
+        <a href="apidocs/dev/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html">
+        Biff8EncryptionKey</a>.<a href="apidocs/dev/org/apache/poi/hssf/record/crypto/Biff8EncryptionKey.html#setCurrentUserPassword(java.lang.String)">setCurrentUserPassword</a>(String password)
         to specify the password.</p>
 <pre class="code">
 // XOR/RC4 decryption for xls
@@ -372,7 +372,7 @@ try {
 <h2 class="boxed">XML-based formats - Encryption</h2>
 <div class="section">
 <p>Encrypting a file is similar to the above decryption process. Basically you'll need to choose between
-     <a href="apidocs/org/apache/poi/poifs/crypt/EncryptionMode.html">binaryRC4, standard and agile encryption</a>,
+     <a href="apidocs/dev/org/apache/poi/poifs/crypt/EncryptionMode.html">binaryRC4, standard and agile encryption</a>,
      the cryptoAPI mode is used internally and it's direct use would result in an incomplete file.
      Apart of the CipherMode, the EncryptionInfo class provides further parameters to specify the cipher and
      hashing algorithm to be used.</p>
@@ -421,8 +421,8 @@ fos.close();
 <li>and slf4j-api (tested against 1.7.25)</li>
      
 </ul>
-<p>Depending on the <a href="apidocs/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html">configuration</a>
-     and the activated <a href="apidocs/org/apache/poi/poifs/crypt/dsig/facets/package-summary.html">facets</a>
+<p>Depending on the <a href="apidocs/dev/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html">configuration</a>
+     and the activated <a href="apidocs/dev/org/apache/poi/poifs/crypt/dsig/facets/package-summary.html">facets</a>
      various <a href="https://en.wikipedia.org/wiki/XAdES">XAdES levels</a> are supported - the support for higher levels (XAdES-T+)
      depend on supporting services and although the code is adopted, the integration is not well tested ... please support us on
      integration (testing) with timestamp and revocation (OCSP) services.

Modified: poi/site/publish/help/faq.html
URL: http://svn.apache.org/viewvc/poi/site/publish/help/faq.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/help/faq.html (original)
+++ poi/site/publish/help/faq.html Tue Oct 30 11:59:09 2018
@@ -664,9 +664,9 @@ case HSSFCell.CELL_TYPE_NUMERIC:
     </h2>
 <div class="section">
 <p>Across most of the UserModel classes (
-<a href="../apidocs/org/apache/poi/POIDocument.html">POIDocument</a>
+<a href="../apidocs/dev/org/apache/poi/POIDocument.html">POIDocument</a>
 and
-<a href="../apidocs/org/apache/poi/POIXMLDocument.html">POIXMLDocument</a>),
+<a href="../apidocs/dev/org/apache/poi/POIXMLDocument.html">POIXMLDocument</a>),
        you can open the document from a read-only <em>File</em>, a read-write <em>File</em>
        or an <em>InputStream</em>. You can always write out to an <em>OutputStream</em>,
        and increasing also to a <em>File</em>.
@@ -677,21 +677,21 @@ and
 <p>When writing, you can use an <em>OutputStream</em> to write to a new file, or
        overwrite an existing one (provided it isn't already open!). On slow links / disks,
        wrapping with a <em>BufferedOutputStream</em> is suggested. To write like this, use
-<a href="../apidocs/org/apache/poi/POIDocument.html#write(java.io.OutputStream)">write(OutputStream)</a>.
+<a href="../apidocs/dev/org/apache/poi/POIDocument.html#write(java.io.OutputStream)">write(OutputStream)</a>.
       </p>
 <p>To write to the currently open file (an in-place write / replace), you need to
        have opened your document from a <em>File</em>, not an <em>InputStream</em>. In
        addition, you need to have opened from the <em>File</em> in read-write mode, not
        read-only mode. To write to the currently open file, on formats that support it
        (not all do), use
-<a href="../apidocs/org/apache/poi/POIDocument.html#write()">write()</a>.
+<a href="../apidocs/dev/org/apache/poi/POIDocument.html#write()">write()</a>.
       </p>
 <p>You can also write out to a new <em>File</em>. This is available no matter how
        you opened the document, and will create/replace a new file. It is faster and lower
        memory than writing to an <em>OutputStream</em>. However, you can't use this to
        replace the currently open file, only files not currently open. To write to a
        new / different file, use
-<a href="../apidocs/org/apache/poi/POIDocument.html#write(java.io.File)">write(File)</a>
+<a href="../apidocs/dev/org/apache/poi/POIDocument.html#write(java.io.File)">write(File)</a>
       
 </p>
 <p>More information is also available in the

Modified: poi/site/publish/images/project-header.png
URL: http://svn.apache.org/viewvc/poi/site/publish/images/project-header.png?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
Binary files - no diff available.

Modified: poi/site/publish/linkmap.html
URL: http://svn.apache.org/viewvc/poi/site/publish/linkmap.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/linkmap.html (original)
+++ poi/site/publish/linkmap.html Tue Oct 30 11:59:09 2018
@@ -159,7 +159,7 @@ document.write("Last Published: " + docu
 <a href="components/index.html">Overview</a>
 </div>
 <div class="menuitem">
-<a href="apidocs/index.html">Javadocs</a>
+<a href="apidocs/dev/index.html">Javadocs</a>
 </div>
 <div onclick="SwitchMenu('menu_1.3.3', 'skin/')" id="menu_1.3.3Title" class="menutitle">Excel (HSSF/XSSF)</div>
 <div id="menu_1.3.3" class="menuitemgroup">
@@ -522,7 +522,7 @@ document.write("Last Published: " + docu
         
 <ul>
 <li>
-<a href="apidocs/index.html">Javadocs</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>javadocs</em>
+<a href="apidocs/dev/index.html">Javadocs</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>javadocs</em>
 </li>
 </ul>
         

Modified: poi/site/publish/related-projects.html
URL: http://svn.apache.org/viewvc/poi/site/publish/related-projects.html?rev=1845229&r1=1845228&r2=1845229&view=diff
==============================================================================
--- poi/site/publish/related-projects.html (original)
+++ poi/site/publish/related-projects.html Tue Oct 30 11:59:09 2018
@@ -275,8 +275,7 @@ document.write("Last Published: " + docu
 <p>
               
 <a href="https://github.com/pjfanning/excel-streaming-reader">Excel Streaming Reader</a> uses the POI Streaming API to provide Row/Cell like read-access to large Excel spreadsheets.
-              Available under the Apache License, Version 2.0. This version is derived from <a href="https://github.com/monitorjbl/excel-streaming-reader">monitorjbl/excel-streaming-reader</a>.
-              which support POI 3.17.
+              Available under the Apache License, Version 2.0. This version is derived from <a href="https://github.com/monitorjbl/excel-streaming-reader">monitorjbl/excel-streaming-reader</a> which supports POI 3.17.
               </p>
 <a name="poi-shared-strings"></a>
 <h3 class="boxed">poi-shared-strings</h3>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org