summaryrefslogtreecommitdiff
path: root/ext/intl
Commit message (Collapse)AuthorAgeFilesLines
* fix size & compilation on DarwinStanislav Malyshev2015-01-181-2/+3
|
* Fixed bug #68848 Missing returnJoshua Rogers2015-01-171-1/+1
|
* attempt to fix again :<Xinchen Hui2015-01-171-1/+1
|
* Fix againXinchen Hui2015-01-171-1/+1
|
* Merge branch 'master' of https://git.php.net/repository/php-srcXinchen Hui2015-01-1711-0/+1666
|\
| * Add IntlChar class to intl extensionSara Golemon2015-01-1611-0/+1666
| | | | | | | | Exposes ICU's uchar functionality as a set of static methods
* | Try to fix ext/intl/tests/collator_asort.phpt (according to CI's output)Xinchen Hui2015-01-171-4/+4
|/
* Fixed missed testXinchen Hui2015-01-151-5/+5
|
* Faster sorting algoXinchen Hui2015-01-141-3/+13
|
* trailing whitespace removalStanislav Malyshev2015-01-1045-327/+327
|
* Fix uses of zval_add_ref and add comment on usageNikita Popov2015-01-052-3/+3
| | | | | | | | zval_add_ref should be used as a copy ctor, after the value was already copied. In particular when used with hash insertions, it should be applied to the return value of the insert function.
* cleanup intl typesStanislav Malyshev2014-12-2944-303/+292
|
* eliminate usage of deprecated zend_get_parameters_exStanislav Malyshev2014-12-281-17/+8
|
* fix typoStanislav Malyshev2014-12-281-1/+1
|
* Use "float" and "integer" in typehint and zpp errorsAndrea Faulds2014-12-2118-27/+27
|
* Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-12-175-3/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: fix unserializer patch move this entry to the correct version add missing NEWS entry add missing NEWS entry Updated or skipped certain 32-bit tests add NEWS entry for #68594 5.4.37 add more BC breaks update news add CVE add missing test file Fix bug #68594 - Use after free vulnerability in unserialize() Fix typo Hash value must not zero?
| * Updated or skipped certain 32-bit testsAndrea Faulds2014-12-175-3/+11
| |
* | almost all the replacements of TSRMLS_* are doneAnatol Belski2014-12-141-3/+1
| | | | | | | | | | | | | | Some places have to be yet touched as they use different/custom macros namings for the same. Also some places in the code became redundant now, this is the next task. To name some: ext/mysqlnd, sapi/embed, ext/curl and some smaller places here and there.
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-1396-1489/+1488
| |
* | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-12-052-1/+6
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (111 commits) Fix zend_fcall_info_arg*() to use ZVAL_COPY Fixed #65213 - cannot cast SplFileInfo to boolean add initial install switch to C travis project instead of PHP use the generic TRAVIS environment var to check for travis (see http://docs.travis-ci.com/user/ci-environment/) fix TS build add config option to target codegen architectures updated NEWS updated NEWS Fixed bug #55541 errors spawn MessageBox, which blocks test automation Get rid of duplicate handlers (ZEND_ADD_SPEC_TMP_TMP and ZEND_ADD_SPEC_VAR_VAR are absolutely the same). Use zend_string* for op_array->arg_info[]->name and op_array->arg_info[]->class_name. For internal functions we still use char*. Fixed __debugInfo() support Update UPGRADING for the new variadic functions, and re-sort. Improved POST INC/DEC make sure that we don't truncate the stack trace and cause false test failures when the test is executed in a directory with long path Missed closed folder mark Revert "Unecessary assignment" Fixed improper memory release Unecessary assignment ...
| * Merge branch 'PHP-5.6'Stanislav Malyshev2014-11-301-1/+1
| |\ | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Update NEWS fix typo Added test and review suggestion Fix bug #68335: rmdir doesnt work with file:// stream wrapper
| | * Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-11-301-1/+1
| | |\ | | | | | | | | | | | | | | | | | | | | * PHP-5.5: Update NEWS fix typo
| | | * fix typoStanislav Malyshev2014-11-301-1/+1
| | | |
| * | | Merge branch 'PHP-5.6'Stanislav Malyshev2014-11-301-0/+5
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.6: fix tests for systems with no de_DE locales
| | * | fix tests for systems with no de_DE localesStanislav Malyshev2014-11-301-0/+5
| | | |
* | | | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-11-262-0/+35
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (102 commits) fix dir separator in test fix TS build fix TS build Better fix for bug #68446 Revert "Merge remote-tracking branch 'origin/PHP-5.6'" Revert NEWS and set test to XFAIL Revert "Fix bug #68446 (bug with constant defaults and type hints)" Improved zend_hash_clean() and added new optimized zend_symtable_clean() Use inline version of zval_ptr_dtor() Added new optimized zend_array_destroy() function Moved i_zval_ptr_dtor() from zend_execute.h to zend_variables.h fix REGISTER_NS_*_CONSTANT macros Removed useless assert. EG(uninitialized_zval) can't be refcounted. Use specialized destructors when types of zvals are known. move tests into proper place Improved assignment to object property Reuse zend_assign_to_variable() in zend_std_write_property() cleanup comments from svn/cvs era fix dir separator in test fork test for windows ...
| * | | Merge branch 'PHP-5.6'Anatol Belski2014-11-212-0/+35
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * PHP-5.6: added test for things done so far for bug #66265 partially fixed bug #66265 forked bug67052.phpt for Windows
| | * | Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-11-212-0/+35
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | * PHP-5.5: added test for things done so far for bug #66265 partially fixed bug #66265 forked bug67052.phpt for Windows
| | | * forked bug67052.phpt for WindowsAnatol Belski2014-11-212-0/+35
| | | |
* | | | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-11-2033-15/+697
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (36 commits) NEWS adapt test for error message introduce in fix for #68463 Fix bug #68463 listen.allowed_clients can silently result in no allowed access run a few request in this test fix test fix test added info about some other macro changes added note about toolset and phpize added note about the response files split msgfmt_format_intlcalendar_variant*.phpt for ICU 54.1 split formatter_format*.phpt for ICP 54.1 split dateformat_timezone_arg_variations*.phpt for ICU 54.1 split dateformat_get_set_timezone_variant*.phpt for ICU 54.1 fix icu version to test split ext/intl/tests/dateformat_get_set_calendar_variant*.phpt for 54.1 split dateformat_formatObject_datetime_variant*.phpt for ICU 54.1 split dateformat_formatObject_calendar_variant*.phpt for ICU 54.1 split dateformat_create_cal_arg_variant2.phpt for ICU 53.1 and 54.1 clone dateformat_calendars_variant3.phpt for ICU 54.1 split collator_get_sort_key_variant3.phpt for icu 54.1 ...
| * | | Merge branch 'PHP-5.6'Anatol Belski2014-11-2022-3/+685
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: split msgfmt_format_intlcalendar_variant*.phpt for ICU 54.1 split formatter_format*.phpt for ICP 54.1 split dateformat_timezone_arg_variations*.phpt for ICU 54.1 split dateformat_get_set_timezone_variant*.phpt for ICU 54.1 fix icu version to test split ext/intl/tests/dateformat_get_set_calendar_variant*.phpt for 54.1 split dateformat_formatObject_datetime_variant*.phpt for ICU 54.1 split dateformat_formatObject_calendar_variant*.phpt for ICU 54.1 split dateformat_create_cal_arg_variant2.phpt for ICU 53.1 and 54.1 clone dateformat_calendars_variant3.phpt for ICU 54.1 split collator_get_sort_key_variant3.phpt for icu 54.1 split ext/intl/tests/collator_create3.phpt for icu >= 54.1
| | * | Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-11-2022-3/+685
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: split msgfmt_format_intlcalendar_variant*.phpt for ICU 54.1 split formatter_format*.phpt for ICP 54.1 split dateformat_timezone_arg_variations*.phpt for ICU 54.1 split dateformat_get_set_timezone_variant*.phpt for ICU 54.1 fix icu version to test split ext/intl/tests/dateformat_get_set_calendar_variant*.phpt for 54.1 split dateformat_formatObject_datetime_variant*.phpt for ICU 54.1 split dateformat_formatObject_calendar_variant*.phpt for ICU 54.1 split dateformat_create_cal_arg_variant2.phpt for ICU 53.1 and 54.1 clone dateformat_calendars_variant3.phpt for ICU 54.1 split collator_get_sort_key_variant3.phpt for icu 54.1 split ext/intl/tests/collator_create3.phpt for icu >= 54.1 Conflicts: ext/intl/tests/dateformat_create_cal_arg_variant3.phpt ext/intl/tests/dateformat_formatObject_calendar_variant3.phpt ext/intl/tests/dateformat_formatObject_datetime_variant3.phpt ext/intl/tests/dateformat_get_set_calendar_variant3.phpt ext/intl/tests/dateformat_get_set_timezone_variant3.phpt ext/intl/tests/dateformat_timezone_arg_variations3.phpt ext/intl/tests/msgfmt_format_intlcalendar_variant3.phpt
| | | * split msgfmt_format_intlcalendar_variant*.phpt for ICU 54.1Anatol Belski2014-11-203-1/+62
| | | |
| | | * split formatter_format*.phpt for ICP 54.1Anatol Belski2014-11-202-1/+132
| | | |
| | | * split dateformat_timezone_arg_variations*.phpt for ICU 54.1Anatol Belski2014-11-203-1/+93
| | | |
| | | * split dateformat_get_set_timezone_variant*.phpt for ICU 54.1Anatol Belski2014-11-203-1/+126
| | | |
| | | * fix icu version to testAnatol Belski2014-11-201-1/+1
| | | |
| | | * split ext/intl/tests/dateformat_get_set_calendar_variant*.phpt for 54.1Anatol Belski2014-11-203-1/+112
| | | |
| | | * split dateformat_formatObject_datetime_variant*.phpt for ICU 54.1Anatol Belski2014-11-203-1/+68
| | | |
| | | * split dateformat_formatObject_calendar_variant*.phpt for ICU 54.1Anatol Belski2014-11-203-1/+82
| | | |
| | | * split dateformat_create_cal_arg_variant2.phpt for ICU 53.1 and 54.1Anatol Belski2014-11-203-1/+108
| | | |
| | | * clone dateformat_calendars_variant3.phpt for ICU 54.1Anatol Belski2014-11-202-0/+46
| | | |
| | | * split collator_get_sort_key_variant3.phpt for icu 54.1Anatol Belski2014-11-202-1/+100
| | | |
| | | * split ext/intl/tests/collator_create3.phpt for icu >= 54.1Anatol Belski2014-11-202-1/+81
| | | |
| | | * 1.2 is a problematic float to print outRasmus Lerdorf2014-07-141-0/+2
| | | | | | | | | | | | | | | | Lower the default display precision for this test
| | * | 1.2 is a problematic float to print outRasmus Lerdorf2014-07-141-0/+2
| | | | | | | | | | | | | | | | Lower the default display precision for this test
| * | | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-1911-12/+12
| | | |
* | | | opcache, intl, gmp, exif, com, bcmath to use static tsrmlsAnatol Belski2014-10-174-3/+12
| | | |
* | | | bring back all the TSRMLS_FETCH() stuffAnatol Belski2014-10-151-0/+2
| | | | | | | | | | | | | | | | for better comparability with the mainstream
* | | | cleanup TSRMLS_FETCHAnatol Belski2014-09-261-2/+0
| | | |