summaryrefslogtreecommitdiff
path: root/pear
Commit message (Collapse)AuthorAgeFilesLines
...
* Added support for passing special backend params in DSN. Ex:Tomas V.V.Cox2002-02-011-1/+17
| | | | | ibase://user:pass@localhost/db?role=foo&dialect=bar
* * Fix bug #15313Martin Jansen2002-01-311-1/+1
|
* * lowercase tags and attributesStig Bakken2002-01-311-22/+22
|
* * remove broken rule for rebuilding MakefileStig Bakken2002-01-311-4/+1
|
* * don't make command libs executableStig Bakken2002-01-301-1/+1
|
* * modularize "pear" and "pear-get" commands somewhat. checking optionsStig Bakken2002-01-3012-693/+398
| | | | | etc. is done for both in pearcmd-common.php.
* * silence warningStig Bakken2002-01-301-4/+8
|
* * bring DTD up to dateStig Bakken2002-01-301-103/+46
|
* * Remove the use of a temp dirVincent Blavet2002-01-261-37/+11
| | | | | * Tar archive is now doing the same work with less overhead
* correct urlTomas V.V.Cox2002-01-241-1/+1
|
* * Call the PEAR_Registry constructor with the optional parameterVincent Blavet2002-01-242-3/+3
|
* * Adding the ability to set the PEAR_INSTALL_DIR while creating the Registry ↵Vincent Blavet2002-01-241-2/+2
| | | | object (in the same way as Installer.php)
* * Adding support of extraction of remote archive http://www/archive.tgzVincent Blavet2002-01-241-6/+64
| | | | | * Correct bug while using Windows root path c:\xxx\yyy in extract fct
* * Add uninstall commandVincent Blavet2002-01-231-2/+34
| | | | | * Add list-installed command
* Return false when the directory can not be created in mkDir()Tomas V.V.Cox2002-01-231-4/+5
|
* Adding Archive/Tar.php to php4/pear/. This is needed in order for theJon Parise2002-01-212-0/+1055
| | | | | | phptar script (php4/pear/scripts/phptar) to be useful, so it makes sense to make Archive/Tar.php a standard component.
* Move Cache to /pear.Sebastian Bergmann2002-01-203-391/+0
|
* Move Payment_Verisign to /pear.Sebastian Bergmann2002-01-201-2/+0
|
* Move Benchmark, Math, Numbers to /pear. Remove Log, it was already in /pear.Sebastian Bergmann2002-01-202-212/+0
|
* Stores limit_from and limit_count as DB_result proporties insteadTomas V.V.Cox2002-01-191-8/+19
| | | | | of DB_common. Fixs bug when doing queries inside limitQuery results.
* New DSN "protcocol(protocol_opts)" format support:Tomas V.V.Cox2002-01-131-27/+44
| | | | | | | | | phptype://user:pass@protocol(proto_opts)/database ex: pgsql://user@unix()/pear mysql://user@unix(/path/to/socket)/pear pgsql://user:pass@word@tcp(somehost:7777)/pear
* - Added HTTP::head($url) which sends a "HEAD" HTTP command to a serverTomas V.V.Cox2002-01-111-2/+54
| | | | | | and returns the headers as an associative array - Call-time pass-by-reference fixes
* submit a test that will fail due to php bug #14744Tomas V.V.Cox2002-01-111-6/+35
|
* wsTomas V.V.Cox2002-01-071-37/+37
|
* use the new Console_Getopt::readPHPArgv() function to read argsTomas V.V.Cox2002-01-062-11/+11
|
* Added readPHPArgv() function that will safely read the $argv PHP arrayTomas V.V.Cox2002-01-061-3/+30
| | | | | | across different PHP configurations. Will take care on register_globals and register_argc_argv ini directives and the new $_SERVER vars
* Added check for $argv avaibleTomas V.V.Cox2002-01-052-4/+8
| | | | | (thanks Michael Härtl <mhaertl@pressline.de>)
* * PEAR.php line number changes againStig Bakken2002-01-021-5/+5
|
* * registry files renamed from .inf to .reg, update testStig Bakken2002-01-021-1/+1
|
* * support "pear-get install XML_RPC"Stig Bakken2002-01-021-1/+14
|
* * start splitting "pear" command into "pear" and "pear-get"Stig Bakken2002-01-023-11/+357
|
* * use new overloading API properlyStig Bakken2002-01-021-10/+17
|
* * install PEAR/Dependency.phpStig Bakken2001-12-291-0/+1
|
* - Rewrote infoFromTgzFile() (Stig, no more "pedantic" :-)Tomas V.V.Cox2001-12-281-22/+29
| | | | | | - Added <description> tag for package.xml - Temporal fix arround php bug #14744 and temp files cleaning
* * added <description> element in <package>Stig Bakken2001-12-281-2/+7
|
* switch to use the xml end tag function for correct handlingTomas V.V.Cox2001-12-271-74/+74
| | | | | of multiline tag contents
* added default target for installing documentationTomas V.V.Cox2001-12-261-1/+2
|
* reverted the last change for nowTomas V.V.Cox2001-12-261-4/+4
|
* - Install files marked as "role=doc" in a central PEAR doc dirTomas V.V.Cox2001-12-261-27/+37
| | | | | | | (defaults to PHP_DATADIR/pear/doc/Package_name/) - Store a new property of each installed file ['installed_as'] for easy uninstall
* * use "windir" env.var on Windows tooStig Bakken2001-12-261-0/+3
|
* * added System::tmpdir() method (now uses SystemRoot env.var on Windows)Stig Bakken2001-12-261-9/+18
|
* added the <license> tag under <release> for the package.xml fileTomas V.V.Cox2001-12-231-1/+2
|
* * add "pedantic" mode in infoFromTgzFile and skip some checks if notStig Bakken2001-12-221-3/+6
| | | | | pedantic
* Install session module haederYasuo Ohgaki2001-12-211-0/+1
|
* * Change $Version$ to $Revision$.Martin Jansen2001-12-181-1/+1
|
* * Convert tabs to spaces.Martin Jansen2001-12-181-35/+36
|
* that makes more senseTomas V.V.Cox2001-12-181-1/+1
|
* quick fix for the "pear info" commandTomas V.V.Cox2001-12-181-4/+13
|
* Added dependencies check support for InstallerTomas V.V.Cox2001-12-171-2/+30
|
* ensure correct package names and versions in the xml parserTomas V.V.Cox2001-12-171-1/+2
|