You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ye...@apache.org on 2009/09/25 09:21:15 UTC

svn commit: r818752 - in /poi/trunk/src: documentation/content/xdocs/status.xml examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java

Author: yegor
Date: Fri Sep 25 07:21:15 2009
New Revision: 818752

URL: http://svn.apache.org/viewvc?rev=818752&view=rev
Log:
fixed non-ASCII symbols to keep javac quiet

Modified:
    poi/trunk/src/documentation/content/xdocs/status.xml
    poi/trunk/src/examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java
    poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java

Modified: poi/trunk/src/documentation/content/xdocs/status.xml
URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/status.xml?rev=818752&r1=818751&r2=818752&view=diff
==============================================================================
--- poi/trunk/src/documentation/content/xdocs/status.xml (original)
+++ poi/trunk/src/documentation/content/xdocs/status.xml Fri Sep 25 07:21:15 2009
@@ -32,7 +32,9 @@
     </developers>
 
     <changes>
-        <release version="3.5-beta7" date="2009-??-??">
+        <release version="3.6-beta1" date="2009-??-??">
+        </release>
+        <release version="3.5-FINAL" date="2009-09-28">
            <action dev="POI-DEVELOPERS" type="fix">47747 - fixed logic for locating shared formula records</action>
            <action dev="POI-DEVELOPERS" type="add">47809 - Improved work with user-defined functions</action>
            <action dev="POI-DEVELOPERS" type="fix">47581 - fixed XSSFSheet.setColumnWidth to produce XML compatible with Mac Excel 2008</action>

Modified: poi/trunk/src/examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java?rev=818752&r1=818751&r2=818752&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java (original)
+++ poi/trunk/src/examples/src/org/apache/poi/hssf/usermodel/examples/EmeddedObjects.java Fri Sep 25 07:21:15 2009
@@ -59,7 +59,7 @@
                     }
                 } else {
                     // There is no DirectoryEntry
-                    // Recover the object’s data from the HSSFObjectData instance.
+                    // Recover the object's data from the HSSFObjectData instance.
                     byte[] objectData = obj.getObjectData();
                 }
             }

Modified: poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java?rev=818752&r1=818751&r2=818752&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java (original)
+++ poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/EmbeddedObjects.java Fri Sep 25 07:21:15 2009
@@ -35,27 +35,27 @@
         XSSFWorkbook workbook = new XSSFWorkbook(args[0]);
         for (PackagePart pPart : workbook.getAllEmbedds()) {
             String contentType = pPart.getContentType();
-            // Excel Workbook – either binary or OpenXML
+            // Excel Workbook - either binary or OpenXML
             if (contentType.equals("application/vnd.ms-excel")) {
                 HSSFWorkbook embeddedWorkbook = new HSSFWorkbook(pPart.getInputStream());
             }
-            // Excel Workbook – OpenXML file format
+            // Excel Workbook - OpenXML file format
             else if (contentType.equals("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")) {
                 XSSFWorkbook embeddedWorkbook = new XSSFWorkbook(pPart.getInputStream());
             }
-            // Word Document – binary (OLE2CDF) file format
+            // Word Document - binary (OLE2CDF) file format
             else if (contentType.equals("application/msword")) {
                 HWPFDocument document = new HWPFDocument(pPart.getInputStream());
             }
-            // Word Document – OpenXML file format
+            // Word Document - OpenXML file format
             else if (contentType.equals("application/vnd.openxmlformats-officedocument.wordprocessingml.document")) {
                 XWPFDocument document = new XWPFDocument(pPart.getInputStream());
             }
-            // PowerPoint Document – binary file format
+            // PowerPoint Document - binary file format
             else if (contentType.equals("application/vnd.ms-powerpoint")) {
                 HSLFSlideShow slideShow = new HSLFSlideShow(pPart.getInputStream());
             }
-            // PowerPoint Document – OpenXML file format
+            // PowerPoint Document - OpenXML file format
             else if (contentType.equals("application/vnd.openxmlformats-officedocument.presentationml.presentation")) {
                 OPCPackage docPackage = OPCPackage.open(pPart.getInputStream());
                 XSLFSlideShow slideShow = new XSLFSlideShow(docPackage);



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