summaryrefslogtreecommitdiff
path: root/pear
Commit message (Collapse)AuthorAgeFilesLines
* moved from the Experimental dir. the basic things should work...Christian Stocker2001-07-301-0/+627
|
* raiseError() now can accepts a PEAR error object in its first argument. WithTomas V.V.Cox2001-07-291-2/+10
| | | | | | this, users can "re-throw" a previously created PEAR error object (very useful after the use of (push|pop)ErrorHandling)
* Added the methods pushErrorHandler and popErrorHandler. With this it'sTomas V.V.Cox2001-07-291-7/+71
| | | | | | posible to override the actual error handler with a new one for the time you need and restore it back when finish.
* Bugfix by Johannes ErdfeltAlexander Merz2001-07-271-1/+1
|
* DB::assertExtension-> trigger a useful error message if backend extension ↵Tomas V.V.Cox2001-07-261-0/+3
| | | | couldn't be loaded
* * added emacs footerStig Bakken2001-07-251-99/+106
|
* move the package list handler methods to the new Packlist.php also removedTomas V.V.Cox2001-07-191-413/+4
| | | | | the unused code
* This class will handle the pear packages database (it's experimental now)Tomas V.V.Cox2001-07-191-0/+254
|
* added TODO and checks before try to open the package.xml fileTomas V.V.Cox2001-07-191-1/+12
|
* - Only decompress package onceTomas V.V.Cox2001-07-181-36/+27
| | | | | | - Allow relative directory package calls (for ex: pear install packs/Pear_DB-1.1.tgz)
* - remove the xml parser code (use PEAR_Common::infoFromDescFile)Tomas V.V.Cox2001-07-181-40/+159
| | | | | | | | - added the new package.xml Dir tag support - killed many bugs and warnings (as it is quite usable yet, work is still in progress)
* - always write a the package definition file as 'package.xml' inside the packageTomas V.V.Cox2001-07-181-6/+11
| | | | | - other clean-up's
* killed some warningsTomas V.V.Cox2001-07-181-3/+3
|
* Private members don't have to be functions.Jon Parise2001-07-181-4/+5
|
* Woops, missed a closing paren.Jon Parise2001-07-171-1/+1
|
* Describe the standards for function naming and private methods.Jon Parise2001-07-171-0/+12
|
* Oops, said include but do require (thanks Jon and Rasmus)Tomas V.V.Cox2001-07-171-2/+2
|
* - Removed the xml parser code (use now PEAR_Common::infoFromDescriptionFile())Tomas V.V.Cox2001-07-171-37/+77
| | | | | | | | - Added the ability to build packages without the need of being in the same dir as the package.xml file (f.ex: pear package ./mypack/package.xml) - Removed methods log() and mkdirHier() as they are now in Common.php - More debug code and error checks
* moved methods log() and mkdirHier() from Packager/Installer to hereTomas V.V.Cox2001-07-171-1/+32
|
* include only the needed filesTomas V.V.Cox2001-07-171-2/+2
|
* fix problem with static usage...Chuck Hagenbuch2001-07-171-29/+32
|
* extend infoFromDescriptionFile() to:Tomas V.V.Cox2001-07-161-59/+129
| | | | | | | | | | - Handle the new FileList->Dir tag format (see http://marc.theaimsgroup.com/?l=pear-dev&m=99071271521558&w=2) - Attributes of Files can inherit from Dir - Support for the experimental LibFile/LibName/Sources tags other indents and fixes
* (PEAR DB) some doc fixesStig Bakken2001-07-151-44/+49
|
* added DB_PARAM_MISC constant to use in prepare/executeTomas V.V.Cox2001-07-121-1/+7
|
* added LOCK/UNLOCK to mainps queries (reported by Erik Hjortsberg)Tomas V.V.Cox2001-07-111-1/+3
|
* added NEED_MORE_DATA error message to $errorMessagesTomas V.V.Cox2001-07-101-3/+4
|
* minor in-line doc fixTomas V.V.Cox2001-07-101-1/+1
|
* Convert double-quotes to single-quotes.Sebastian Bergmann2001-07-071-20/+20
|
* * reverted "DIRECTORY_SEPARATOR" patchMartin Jansen2001-07-071-1/+0
|
* * added missing constantMartin Jansen2001-07-071-0/+1
|
* addes more logging and security optionsTomas V.V.Cox2001-07-071-2/+6
|
* whitespacesTomas V.V.Cox2001-07-061-30/+30
|
* Patch by Tobias, so parseInput returns pearErrorChristian Stocker2001-07-061-2/+6
|
* stupid missing semicolonChristian Stocker2001-07-041-1/+1
|
* Write-Patch by Alexander for bug reported by YavorChristian Stocker2001-07-031-0/+1
|
* Moved Config-Package from Experimental to main-directory, since noone ↵Christian Stocker2001-07-026-0/+1476
| | | | complained about it ;)
* Fix for #11821.Sebastian Bergmann2001-07-011-0/+1
|
* Forget to add the $this->result param to fetchIntoTomas V.V.Cox2001-06-081-1/+1
|
* Changed constant DB_OK from 0 to 1. So if you set a default error handler,Tomas V.V.Cox2001-06-071-1/+1
| | | | | | this will improve fetchInto usability [while ($res->fetchInto($row))], because don't disturb the while loop
* change DB_result::fetchRow to use extension fetchInto instead ofTomas V.V.Cox2001-06-071-1/+5
| | | | | DB_result::fetchInto (speed improvement)
* Fix long option parsing.Andrei Zmievski2001-05-291-1/+1
|
* @Added "pearize" script to generate Makefile.in files for PEAR extensionsStig Bakken2001-05-282-1/+169
|
* * added LibFile element, used to build Makefile.inStig Bakken2001-05-281-4/+31
|
* * missing fold marksStig Bakken2001-05-281-1/+5
|
* * typoStig Bakken2001-05-271-1/+1
|
* -Changed $param[0] to $param{0} less ambiguousTomas V.V.Cox2001-05-231-5/+5
| | | | | -Readd "-?" param that shows the usage msg
* * added missing doc for PEAR::raiseError skipmsg parameterStig Bakken2001-05-231-4/+10
|
* remove "?" from Console_Getopt. Sorry Andrei it was there andTomas V.V.Cox2001-05-221-1/+1
| | | | | I left there :)
* - added error cheking and abort when no script install dir is setTomas V.V.Cox2001-05-221-16/+7
| | | | | - minor typos
* - Added the following params support:Tomas V.V.Cox2001-05-221-20/+71
| | | | | | | | | | * -p set script install dir * -e set extension install dir * -d set documentation dest dir * -v set verbose level - Some error reporting clean up - Added the standar PHP copyright header and authors