summaryrefslogtreecommitdiff
path: root/ext/mbstring
Commit message (Collapse)AuthorAgeFilesLines
* move html_entities.c to proper placeMarcus Boerger2002-08-041-1/+4
| | | | | #nice to have snaps.php.net
* -Correct mime_name for HTML-ENTITIES encoding is of cause US-ASCIIMarcus Boerger2002-08-041-3/+6
| | | | | -Full list of ASCII aliases
* -Fix warnings (fixed all?)Marcus Boerger2002-08-042-5/+5
|
* -Add new file to windows buildMarcus Boerger2002-08-041-0/+2
|
* -New encoding/decoding HTML-ENTITIES.Marcus Boerger2002-08-045-1/+572
| | | | | | | | | #This allows to enforce named and numeric entities in output. #Example:CMS that reads UTF8 or ISO-8859-1 but exports HTML in ASCII. #Using mbstring.http_output=HTML-ENTITIES users receive entities which #can displayed correctly independant of any brwoser side encoding. @New mbstring encoding/decoding HTML-ENTITIES. (marcus)
* -Allow double quotes for encoding lists (if used in ini for example)Marcus Boerger2002-08-041-3/+34
| | | | | | | | -New parameter 'L' for mb_http_input() to retieve input encoding as comma separated string. @New parameter 'L' for mb_http_input() to retrieve input encoding as comma separated string. (marcus)
* - Fix build on Windows. Also please don't use Java style opening functionAndi Gutmans2002-08-032-2/+3
| | | | | - bracket indentation.
* -use const to clarify codeMarcus Boerger2002-08-025-273/+297
| | | | | -fix tsrmls build (therefore rfc1867.c)
* made sapi_register_treat_data() to support multibyte input encoding ↵Rui Hirokawa2002-08-022-19/+33
| | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data.
* Fix crashZeev Suraski2002-07-311-1/+1
|
* Fixed query string handling. Now some.php?a&b=1;c works.Yasuo Ohgaki2002-07-281-22/+19
| | | | | # arg_separator.output can be multile chars
* fixed: output encoding translation by mb_output_handler() in ext/mbstring ↵Rui Hirokawa2002-07-271-3/+21
| | | | was not usable when Content-Type is set by header().
* unbreak the shared build..againfoobar2002-07-171-6/+7
|
* Changed configure option order to make it clear option dependecy to users.Yasuo Ohgaki2002-07-171-8/+9
|
* Disable input encoding tranlation by default.Yasuo Ohgaki2002-07-171-2/+2
|
* Fix bug #16985 (wrong count of GET/POST variables).Edin Kadribasic2002-07-151-8/+11
|
* These options are all enabled by default. (why?)foobar2002-07-141-2/+2
|
* These options are all enabled by default. (why?)foobar2002-07-141-2/+2
|
* Remove unused variables.Sebastian Bergmann2002-07-121-1/+0
|
* added mbstring.language option in ext/mbstring.Rui Hirokawa2002-07-111-5/+66
|
* fixed shift_jis character corruption including 0x5c as second byte following ↵Rui Hirokawa2002-07-052-0/+10
| | | | a slash on uploaded filename.
* Removed unneeded check for MBSTR_ENC_TRANSFrank M. Kromann2002-07-031-2/+0
|
* Adding _RU files to projectFrank M. Kromann2002-07-031-1/+9
|
* Fixing ZTS buildFrank M. Kromann2002-07-032-2/+2
|
* fixed shift_jis character corruption including 0x5c as second byte on ↵Rui Hirokawa2002-07-032-0/+23
| | | | uploaded filename.
* small fix in preprocessor directiveDen V. Tsopa2002-06-221-1/+1
|
* correct handling/generating of php_mbstr_default_identify_listMarcus Boerger2002-06-191-3/+10
|
* Fixed bug: #17137, test pass stillfoobar2002-06-181-2/+2
|
* Changed the configure option to be --enable/disablefoobar2002-06-061-2/+2
|
* Makring function declarations match implementations (ZTS compilation)Frank M. Kromann2002-06-011-6/+6
|
* Fixed typo..foobar2002-05-311-1/+1
|
* Fixes some dummy errors (again).Den V. Tsopa2002-05-301-30/+42
|
* Added GB2312 alias for CN-GBDen V. Tsopa2002-05-291-1/+1
|
* @Fixed some dummy errors. (dets)Den V. Tsopa2002-05-291-43/+31
|
* reverted my patch.Rui Hirokawa2002-05-241-9/+7
|
* reverted patch to support iso2022kr.Rui Hirokawa2002-05-245-8/+173
|
* ZTS fixes.Sebastian Bergmann2002-05-211-9/+9
|
* Added russian codepages (koi8-r,cp1251,cp866) support.Den V. Tsopa2002-05-217-108/+482
|
* Range check arguments to mb_strcut().Preston L. Bannister2002-05-161-0/+8
| | | | | Test ext/mbstring/013.phpt causes a hard failure w/o this.
* Proper declaration to suppress compiler warning.Preston L. Bannister2002-05-161-1/+1
|
* added ISO-2022-KR support in mbstring.Rui Hirokawa2002-05-155-2/+324
|
* fixed a initialization bug in euc-tw.Rui Hirokawa2002-05-141-0/+1
|
* Fix this again.Sascha Schumann2002-05-121-1/+1
| | | | | | | | | | | | If you are unsure whether enable or with shall be used, please inquire on the mailing list. WITH is solely for the purpose of pointing to paths and other external entities. Note that the comment has always mentioned "--disable-mbstring" which clearly refers to enable and not with.
* added chinese HZ encoding support. fixed ascii area character conversion ↵Rui Hirokawa2002-05-125-11/+272
| | | | was not work in euc-cn and euc-kr.
* fixed to support --with-mbsting=LANG.Rui Hirokawa2002-05-121-1/+1
|
* Added conversion support from script character encoding to internal ↵Rui Hirokawa2002-05-084-4/+279
| | | | character encoding. This feature is very useful for japanese who uses Shift_JIS encoding because some of characters in Shift_JIS are including '0x5c' and it causes some troubles on Zend parser. This patch is made by Masaki Fujimoto.
* bug fixed in unicode -> cp1252 table.Rui Hirokawa2002-05-052-7/+7
|
* added missing areas on Unicode->CP936 conversion table. added an alias CP932 ↵Rui Hirokawa2002-05-053-33/+88
| | | | on sjis-win.
* Turn misplaced PHP_ARG_WITH into _ENABLESascha Schumann2002-05-041-3/+3
| | | | | and fix --enable-mbstring=shared
* Changed & to &&.Frank M. Kromann2002-05-021-2/+2
|