logo       
Google Custom Search
    AddThis Social Bookmark Button

cvs: pecl /pdf package.xml pdf.c pdf7.c: msg#00127

Subject: cvs: pecl /pdf package.xml pdf.c pdf7.c
rjs             Tue Oct 31 18:09:28 2006 UTC

  Modified files:              
    /pecl/pdf   package.xml pdf.c pdf7.c 
  Log:
  added 2 missing functions to the OO-wrapper (utf16_to_utf8  and 
utf168_to_utf16
  
  
http://cvs.php.net/viewvc.cgi/pecl/pdf/package.xml?r1=1.27&r2=1.28&diff_format=u
Index: pecl/pdf/package.xml
diff -u pecl/pdf/package.xml:1.27 pecl/pdf/package.xml:1.28
--- pecl/pdf/package.xml:1.27   Thu Oct  5 12:04:41 2006
+++ pecl/pdf/package.xml        Tue Oct 31 18:09:27 2006
@@ -28,13 +28,12 @@
     </maintainer>
   </maintainers>
   <release>
-    <version>2.1.0</version>
-    <date>2006-10-05</date>
+    <version>2.1.1</version>
+    <date>2006-10-31</date>
     <license>PHP</license>
     <state>stable</state>
     <notes>
-- added support for PDFlib 7
-- prepaired for build with PHP 5.2 (API of PHP_ME_MAPPING changed)
+- utf16_to_utf8() adn utf8_to_utf16() was missing in the OO-Wrapper
     </notes>
     <deps>
       <dep type="php" rel="ge" version="4.1"/>
http://cvs.php.net/viewvc.cgi/pecl/pdf/pdf.c?r1=1.150&r2=1.151&diff_format=u
Index: pecl/pdf/pdf.c
diff -u pecl/pdf/pdf.c:1.150 pecl/pdf/pdf.c:1.151
--- pecl/pdf/pdf.c:1.150        Thu Oct  5 11:57:53 2006
+++ pecl/pdf/pdf.c      Tue Oct 31 18:09:27 2006
@@ -17,12 +17,12 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: pdf.c,v 1.150 2006/10/05 11:57:53 rjs Exp $ */
+/* $Id: pdf.c,v 1.151 2006/10/31 18:09:27 rjs Exp $ */
 
 /* {{{ Comments about the module */
 
 /* derived from:
-   $Id: pdf.c,v 1.150 2006/10/05 11:57:53 rjs Exp $
+   $Id: pdf.c,v 1.151 2006/10/31 18:09:27 rjs Exp $
    synced with pdflib.h 1.237 */
 
 /* PDFlib 2.02 ... 4.0.x is subject to the ALADDIN FREE PUBLIC LICENSE.
@@ -63,7 +63,7 @@
 
 /* Bootstrap of PDFlib Feature setup */
 #define PDF_FEATURE_INTERNAL
-#define   PDFLIB_PECL_VERSIONSTRING "2.1.0"
+#define   PDFLIB_PECL_VERSIONSTRING "2.1.1"
 
 /* set this define if you want to include GD support
  * this adds the (unofficial) function pdf_open_memory_image()
@@ -795,7 +795,7 @@
        php_info_print_table_row(2, "PDF Support", "enabled" );
        php_info_print_table_row(2, "PDFlib GmbH Version", PDFLIB_VERSIONSTRING 
);
        php_info_print_table_row(2, "PECL Version", PDFLIB_PECL_VERSIONSTRING);
-       php_info_print_table_row(2, "Revision", "$Revision: 1.150 $" );
+       php_info_print_table_row(2, "Revision", "$Revision: 1.151 $" );
        php_info_print_table_end();
 
 }
http://cvs.php.net/viewvc.cgi/pecl/pdf/pdf7.c?r1=1.1&r2=1.2&diff_format=u
Index: pecl/pdf/pdf7.c
diff -u pecl/pdf/pdf7.c:1.1 pecl/pdf/pdf7.c:1.2
--- pecl/pdf/pdf7.c:1.1 Thu Oct  5 11:57:53 2006
+++ pecl/pdf/pdf7.c     Tue Oct 31 18:09:28 2006
@@ -1,4 +1,4 @@
-/* $Id: pdf7.c,v 1.1 2006/10/05 11:57:53 rjs Exp $ */
+/* $Id: pdf7.c,v 1.2 2006/10/31 18:09:28 rjs Exp $ */
 
 /* With PDFlib 7 we start a new wrapper source as most of the code will be
  * created automatically.
@@ -58,6 +58,8 @@
        PDF_ME_MAPPING(open_pdi, pdf_open_pdi, NULL)
        PDF_ME_MAPPING(__construct, pdf_new, NULL)
        PDF_ME_MAPPING(delete, pdf_delete, NULL)
+       PHP_ME_MAPPING(utf16_to_utf8, pdf_utf16_to_utf8, NULL)
+       PHP_ME_MAPPING(utf8_to_utf16, pdf_utf8_to_utf16, NULL)
        {NULL, NULL, NULL}
 };
 
@@ -334,7 +336,7 @@
        php_info_print_table_row(2, "PDFlib GmbH Version", PDFLIB_VERSIONSTRING 
);
 #endif /* PDF_FEATURE_INTERNAL */
        php_info_print_table_row(2, "PECL Version", PDFLIB_PECL_VERSIONSTRING);
-       php_info_print_table_row(2, "Revision", "$Revision: 1.1 $" );
+       php_info_print_table_row(2, "Revision", "$Revision: 1.2 $" );
        php_info_print_table_end();
 
 }



<Prev in Thread] Current Thread [Next in Thread>