History log of /PHP-5.5/ext/iconv/iconv.c (Results 76 – 100 of 199)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.4.1RC1, RELEASE_0_9_0, RELEASE_1_0RC1, PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5, php-5.0.5RC2, php-5.0.5RC1, php-5.1.0RC1, BEFORE_UNICODE_MERGE, RELEASE_2_0_0
# 23e671a5 03-Aug-2005 foobar

- Bumber up year


Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# 0c6368d4 08-Jun-2005 Ilia Alshanetsky

Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in length)


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2
# 8f14211e 23-Mar-2005 Moriyoshi Koizumi

- Add sanity check in iconv_mime_encode(). Leaving the third parameter
unspecified would yield bus error.


Revision tags: php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1
# ce022d27 23-Nov-2004 Derick Rethans

- Export "php_iconv_string()".


Revision tags: PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2
# f370d029 13-Aug-2004 Antony Dovgal

fix compile warning


Revision tags: php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1
# f89486a3 20-Jul-2004 Moriyoshi Koizumi

- Fix possible leaks / segfaults in persistent filter


# 967c7286 19-Jul-2004 Moriyoshi Koizumi

- Fix a bug in iconv stream filter that prevents pending buckets from being
processed on flush operation (same issue pollita fixed several days ago).


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0, php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


# 06232e48 06-Jan-2004 Moriyoshi Koizumi

Prevent a character from being wrongly doubled in the buffer.


# 3d618a2f 27-Dec-2003 Moriyoshi Koizumi

Just laugh at me :)


# 07469af0 27-Dec-2003 Moriyoshi Koizumi

- Add missing sanity check.


# 529dd348 24-Dec-2003 Moriyoshi Koizumi

- Supply some comments. Hope those help when you have to debug this dead beef.
- Fix iconv_mime_decode() to correctly handle "malformed" headers :)
- Fix iconv_mime_decode() bug, that the res

- Supply some comments. Hope those help when you have to debug this dead beef.
- Fix iconv_mime_decode() to correctly handle "malformed" headers :)
- Fix iconv_mime_decode() bug, that the result is mangled when
ICONV_MIME_CONTINUE_ON_ERROR is enabled and the function encounters an
unconvertable encoded chunk.

show more ...


# 3b7dcf5e 23-Dec-2003 Moriyoshi Koizumi

Those are not structures :-)


# cf40d924 23-Dec-2003 Ilia Alshanetsky

Fixed compiler warnings.


# 1b239fc9 22-Dec-2003 Moriyoshi Koizumi

- Fix multibyte handling errors in iconv_mime_encode() when quoted-printable
encoding scheme is used.
- Fix segfault that occurs in iconv_mime_encode() when input_charset or
output_ch

- Fix multibyte handling errors in iconv_mime_encode() when quoted-printable
encoding scheme is used.
- Fix segfault that occurs in iconv_mime_encode() when input_charset or
output_charset parameter is not specified in the associative array.

show more ...


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# dcbc5706 08-Dec-2003 Moriyoshi Koizumi

Fix iconv stream filter to properly handle multibyte characters that
span at the alignment of a hunk.


# a682e0a5 06-Dec-2003 Moriyoshi Koizumi

Add missing iconv_close() call


# f9470daf 05-Dec-2003 Moriyoshi Koizumi

Add a missing marker


# 1982ae62 05-Dec-2003 Wez Furlong

fix zts build


# 4f14ee67 04-Dec-2003 Moriyoshi Koizumi

Type-punning is evil.


# 6fc73dda 04-Dec-2003 Moriyoshi Koizumi

Add iconv stream filter.

# a quick synopsis:
#
# <?php
# stream_filter_append(STDIN, 'convert.iconv.UTF-8/ISO-8859-15');
#
# fpassthru(STDIN);
# ?>
#


# 3c02eb1f 02-Dec-2003 Moriyoshi Koizumi

all '_' (underscores) should be replaced by '\x20' (whitespaces)
in encoding.
# should I bump API version?


# ca2aaeee 01-Dec-2003 Moriyoshi Koizumi

Loosen error check. There's no reason to forbid a single '=' occurrence
in an unencoded string.
Fix white space handing. Meaningful spaces have got stripped wrongly
before this patch.


# 1b8dd3ba 01-Dec-2003 Moriyoshi Koizumi

Allow iconv_mime_decode_headers() to handle multiple occurence of a header.


# 869493d4 01-Dec-2003 Moriyoshi Koizumi

Add iconv_mime_decode_headers() to parse multiple MIME headers.
A few trivial fixes.


12345678