summaryrefslogtreecommitdiff
path: root/ext/mcal/php_mcal.c
Commit message (Collapse)AuthorAgeFilesLines
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn'tAndi Gutmans2001-12-031-38/+38
| | | | | - change something I wasn't supposed to. It should be fine IMO.
* - BeautifyingDerick Rethans2001-11-221-1/+1
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-1/+10
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* - More <br> to <br /> fixesDerick Rethans2001-10-091-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-94/+94
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - More ZE2 fixesAndi Gutmans2001-08-131-1/+1
|
* Yet another TSRM fix.foobar2001-08-071-8/+9
|
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-3/+4
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-2/+2
|
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* - Finally rename modules.h to zend_modules.h for consistency (first tryAndi Gutmans2001-02-261-1/+1
| | | | | | | was 2000-03-11). - Remove the first_arg_force_ref[]; and friends extern from php.h as they are included via zend_API.h
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* spaces after commas. all whitespace.Chuck Hagenbuch2000-12-051-38/+38
|
* Fixed some compile warnings and removed useless code.foobar2000-11-011-7/+3
|
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-1/+1
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-2/+3
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* fixed logic error in the get parameters stage of mcal_list_alarmsAndrew Skalski2000-10-181-1/+1
|
* spaces to tabs. do we have a standard on this?Chuck Hagenbuch2000-10-171-5/+5
|
* replace fixed-size buffers for username and password with dynamicallyChuck Hagenbuch2000-10-171-4/+7
| | | | | allocated strings in the MCAL extension.
* fixing the license header and updating some prototypes/variable names in theChuck Hagenbuch2000-08-271-29/+18
| | | | | mcal extension.
* Get rid of php_global.h and the associated data types UINT4/_POINTER.Sascha Schumann2000-08-211-3/+3
| | | | | | | We use php_uint32 now globally. Also removed K&R support from md5.[ch].
* Protos fixed.Egon Schmid2000-07-141-2/+2
|
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-4/+0
|
* Include php_global.h, instead of global.hAndrei Zmievski2000-06-081-1/+1
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-39/+39
|
* proto fixedHartmut Holzgraefe2000-05-261-1/+1
|
* some protos got to the wrong function - fixedHartmut Holzgraefe2000-05-231-3/+3
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-2/+2
|
* Do not use non-standard type u_int32_t.Sascha Schumann2000-05-131-2/+3
| | | | | | | Instead, use UINT4 for now which is platform-independent. PR: #4262
* #if COMPILE_DLSascha Schumann2000-05-021-2/+2
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* *** empty log message ***Colin Viebrock2000-04-061-3/+4
|
* More phpinfo() prettying.Colin Viebrock2000-04-061-6/+9
| | | | | | | Can someone check my code for the interbase support, and I need someone else to decode the LDAP stuff ... it's beyond me.
* tweaks to prototypesChuck Hagenbuch2000-04-041-9/+4
|
* spelling correction, and rename make_event_object to _php_make_event_objectChuck Hagenbuch2000-03-121-4/+4
| | | | | for consistency.
* pval->zvalChuck Hagenbuch2000-03-121-516/+515
| | | | | | | | | use the *_ex() functions use zend_get_parameters_ex Tested on my calendar code, and seems to be crash free. But I think I'll wait on converting the IMAP module, since this was quite a pain. :)
* - Oops I commited a name change for consistency of Zend/modules.h toAndi Gutmans2000-03-111-2/+2
| | | | | Zend/zend_modules.h before it being finished. Revert it
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-111-1/+1
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* switching the order of arguments of mcal_week_of_day() to be more flexible -Chuck Hagenbuch2000-03-111-2/+2
| | | | | | day, month, year now so that month and year can be defaulted at some point. this is also consistent with the library function.
* Add mcal_week_of_year(), submitted by jtaskine@hit.fi.Chuck Hagenbuch2000-03-111-0/+26
|
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* Protos fixed.Egon Schmid2000-03-051-2/+2
|
* Attribute list support ported from php3.Chuck Hagenbuch2000-03-051-2/+51
|
* Show the minor MCAL version if we have it.Chuck Hagenbuch2000-03-011-1/+4
|
* fixing number of arguments to be consistent with php3 code.Chuck Hagenbuch2000-02-281-57/+32
|
* mcal_next_recurrence() actually works again now (in addition to notChuck Hagenbuch2000-02-281-318/+258
| | | | | | | crashing). Also, cleaned up the formatting.
* Some formatting, and fix the crashes in mcal_next_recurrence (finally!)Chuck Hagenbuch2000-02-271-51/+49
|
* - Removing the code that checks for Zend, since this is distinctlyChuck Hagenbuch2000-02-261-164/+183
| | | | | | | | | php4-specific now. - bringing it up to date with the mcal functions in php3 - cleanups Unfortunately, it still segfaults. I'll file a bug report about that...
* More protos.Egon Schmid2000-02-241-59/+46
|