phpfreechat-svn Mailing List for phpFreeChat (Page 23)
Status: Beta
Brought to you by:
kerphi
You can subscribe to this list here.
2006 |
Jan
|
Feb
(2) |
Mar
|
Apr
(61) |
May
(56) |
Jun
(96) |
Jul
(23) |
Aug
(62) |
Sep
(76) |
Oct
(48) |
Nov
(28) |
Dec
(28) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(31) |
Feb
(40) |
Mar
(29) |
Apr
(11) |
May
(6) |
Jun
(18) |
Jul
(18) |
Aug
(108) |
Sep
(24) |
Oct
(6) |
Nov
(21) |
Dec
|
2008 |
Jan
|
Feb
(1) |
Mar
(16) |
Apr
|
May
(3) |
Jun
|
Jul
(7) |
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(3) |
Dec
(2) |
2009 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ke...@us...> - 2006-08-29 21:01:20
|
Revision: 717 Author: kerphi Date: 2006-08-29 14:01:10 -0700 (Tue, 29 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=717&view=rev Log Message: ----------- add the local mirror to the list (for easy testing) Modified Paths: -------------- trunk/misc/tarSource Modified: trunk/misc/tarSource =================================================================== --- trunk/misc/tarSource 2006-08-29 20:55:31 UTC (rev 716) +++ trunk/misc/tarSource 2006-08-29 21:01:10 UTC (rev 717) @@ -35,6 +35,7 @@ rm -rf ./$PFCSETUPNAME/pearrc rm -rf ./$PFCSETUPNAME/OS echo "$NAME.tar.gz" > $PFCSETUPNAME/archive +echo `pwd` >> $PFCSETUPNAME/mirrors tar czfp $PFCSETUPNAME.tar.gz ./$PFCSETUPNAME echo "-> removing temporary files" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-29 20:55:38
|
Revision: 716 Author: kerphi Date: 2006-08-29 13:55:31 -0700 (Tue, 29 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=716&view=rev Log Message: ----------- - prepare the 1.0-beta5 - fix a prb with the version file - integrate pfcsetup in the script packager Modified Paths: -------------- trunk/misc/tarSource trunk/src/pfcglobalconfig.class.php trunk/version Modified: trunk/misc/tarSource =================================================================== --- trunk/misc/tarSource 2006-08-29 20:35:08 UTC (rev 715) +++ trunk/misc/tarSource 2006-08-29 20:55:31 UTC (rev 716) @@ -1,18 +1,43 @@ #!/bin/sh NAME=phpfreechat-`cat ../version` +PFCSETUPNAME=pfcsetup-`cat ../version` echo "-- creating archive $NAME --" echo "-> copying files" rm -rf ./$NAME svn export .. ./$NAME rm -rf ./$NAME/contrib + echo "-> creating checkmd5.php file" ./checkmd5 ./$NAME ./$NAME/checkmd5.php + echo "-> creating .tar.gz" tar czfp $NAME.tar.gz ./$NAME + echo "-> creating .zip" zip -Tq9r $NAME.zip ./$NAME + +echo "-> creating $PFCSETUPNAME" +rm -rf ./$PFCSETUPNAME +svn export ../contrib/pfcInstaller2 $PFCSETUPNAME +rm -rf ./$PFCSETUPNAME/.registry +rm -rf ./$PFCSETUPNAME/.depdblock +rm -rf ./$PFCSETUPNAME/.lock +rm -rf ./$PFCSETUPNAME/.channels +rm -rf ./$PFCSETUPNAME/tmp +rm -rf ./$PFCSETUPNAME/bin +rm -rf ./$PFCSETUPNAME/PEAR +rm -rf ./$PFCSETUPNAME/System.php +rm -rf ./$PFCSETUPNAME/peclcmd.php +rm -rf ./$PFCSETUPNAME/pearcmd.php +rm -rf ./$PFCSETUPNAME/pear.sh +rm -rf ./$PFCSETUPNAME/pearrc +rm -rf ./$PFCSETUPNAME/OS +echo "$NAME.tar.gz" > $PFCSETUPNAME/archive +tar czfp $PFCSETUPNAME.tar.gz ./$PFCSETUPNAME + echo "-> removing temporary files" rm -rf ./$NAME +rm -rf ./$PFCSETUPNAME echo "-- creating archive $NAME, done --" Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-08-29 20:35:08 UTC (rev 715) +++ trunk/src/pfcglobalconfig.class.php 2006-08-29 20:55:31 UTC (rev 716) @@ -419,7 +419,7 @@ $this->frozen_nick = false; // load version number from file - $this->version = file_get_contents(dirname(__FILE__)."/../version"); + $this->version = trim(file_get_contents(dirname(__FILE__)."/../version")); $this->is_init = (count($this->errors) == 0); } Modified: trunk/version =================================================================== --- trunk/version 2006-08-29 20:35:08 UTC (rev 715) +++ trunk/version 2006-08-29 20:55:31 UTC (rev 716) @@ -1 +1 @@ -1.0-beta4 \ No newline at end of file +1.0-beta5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-29 20:35:16
|
Revision: 715 Author: kerphi Date: 2006-08-29 13:35:08 -0700 (Tue, 29 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=715&view=rev Log Message: ----------- destroy the wrong old downloaded archive Modified Paths: -------------- trunk/contrib/pfcInstaller2/step2.php Modified: trunk/contrib/pfcInstaller2/step2.php =================================================================== --- trunk/contrib/pfcInstaller2/step2.php 2006-08-29 20:30:13 UTC (rev 714) +++ trunk/contrib/pfcInstaller2/step2.php 2006-08-29 20:35:08 UTC (rev 715) @@ -78,6 +78,8 @@ { echo "<p>Error!</p>"; echo "<pre>"; print_r($errors); echo "</pre>"; + // delete the wrong archive + @unlink($dstpath."/".$archivename); } } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-29 20:30:29
|
Revision: 714 Author: kerphi Date: 2006-08-29 13:30:13 -0700 (Tue, 29 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=714&view=rev Log Message: ----------- code cleaning Modified Paths: -------------- trunk/contrib/pfcInstaller2/config.php Added Paths: ----------- trunk/contrib/pfcInstaller2/.registry/file_archive.reg trunk/contrib/pfcInstaller2/file_get_contents.php trunk/contrib/pfcInstaller2/file_put_contents.php Removed Paths: ------------- trunk/contrib/pfcInstaller2/.registry/php_compat.reg trunk/contrib/pfcInstaller2/PHP/Compat/ trunk/contrib/pfcInstaller2/PHP/Compat.php Added: trunk/contrib/pfcInstaller2/.registry/file_archive.reg =================================================================== --- trunk/contrib/pfcInstaller2/.registry/file_archive.reg (rev 0) +++ trunk/contrib/pfcInstaller2/.registry/file_archive.reg 2006-08-29 20:30:13 UTC (rev 714) @@ -0,0 +1,103 @@ +a:17:{s:8:"provides";a:0:{}s:8:"filelist";a:54:{s:16:"File/Archive.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"f994c4cbcedc1cc493f991d2a0c05b24";s:12:"installed_as";s:18:"./File/Archive.php";}s:26:"File/Archive/Predicate.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"09a4dbb822271261f69724ae559f38ad";s:12:"installed_as";s:28:"./File/Archive/Predicate.php";}s:23:"File/Archive/Reader.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"74eac085ca58ea974c5da6358c15e9cf";s:12:"installed_as";s:25:"./File/Archive/Reader.php";}s:23:"File/Archive/Writer.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"40ef0ab82bf17d7a525c15122bd065bc";s:12:"installed_as";s:25:"./File/Archive/Writer.php";}s:30:"File/Archive/Predicate/And.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"143b5a469e43647ac747f51c60912107";s:12:"installed_as";s:32:"./File/Archive/Predicate/And.php";}s:34:"File/Archive/Predicate/Current.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"c9f5b7e4176e1c55e9f6dfa878bde4ec";s:12:"installed_as";s:36:"./File/Archive/Predicate/Current.php";}s:33:"File/Archive/Predicate/Custom.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"b99f37c754c6e6e3494741c0339e11eb";s:12:"installed_as";s:35:"./File/Archive/Predicate/Custom.php";}s:36:"File/Archive/Predicate/Duplicate.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"a1c96735a23cd80c6d5cdaf96c0f29b3";s:12:"installed_as";s:38:"./File/Archive/Predicate/Duplicate.php";}s:31:"File/Archive/Predicate/Ereg.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"83b91b31185c05650844ec1ba19c0fad";s:12:"installed_as";s:33:"./File/Archive/Predicate/Ereg.php";}s:32:"File/Archive/Predicate/Eregi.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"7029b72200fead9b33ea3cdbe365ef57";s:12:"installed_as";s:34:"./File/Archive/Predicate/Eregi.php";}s:36:"File/Archive/Predicate/Extension.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"a9e7e12215e82351293bebd8b0452455";s:12:"installed_as";s:38:"./File/Archive/Predicate/Extension.php";}s:32:"File/Archive/Predicate/False.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"e1896dd1bd8c36850f1855bde61348e1";s:12:"installed_as";s:34:"./File/Archive/Predicate/False.php";}s:32:"File/Archive/Predicate/Index.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"546aa8f0fa09390c860fefc79a4ee9ca";s:12:"installed_as";s:34:"./File/Archive/Predicate/Index.php";}s:35:"File/Archive/Predicate/MaxDepth.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"c4b7b452e7dddca0cc45951c93f14959";s:12:"installed_as";s:37:"./File/Archive/Predicate/MaxDepth.php";}s:31:"File/Archive/Predicate/MIME.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"0c870eaf6c901fe7f9784f309d964d4a";s:12:"installed_as";s:33:"./File/Archive/Predicate/MIME.php";}s:34:"File/Archive/Predicate/MinSize.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"d84d07123afe55f65d4afc80fc430537";s:12:"installed_as";s:36:"./File/Archive/Predicate/MinSize.php";}s:34:"File/Archive/Predicate/MinTime.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"8ec081662315fcd801ccde0a2875c51b";s:12:"installed_as";s:36:"./File/Archive/Predicate/MinTime.php";}s:30:"File/Archive/Predicate/Not.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"0e652e8b1619a99251f6bf82d709ae7b";s:12:"installed_as";s:32:"./File/Archive/Predicate/Not.php";}s:29:"File/Archive/Predicate/Or.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"0915edd899eaccb0138a540ef7e8c11e";s:12:"installed_as";s:31:"./File/Archive/Predicate/Or.php";}s:31:"File/Archive/Predicate/True.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"4bc5794c445849b81383144fb3978310";s:12:"installed_as";s:33:"./File/Archive/Predicate/True.php";}s:26:"File/Archive/Reader/Ar.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"8d8f85ff407b30def6113ea6e6a7f5d7";s:12:"installed_as";s:28:"./File/Archive/Reader/Ar.php";}s:31:"File/Archive/Reader/Archive.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"702cf1a3dbf834edfeac5eb798590a82";s:12:"installed_as";s:33:"./File/Archive/Reader/Archive.php";}s:29:"File/Archive/Reader/Bzip2.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"f967f6dad799b226d73be99db6e4fc6e";s:12:"installed_as";s:31:"./File/Archive/Reader/Bzip2.php";}s:29:"File/Archive/Reader/Cache.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"2f8aa226458b470a37494d7eba824298";s:12:"installed_as";s:31:"./File/Archive/Reader/Cache.php";}s:34:"File/Archive/Reader/ChangeName.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"7d3e20216b90964904ab664d122fe307";s:12:"installed_as";s:36:"./File/Archive/Reader/ChangeName.php";}s:30:"File/Archive/Reader/Concat.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"ca77d7a56210643353583797b43ae7fe";s:12:"installed_as";s:32:"./File/Archive/Reader/Concat.php";}s:33:"File/Archive/Reader/Directory.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"ae23cc6336e3afd7a272f1f5f4ee227b";s:12:"installed_as";s:35:"./File/Archive/Reader/Directory.php";}s:28:"File/Archive/Reader/File.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"2ec3dca6a0cc176cf4057ad0db360160";s:12:"installed_as";s:30:"./File/Archive/Reader/File.php";}s:30:"File/Archive/Reader/Filter.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"5d6af477070e7b35686fe89202c94d05";s:12:"installed_as";s:32:"./File/Archive/Reader/Filter.php";}s:28:"File/Archive/Reader/Gzip.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"278614a1d715b7fb6112693b1b823e80";s:12:"installed_as";s:30:"./File/Archive/Reader/Gzip.php";}s:30:"File/Archive/Reader/Memory.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"04fc9cdbc94fa1ee321cdb76dfbd8d0a";s:12:"installed_as";s:32:"./File/Archive/Reader/Memory.php";}s:32:"File/Archive/Reader/MimeList.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"5abe9540ffc5fb9c2145c2deaeee637d";s:12:"installed_as";s:34:"./File/Archive/Reader/MimeList.php";}s:29:"File/Archive/Reader/Multi.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"fbab386b05859b8d18ea01b74190f998";s:12:"installed_as";s:31:"./File/Archive/Reader/Multi.php";}s:29:"File/Archive/Reader/Relay.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"769466a6361e37dc00a2352cb6d44e47";s:12:"installed_as";s:31:"./File/Archive/Reader/Relay.php";}s:30:"File/Archive/Reader/Select.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"d6c8fc0199fb1fc485f39aee19918186";s:12:"installed_as";s:32:"./File/Archive/Reader/Select.php";}s:27:"File/Archive/Reader/Tar.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"cd46ee9c5859eb442742ad139c76eeb6";s:12:"installed_as";s:29:"./File/Archive/Reader/Tar.php";}s:34:"File/Archive/Reader/Uncompress.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"e35fee0467332106851a0221b75455a5";s:12:"installed_as";s:36:"./File/Archive/Reader/Uncompress.php";}s:27:"File/Archive/Reader/Zip.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"35ab5a638ff2a65bfd6aae36e4dd01c1";s:12:"installed_as";s:29:"./File/Archive/Reader/Zip.php";}s:35:"File/Archive/Writer/AddBaseName.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"a1fc04bf90b61d0080220ed9ab814026";s:12:"installed_as";s:37:"./File/Archive/Writer/AddBaseName.php";}s:26:"File/Archive/Writer/Ar.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"11c4f90a9a02a9d1415f226579305d10";s:12:"installed_as";s:28:"./File/Archive/Writer/Ar.php";}s:31:"File/Archive/Writer/Archive.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"bfd8dc467d330930bcd1c9bf2e776b43";s:12:"installed_as";s:33:"./File/Archive/Writer/Archive.php";}s:29:"File/Archive/Writer/Bzip2.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"9d05da8dfe3955f57bfce70a1ef74dd0";s:12:"installed_as";s:31:"./File/Archive/Writer/Bzip2.php";}s:29:"File/Archive/Writer/Files.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"8126e87bf75cb14ecf9999705dbbfbbb";s:12:"installed_as";s:31:"./File/Archive/Writer/Files.php";}s:28:"File/Archive/Writer/Gzip.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"2bea0f19e87c7b10cfaa17b52d097db6";s:12:"installed_as";s:30:"./File/Archive/Writer/Gzip.php";}s:28:"File/Archive/Writer/Mail.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"e3bb499c917cb1266989d9b3852eb094";s:12:"installed_as";s:30:"./File/Archive/Writer/Mail.php";}s:30:"File/Archive/Writer/Memory.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"b2eb0eddbf3755d6f98c5b6362cdb834";s:12:"installed_as";s:32:"./File/Archive/Writer/Memory.php";}s:37:"File/Archive/Writer/MemoryArchive.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"2671d287491d9f19ed3011aafc0ecbb2";s:12:"installed_as";s:39:"./File/Archive/Writer/MemoryArchive.php";}s:29:"File/Archive/Writer/Multi.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"6992385fd57279064fe73962b05fe96a";s:12:"installed_as";s:31:"./File/Archive/Writer/Multi.php";}s:30:"File/Archive/Writer/Output.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"e7ce13aa2a3cfea6ba2ab1db0ef16d73";s:12:"installed_as";s:32:"./File/Archive/Writer/Output.php";}s:27:"File/Archive/Writer/Tar.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"de7408519f294060c79b84ec9d87e040";s:12:"installed_as";s:29:"./File/Archive/Writer/Tar.php";}s:38:"File/Archive/Writer/UniqueAppender.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"7cea272f9b17705ecc3644b3a721358b";s:12:"installed_as";s:40:"./File/Archive/Writer/UniqueAppender.php";}s:27:"File/Archive/Writer/Zip.php";a:3:{s:4:"role";s:3:"php";s:6:"md5sum";s:32:"40ef463030d7c9287b2be0369de8e19c";s:12:"installed_as";s:29:"./File/Archive/Writer/Zip.php";}s:19:"File/tests/test.php";a:3:{s:4:"role";s:4:"test";s:6:"md5sum";s:32:"96d99340da88d7ba2d40fc30b96a507d";s:12:"installed_as";s:43:"./tmp/test/File_Archive/File/tests/test.php";}s:19:"File/doc/readme.txt";a:3:{s:4:"role";s:3:"doc";s:6:"md5sum";s:32:"38dfc74562a6c2aee690ce6ea7597e2a";s:12:"installed_as";s:42:"./tmp/doc/File_Archive/File/doc/readme.txt";}}s:10:"xsdversion";s:3:"1.0";s:7:"package";s:12:"File_Archive";s:7:"summary";s:94:"File_Archive will let you manipulate easily the tar, gz, tgz, bz2, tbz, zip, ar (or deb) files";s:11:"description";s:303:"This library is strongly object oriented. It makes it very easy to use, writing simple code, yet the library is very powerfull. +It lets you easily read or generate tar, gz, tgz, bz2, tbz, zip, ar (or deb) archives to files, memory, mail or standard output. +See http://poocl.la-grotte.org for a tutorial +";s:11:"maintainers";a:2:{i:0;a:4:{s:6:"handle";s:14:"VincentLascaux";s:4:"name";s:15:"Vincent Lascaux";s:5:"email";s:31:"vin...@ce...";s:4:"role";s:4:"lead";}i:1;a:4:{s:6:"handle";s:8:"PFischer";s:4:"name";s:13:"Pablo Fischer";s:5:"email";s:16:"pfi...@ph...";s:4:"role";s:9:"developer";}}s:7:"version";s:5:"1.5.3";s:12:"release_date";s:10:"2005-08-16";s:15:"release_license";s:4:"LGPL";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:157:"Bug #4953 (absolute windows path) +Bug #5095 (date of files when creating a zip archive) +Fix a bug when using File_Archive::appender on non existing archives +";s:12:"release_deps";a:5:{i:1;a:3:{s:4:"type";s:3:"php";s:3:"rel";s:2:"ge";s:7:"version";s:5:"4.3.0";}i:2;a:3:{s:4:"type";s:3:"pkg";s:3:"rel";s:3:"has";s:4:"name";s:9:"MIME_Type";}i:3;a:4:{s:4:"type";s:3:"pkg";s:3:"rel";s:3:"has";s:8:"optional";s:3:"yes";s:4:"name";s:9:"Mail_Mime";}i:4;a:4:{s:4:"type";s:3:"pkg";s:3:"rel";s:3:"has";s:8:"optional";s:3:"yes";s:4:"name";s:4:"Mail";}i:5;a:5:{s:4:"type";s:3:"pkg";s:3:"rel";s:2:"ge";s:7:"version";s:5:"1.5.0";s:8:"optional";s:3:"yes";s:4:"name";s:10:"Cache_Lite";}}s:9:"changelog";a:12:{i:0;a:4:{s:7:"version";s:5:"1.5.2";s:12:"release_date";s:10:"2005-07-27";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:18:"Bug #4921, #4925 + +";}i:1;a:4:{s:7:"version";s:5:"1.5.1";s:12:"release_date";s:10:"2005-07-26";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:11:"Bug #4916 + +";}i:2;a:4:{s:7:"version";s:5:"1.5.0";s:12:"release_date";s:10:"2005-07-15";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:1053:"+ Improved zip reader (File_Archive_Zip_Reader implements more options of the PKZip standard) + ++ Some change in the Cache_File use: + - The fileNameProtection is forced to false when setting the cache option + - Add a File_Archive_cleanCache function + To remove the cached compressed version of the files that are no longer present on the system, call + $cache->clean(false, 'callback_File_Archive_cleanCache'); + where $cache is the Cache_Lite object passed to File_Archive. + ++ Introduce 'blockSize' option that indicates the size of the blocs copied from a reader to a writer when + extracting a file. The default has been set to 64kB but is subject to change in future releases + ++ File_Archive::cache to cache a reader if you read it several times in the same script + ++ 'cacheCondition' option. With this option, you can specify you want to cache all the http + transfer for example. Caching an http transfer ensure that the file won't be downloaded several times + ++ File_Archive::readUploadedFile creates a reader on an uploaded file + +";}i:3;a:4:{s:7:"version";s:5:"1.4.1";s:12:"release_date";s:10:"2005-06-08";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:11:"Bug #4548 + +";}i:4;a:4:{s:7:"version";s:5:"1.4.0";s:12:"release_date";s:10:"2005-06-06";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:1410:"+ Add the possibility to use Cache_Lite to cache intermediary output of Zip compression ++ Add get and setOption method to change the default behavior of readers and writers + Available options are + - zipCompressionLevel: default compression level of zip archives (default is 9) + - gzCompressionLevel: default compression level of gz archives (default is 9) + - tmpDirectory: directory where temporary files will be stored (default is '.') + - cache: instance of Cache_Lite that may be used by any writer to cache data + for future use. Currently used by Zip writer (default is null: no cache) + - appendRemoveDuplicates: specify if the appenders should remove the old files + from an archive to avoid creating duplicates (default is false, which is faster) ++ Add the possibility to use wildcards in read function + File_Archive::read('dir/*.txt') will read all txt files from directory dir + File_Archive::read('archive.zip/*.txt') will read all txt files from the zip archive + Note: The wildcards can only be used after the last '/' ++ All the File_Archive functions that take a reader or a writer as an argument can now take + a string or an array. For readers, strings are interpreted using File_Archive::read function + and array using File_Archive::readMulti. For writers, strings are interpreted using File_Archive::appender + function and array by creating a multi writer. + +";}i:5;a:4:{s:7:"version";s:5:"1.3.0";s:12:"release_date";s:10:"2005-05-30";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:373:"+ Add some functions to allow archive modification + - File_Archive::appender creates a writer to append files to an existing archive + - File_Archive::remove and File_Archive::removeDuplicates removes some files from + an existing archive + + These functions allow to modify archives or even nested archives + See http://poocl.la-grotte.org for more detailed examples + +";}i:6;a:4:{s:7:"version";s:5:"1.2.0";s:12:"release_date";s:10:"2005-05-26";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:216:"+ Add an ar (or deb) reader / writer ++ Add a getFileList() on any reader to quickly retrieve file list ++ File_Archive::readArchive properly handles tgz and tbz extensions ++ Better error handling ++ Various bug fixes + +";}i:7;a:4:{s:7:"version";s:5:"1.0.1";s:12:"release_date";s:10:"2005-04-21";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:261:"+ Bug 4192 (<? instead of <?php in some source files) ++ Functions File_Archive::isKnownExtension and File_Archive:;readArchive + added. They allow to specify the type of an archive. This is usefull is the extension + of the file doesn't reflect its real type. + +";}i:8;a:4:{s:7:"version";s:5:"1.0.0";s:12:"release_date";s:10:"2005-04-17";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:891:"+ Bug 4159 (PHP4 compatibility) ++ Bug 4165 (Better USTAR handling in tar files) ++ The package now use temporary files to reduce the amount of memory used + when reading or writing large archives. The following indicates the current + memory usage of the different reader / writers + - Tar writer: constant memory usage + - GZip writer: constant memory usage, temporary file + - BZ2 writer: constant memory usage, temporary file + - ZIP writer: size of the largest file written to the archive + + - Tar reader: constant memory usage + - GZip reader: constant memory usage, temporary file + - BZ2 reader: constant memory usage, temporary file + - ZIP reader: size of the largest file read from the archive + + The temporary files are created in the current directory. Their name start with + far, their extension is tmp. They are automatically deleted when the reader / writer + is closed. + +";}i:9;a:4:{s:7:"version";s:5:"0.3.0";s:12:"release_date";s:10:"2005-04-08";s:13:"release_state";s:4:"beta";s:13:"release_notes";s:460:"+ Bug 3894 ++ The File_Archive::read function does no longer take the optional source parameter + A File_Archive::readSource function has been created that takes the source parameter ++ The mail parameter in File_Archive::toMail is now mandatory, but giving a null variable will + result in using Mail::factory("mail") ++ The File_Archive::toMemory function does no longer take a variable argument + A File_Archive::toVariable function has been created for that + +";}i:10;a:4:{s:7:"version";s:5:"0.2.0";s:12:"release_date";s:10:"2005-02-24";s:13:"release_state";s:4:"beta";s:13:"release_notes";s:212:"+ Add a MIME predicate ++ Change the toArchive function to detect the compression format using the extension of the file + (Warning: this is not backward compatible since the order of the arguments have changed) + +";}i:11;a:4:{s:7:"version";s:5:"0.1.0";s:12:"release_date";s:10:"2005-02-20";s:13:"release_state";s:5:"alpha";s:13:"release_notes";s:15:"First release + +";}}s:12:"_lastversion";N;s:7:"dirtree";a:9:{s:6:"./File";b:1;s:14:"./File/Archive";b:1;s:24:"./File/Archive/Predicate";b:1;s:21:"./File/Archive/Reader";b:1;s:21:"./File/Archive/Writer";b:1;s:34:"./tmp/test/File_Archive/File/tests";b:1;s:28:"./tmp/test/File_Archive/File";b:1;s:31:"./tmp/doc/File_Archive/File/doc";b:1;s:27:"./tmp/doc/File_Archive/File";b:1;}s:13:"_lastmodified";i:1156883288;} \ No newline at end of file Deleted: trunk/contrib/pfcInstaller2/.registry/php_compat.reg =================================================================== --- trunk/contrib/pfcInstaller2/.registry/php_compat.reg 2006-08-29 20:15:26 UTC (rev 713) +++ trunk/contrib/pfcInstaller2/.registry/php_compat.reg 2006-08-29 20:30:13 UTC (rev 714) @@ -1,24 +0,0 @@ -a:15:{s:8:"provides";a:0:{}s:8:"filelist";a:170:{s:10:"Compat.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2200111e360fd144d4b77ca366f1f375";s:12:"installed_as";s:16:"./PHP/Compat.php";}s:21:"Compat/Components.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8d050846eb2dae34c1986968306b316b";s:12:"installed_as";s:27:"./PHP/Compat/Components.php";}s:39:"Compat/Constant/DIRECTORY_SEPARATOR.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9f167d16c79c48f3a1ca918874d9038c";s:12:"installed_as";s:45:"./PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";}s:28:"Compat/Constant/E_STRICT.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1388d061b346a37cc94ef32f8c8ed788";s:12:"installed_as";s:34:"./PHP/Compat/Constant/E_STRICT.php";}s:34:"Compat/Constant/PATH_SEPARATOR.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"5e9e33bf0df024a6e1ca10fae4e56b04";s:12:"installed_as";s:40:"./PHP/Compat/Constant/PATH_SEPARATOR.php";}s:23:"Compat/Constant/STD.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8b4375138a28d4776a6f174459162b51";s:12:"installed_as";s:29:"./PHP/Compat/Constant/STD.php";}s:24:"Compat/Constant/FILE.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"11475146cee8867df3772a89a487c84d";s:12:"installed_as";s:30:"./PHP/Compat/Constant/FILE.php";}s:27:"Compat/Constant/PHP_EOL.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"c6ab3c6691119fc754502c6230749288";s:12:"installed_as";s:33:"./PHP/Compat/Constant/PHP_EOL.php";}s:30:"Compat/Constant/UPLOAD_ERR.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7ccf7c512953df803695f11178036ea4";s:12:"installed_as";s:36:"./PHP/Compat/Constant/UPLOAD_ERR.php";}s:21:"Compat/Constant/T.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"5b66b02f465aee9f7970fc1fd9876663";s:12:"installed_as";s:27:"./PHP/Compat/Constant/T.php";}s:41:"Compat/Function/array_change_key_case.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"02953d8f36ca8e1dcce99cb0bee16919";s:12:"installed_as";s:47:"./PHP/Compat/Function/array_change_key_case.php";}s:31:"Compat/Function/array_chunk.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1a86d2c84842165dfdad5745f0d4504b";s:12:"installed_as";s:37:"./PHP/Compat/Function/array_chunk.php";}s:33:"Compat/Function/array_combine.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"25908f363df140154e3dbf8300e37305";s:12:"installed_as";s:39:"./PHP/Compat/Function/array_combine.php";}s:36:"Compat/Function/array_diff_assoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"fcb170979f96d68bc3aa71c148ea2868";s:12:"installed_as";s:42:"./PHP/Compat/Function/array_diff_assoc.php";}s:34:"Compat/Function/array_diff_key.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"652100f87ce22ba5a57dd04e35208d3e";s:12:"installed_as";s:40:"./PHP/Compat/Function/array_diff_key.php";}s:37:"Compat/Function/array_diff_uassoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"0af7a23c5d834748007e97f82e1ed5bf";s:12:"installed_as";s:43:"./PHP/Compat/Function/array_diff_uassoc.php";}s:35:"Compat/Function/array_diff_ukey.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"dcf365be026af3cef7fc49c5ed473956";s:12:"installed_as";s:41:"./PHP/Compat/Function/array_diff_ukey.php";}s:41:"Compat/Function/array_intersect_assoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9963181611d233b12e958760f020d7da";s:12:"installed_as";s:47:"./PHP/Compat/Function/array_intersect_assoc.php";}s:39:"Compat/Function/array_intersect_key.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"c96bd50e94e6b7a420e331084d902c52";s:12:"installed_as";s:45:"./PHP/Compat/Function/array_intersect_key.php";}s:42:"Compat/Function/array_intersect_uassoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"acdfec74e2033a784040988e5a1b941c";s:12:"installed_as";s:48:"./PHP/Compat/Function/array_intersect_uassoc.php";}s:40:"Compat/Function/array_intersect_ukey.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"a6c035ae1117375c05745f0096918c60";s:12:"installed_as";s:46:"./PHP/Compat/Function/array_intersect_ukey.php";}s:36:"Compat/Function/array_key_exists.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"480e2ddf2baff55eee50cb131ae3f8bd";s:12:"installed_as";s:42:"./PHP/Compat/Function/array_key_exists.php";}s:33:"Compat/Function/array_product.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"dc7e75f8ae58ff5a3c287b7e1abfd48c";s:12:"installed_as";s:39:"./PHP/Compat/Function/array_product.php";}s:32:"Compat/Function/array_search.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2aeee35f597e0f5d0c49a85ddf3f3437";s:12:"installed_as";s:38:"./PHP/Compat/Function/array_search.php";}s:31:"Compat/Function/array_udiff.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"fd842b6d29f7edddfb7a1b6ea9801253";s:12:"installed_as";s:37:"./PHP/Compat/Function/array_udiff.php";}s:37:"Compat/Function/array_udiff_assoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"917d7d03cd807656ba4f60bb35832b3e";s:12:"installed_as";s:43:"./PHP/Compat/Function/array_udiff_assoc.php";}s:38:"Compat/Function/array_udiff_uassoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e1ffe99d89f1d402ea942d91650e9e16";s:12:"installed_as";s:44:"./PHP/Compat/Function/array_udiff_uassoc.php";}s:36:"Compat/Function/array_uintersect.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"318ef67354099afce29a1b81120fe1bf";s:12:"installed_as";s:42:"./PHP/Compat/Function/array_uintersect.php";}s:42:"Compat/Function/array_uintersect_assoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"75d8ea71454d975f3d6bb3ad2120a1df";s:12:"installed_as";s:48:"./PHP/Compat/Function/array_uintersect_assoc.php";}s:43:"Compat/Function/array_uintersect_uassoc.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ef99f105fc75ed6132984606404a9d97";s:12:"installed_as";s:49:"./PHP/Compat/Function/array_uintersect_uassoc.php";}s:40:"Compat/Function/array_walk_recursive.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7cb3b04733110cf9a0c29144031fff73";s:12:"installed_as";s:46:"./PHP/Compat/Function/array_walk_recursive.php";}s:28:"Compat/Function/bcinvert.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"68d6ad6f881f7970df4f6aa5720ea572";s:12:"installed_as";s:34:"./PHP/Compat/Function/bcinvert.php";}s:28:"Compat/Function/bcpowmod.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7e4a534e63dd82cc59c7f1728967fde0";s:12:"installed_as";s:34:"./PHP/Compat/Function/bcpowmod.php";}s:40:"Compat/Function/call_user_func_array.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7ca73e01d3140be4634d46a9041a1015";s:12:"installed_as";s:46:"./PHP/Compat/Function/call_user_func_array.php";}s:25:"Compat/Function/clone.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"5aeb70010718356738f25a3c646534b1";s:12:"installed_as";s:31:"./PHP/Compat/Function/clone.php";}s:28:"Compat/Function/constant.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6a103d2798f29e51051fc3273770ed53";s:12:"installed_as";s:34:"./PHP/Compat/Function/constant.php";}s:36:"Compat/Function/convert_uuencode.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"94e6c48e91fcbf615b82c0e152003972";s:12:"installed_as";s:42:"./PHP/Compat/Function/convert_uuencode.php";}s:36:"Compat/Function/convert_uudecode.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"3c425ec56b8182fb0b159f947e26671b";s:12:"installed_as";s:42:"./PHP/Compat/Function/convert_uudecode.php";}s:41:"Compat/Function/debug_print_backtrace.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"138022391a8a6ba516a34deedfa27a8f";s:12:"installed_as";s:47:"./PHP/Compat/Function/debug_print_backtrace.php";}s:37:"Compat/Function/file_get_contents.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"08e15713609fb3c28edd61f29b1494b5";s:12:"installed_as";s:43:"./PHP/Compat/Function/file_get_contents.php";}s:37:"Compat/Function/file_put_contents.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"19480b314ef1f2bbff81966ea4626126";s:12:"installed_as";s:43:"./PHP/Compat/Function/file_put_contents.php";}s:28:"Compat/Function/floatval.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"4fc2555da9239545158b86cab0c64417";s:12:"installed_as";s:34:"./PHP/Compat/Function/floatval.php";}s:27:"Compat/Function/fprintf.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"189e66f8075951206de5489958c3c15f";s:12:"installed_as";s:33:"./PHP/Compat/Function/fprintf.php";}s:27:"Compat/Function/fputcsv.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"349c9833125c4337b996a205da2e0ed3";s:12:"installed_as";s:33:"./PHP/Compat/Function/fputcsv.php";}s:31:"Compat/Function/get_headers.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"41fbcc977dfe050549da9e44d1ec2b6d";s:12:"installed_as";s:37:"./PHP/Compat/Function/get_headers.php";}s:36:"Compat/Function/get_include_path.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"fd77fc118496da8c908163cb3cf37736";s:12:"installed_as";s:42:"./PHP/Compat/Function/get_include_path.php";}s:38:"Compat/Function/html_entity_decode.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ae8d6a0b748626c72108e02bb76820ff";s:12:"installed_as";s:44:"./PHP/Compat/Function/html_entity_decode.php";}s:43:"Compat/Function/htmlspecialchars_decode.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"36611f5469fd0ae696cecb550daf857c";s:12:"installed_as";s:49:"./PHP/Compat/Function/htmlspecialchars_decode.php";}s:36:"Compat/Function/http_build_query.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2b7f20ceaebdb3836beeae0e71354d26";s:12:"installed_as";s:42:"./PHP/Compat/Function/http_build_query.php";}s:33:"Compat/Function/ibase_timefmt.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"b494491361dda3c1204e086dc2bdc8e3";s:12:"installed_as";s:39:"./PHP/Compat/Function/ibase_timefmt.php";}s:25:"Compat/Function/idate.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"b72f462dd9798a12852672bb502af10e";s:12:"installed_as";s:31:"./PHP/Compat/Function/idate.php";}s:43:"Compat/Function/image_type_to_mime_type.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"22996605069ad4156b4fca17793f284d";s:12:"installed_as";s:49:"./PHP/Compat/Function/image_type_to_mime_type.php";}s:29:"Compat/Function/inet_ntop.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"14fdc60ad50d2119ec8e1e7c3fdbcb0d";s:12:"installed_as";s:35:"./PHP/Compat/Function/inet_ntop.php";}s:29:"Compat/Function/inet_pton.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ce8eacee887236595ecd6e37b3f4fe70";s:12:"installed_as";s:35:"./PHP/Compat/Function/inet_pton.php";}s:31:"Compat/Function/ini_get_all.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e7d1f8d9c9b99a338211af084b436339";s:12:"installed_as";s:37:"./PHP/Compat/Function/ini_get_all.php";}s:24:"Compat/Function/is_a.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"841a0381fb313eb15c875e6a9505a559";s:12:"installed_as";s:30:"./PHP/Compat/Function/is_a.php";}s:28:"Compat/Function/md5_file.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"83bba8f1c7a25caa6fa9b6bfa98969a6";s:12:"installed_as";s:34:"./PHP/Compat/Function/md5_file.php";}s:25:"Compat/Function/mhash.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"a5cc2b1d2b8b128599cb8e269c8d170d";s:12:"installed_as";s:31:"./PHP/Compat/Function/mhash.php";}s:37:"Compat/Function/mime_content_type.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6b24f9b556243a49b8bcb9f5b5df5612";s:12:"installed_as";s:43:"./PHP/Compat/Function/mime_content_type.php";}s:28:"Compat/Function/ob_clean.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"79606394d490caf3fb98fa0b57a6b981";s:12:"installed_as";s:34:"./PHP/Compat/Function/ob_clean.php";}s:28:"Compat/Function/ob_flush.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7e2277198f610313f79715faa3a79176";s:12:"installed_as";s:34:"./PHP/Compat/Function/ob_flush.php";}s:32:"Compat/Function/ob_get_clean.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"853b534d6eb7424fa2399bce7be7d0a8";s:12:"installed_as";s:38:"./PHP/Compat/Function/ob_get_clean.php";}s:32:"Compat/Function/ob_get_flush.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"f2655ed2a80997794e58818c06fb8190";s:12:"installed_as";s:38:"./PHP/Compat/Function/ob_get_flush.php";}s:40:"Compat/Function/php_strip_whitespace.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2a215dbfb3d7ce59c1fcaefd11fb201b";s:12:"installed_as";s:46:"./PHP/Compat/Function/php_strip_whitespace.php";}s:36:"Compat/Function/pg_affected_rows.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e6cd264c30806973253185918d92a468";s:12:"installed_as";s:42:"./PHP/Compat/Function/pg_affected_rows.php";}s:35:"Compat/Function/pg_escape_bytea.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"d6e90906ab1d0c51c2b67ab6fc55c602";s:12:"installed_as";s:41:"./PHP/Compat/Function/pg_escape_bytea.php";}s:37:"Compat/Function/pg_unescape_bytea.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8956a03327e1240b1956e63751076e8d";s:12:"installed_as";s:43:"./PHP/Compat/Function/pg_unescape_bytea.php";}s:40:"Compat/Function/restore_include_path.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7bb99a2e7db5060542b5db73fd580eaf";s:12:"installed_as";s:46:"./PHP/Compat/Function/restore_include_path.php";}s:27:"Compat/Function/scandir.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"465e20ea1af6ce534955eb8ffb201185";s:12:"installed_as";s:33:"./PHP/Compat/Function/scandir.php";}s:36:"Compat/Function/set_include_path.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"676d2ab521daf0863c70d8d673acd81c";s:12:"installed_as";s:42:"./PHP/Compat/Function/set_include_path.php";}s:32:"Compat/Function/str_ireplace.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"c1c85705bf5b85a3a58a0d7a5b3b6b73";s:12:"installed_as";s:38:"./PHP/Compat/Function/str_ireplace.php";}s:29:"Compat/Function/str_rot13.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"4fa1567f6a211637bc573849c5a31fd6";s:12:"installed_as";s:35:"./PHP/Compat/Function/str_rot13.php";}s:29:"Compat/Function/str_split.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"355d5e7502132d172069dba5328272bc";s:12:"installed_as";s:35:"./PHP/Compat/Function/str_split.php";}s:31:"Compat/Function/str_shuffle.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"89a7cadd09f5a870d394ed673c99052c";s:12:"installed_as";s:37:"./PHP/Compat/Function/str_shuffle.php";}s:34:"Compat/Function/str_word_count.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"346aafdfa67a9905c381c9f8dae78bac";s:12:"installed_as";s:40:"./PHP/Compat/Function/str_word_count.php";}s:27:"Compat/Function/stripos.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"520b716b06db543e2bc968699d8b40db";s:12:"installed_as";s:33:"./PHP/Compat/Function/stripos.php";}s:27:"Compat/Function/strpbrk.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"a4e32a260b98e4dd22f593c40a9e8adb";s:12:"installed_as";s:33:"./PHP/Compat/Function/strpbrk.php";}s:28:"Compat/Function/strripos.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"56a986fa60a681488bc88fc9efef34c4";s:12:"installed_as";s:34:"./PHP/Compat/Function/strripos.php";}s:34:"Compat/Function/substr_compare.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7bab2f891b28254523c6457a49da81fd";s:12:"installed_as";s:40:"./PHP/Compat/Function/substr_compare.php";}s:36:"Compat/Function/time_sleep_until.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"047e98524026814c71294b022fed172b";s:12:"installed_as";s:42:"./PHP/Compat/Function/time_sleep_until.php";}s:30:"Compat/Function/var_export.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"83e8cfdcb3c47b25058376851adbad14";s:12:"installed_as";s:36:"./PHP/Compat/Function/var_export.php";}s:35:"Compat/Function/version_compare.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"b6b782781db7022c4df0c5eb443ca0f1";s:12:"installed_as";s:41:"./PHP/Compat/Function/version_compare.php";}s:27:"Compat/Function/vprintf.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"0f4321f32999f0e6ce8dfaf72773226f";s:12:"installed_as";s:33:"./PHP/Compat/Function/vprintf.php";}s:28:"Compat/Function/vsprintf.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"fc806274b140710c788255c364c9a764";s:12:"installed_as";s:34:"./PHP/Compat/Function/vsprintf.php";}s:23:"tests/loadconstant.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"be9250ce6ade2f1071316e643128e1e8";s:12:"installed_as";s:41:"./test/PHP_Compat/tests/loadconstant.phpt";}s:23:"tests/loadfunction.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"fd1a0605c1a22de622ecba620d9fa9b6";s:12:"installed_as";s:41:"./test/PHP_Compat/tests/loadfunction.phpt";}s:22:"tests/loadversion.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"628f78ea3d6cff186f13dbf7ff9a0352";s:12:"installed_as";s:40:"./test/PHP_Compat/tests/loadversion.phpt";}s:39:"tests/constant/directory_separator.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"baf99699a3e70062283e17986da782ef";s:12:"installed_as";s:57:"./test/PHP_Compat/tests/constant/directory_separator.phpt";}s:28:"tests/constant/e_strict.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"94166d8c586900303aecb71954fbfd5f";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/constant/e_strict.phpt";}s:24:"tests/constant/file.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"d1fc9d4d631347216c7f85d70f04aaff";s:12:"installed_as";s:42:"./test/PHP_Compat/tests/constant/file.phpt";}s:34:"tests/constant/path_separator.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"435f0154e1ab872e43d2318dc895b6f0";s:12:"installed_as";s:52:"./test/PHP_Compat/tests/constant/path_separator.phpt";}s:23:"tests/constant/std.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"66b78819e0e4f2124d6cc573e84b2d0c";s:12:"installed_as";s:41:"./test/PHP_Compat/tests/constant/std.phpt";}s:27:"tests/constant/php_eol.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"438b975d3bf3a942ae2bd0d93b67c7d6";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/constant/php_eol.phpt";}s:30:"tests/constant/upload_err.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"df1bc1fd87e6dd3b8d151c69f5188dce";s:12:"installed_as";s:48:"./test/PHP_Compat/tests/constant/upload_err.phpt";}s:21:"tests/constant/t.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8c8900e29bc0063fdb58f451186a0a00";s:12:"installed_as";s:39:"./test/PHP_Compat/tests/constant/t.phpt";}s:41:"tests/function/array_change_key_case.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"f08bff66a6486d3f337757cc0fc27356";s:12:"installed_as";s:59:"./test/PHP_Compat/tests/function/array_change_key_case.phpt";}s:31:"tests/function/array_chunk.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9a2fe02e62417bc1656c998f3afe25bb";s:12:"installed_as";s:49:"./test/PHP_Compat/tests/function/array_chunk.phpt";}s:33:"tests/function/array_combine.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"d06b2f3979448c22097cfcfcec24d893";s:12:"installed_as";s:51:"./test/PHP_Compat/tests/function/array_combine.phpt";}s:36:"tests/function/array_diff_assoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e5b1cfbf442ccce5737cc889ffefa0e8";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/array_diff_assoc.phpt";}s:37:"tests/function/array_diff_uassoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"f3e5f681c774ddd5c80bccae60b7a6d8";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/array_diff_uassoc.phpt";}s:34:"tests/function/array_diff_key.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2a501c56443aef6d1d5b02198fada985";s:12:"installed_as";s:52:"./test/PHP_Compat/tests/function/array_diff_key.phpt";}s:35:"tests/function/array_diff_ukey.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"36033a4b6fe63b0289274f2224c62191";s:12:"installed_as";s:53:"./test/PHP_Compat/tests/function/array_diff_ukey.phpt";}s:41:"tests/function/array_intersect_assoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e2534dcc762d2e0a3fae205c8d6261e1";s:12:"installed_as";s:59:"./test/PHP_Compat/tests/function/array_intersect_assoc.phpt";}s:39:"tests/function/array_intersect_key.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6541d757e983e15dcbf3989bb5bff4c3";s:12:"installed_as";s:57:"./test/PHP_Compat/tests/function/array_intersect_key.phpt";}s:42:"tests/function/array_intersect_uassoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"30b864d0535fba765960390390d8af3b";s:12:"installed_as";s:60:"./test/PHP_Compat/tests/function/array_intersect_uassoc.phpt";}s:40:"tests/function/array_intersect_ukey.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2dc671e6d853a1473cc92bff060ed4e8";s:12:"installed_as";s:58:"./test/PHP_Compat/tests/function/array_intersect_ukey.phpt";}s:36:"tests/function/array_key_exists.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9ffb55f81cf8eff9cd37f6c7d200629c";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/array_key_exists.phpt";}s:33:"tests/function/array_product.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"536d86ca0010d3ac3f80262920ed7e45";s:12:"installed_as";s:51:"./test/PHP_Compat/tests/function/array_product.phpt";}s:32:"tests/function/array_search.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e9047fcbd1eb9b8a13e110825770677b";s:12:"installed_as";s:50:"./test/PHP_Compat/tests/function/array_search.phpt";}s:31:"tests/function/array_udiff.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"dbc260f4cd21eb279d3afca6f068ed5c";s:12:"installed_as";s:49:"./test/PHP_Compat/tests/function/array_udiff.phpt";}s:37:"tests/function/array_udiff_assoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"bcfb76915dc4ac1fd7c651429084b1d3";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/array_udiff_assoc.phpt";}s:38:"tests/function/array_udiff_uassoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ede3ab0ddda83d141292218693a02e69";s:12:"installed_as";s:56:"./test/PHP_Compat/tests/function/array_udiff_uassoc.phpt";}s:36:"tests/function/array_uintersect.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e932929a2259282cf497e35d335ecc31";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/array_uintersect.phpt";}s:42:"tests/function/array_uintersect_assoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e1061776bd23c4e0acf5e925b0a999af";s:12:"installed_as";s:60:"./test/PHP_Compat/tests/function/array_uintersect_assoc.phpt";}s:43:"tests/function/array_uintersect_uassoc.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"4e8ab259fc69fdbe4125a5abf76b6999";s:12:"installed_as";s:61:"./test/PHP_Compat/tests/function/array_uintersect_uassoc.phpt";}s:40:"tests/function/array_walk_recursive.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9410b0ff22b29cf3f8afd38574dab49e";s:12:"installed_as";s:58:"./test/PHP_Compat/tests/function/array_walk_recursive.phpt";}s:28:"tests/function/bcinvert.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8cb7b10fc311076600df147ba41a2f7c";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/bcinvert.phpt";}s:28:"tests/function/bcpowmod.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"057fc88a045d4bd79a897d0977df7469";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/bcpowmod.phpt";}s:40:"tests/function/call_user_func_array.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"54d1b47bf8d25fd679076984dcdc96cc";s:12:"installed_as";s:58:"./test/PHP_Compat/tests/function/call_user_func_array.phpt";}s:25:"tests/function/clone.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"242d655d7562f3db19cc172b0119cdad";s:12:"installed_as";s:43:"./test/PHP_Compat/tests/function/clone.phpt";}s:28:"tests/function/constant.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"0eef37f34ce130f69820e3971aa08f96";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/constant.phpt";}s:36:"tests/function/convert_uuencode.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"2832952e2fa85cbbad5a64c36b18e006";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/convert_uuencode.phpt";}s:36:"tests/function/convert_uudecode.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"b457b0c48e6a8ab22713c81f1b76eeaf";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/convert_uudecode.phpt";}s:41:"tests/function/debug_print_backtrace.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"d04debe4b8e464eb901a156a704e02ec";s:12:"installed_as";s:59:"./test/PHP_Compat/tests/function/debug_print_backtrace.phpt";}s:37:"tests/function/file_get_contents.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"486068fe414b9a37a514820e93794206";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/file_get_contents.phpt";}s:37:"tests/function/file_put_contents.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6cd78512339654f8b675d0befb120abb";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/file_put_contents.phpt";}s:28:"tests/function/floatval.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"62d642231474c67f12bb38a196621666";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/floatval.phpt";}s:27:"tests/function/fprintf.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ec3965146086e244a52d2009118921a4";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/fprintf.phpt";}s:27:"tests/function/fputcsv.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ad2d54afcd504f1c5aa0ece5554e7cfb";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/fputcsv.phpt";}s:31:"tests/function/get_headers.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"0344d1748bdc7a81221a749a1fd9a3cb";s:12:"installed_as";s:49:"./test/PHP_Compat/tests/function/get_headers.phpt";}s:36:"tests/function/get_include_path.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"c57e9848b3f215807aedbc0a726f3780";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/get_include_path.phpt";}s:38:"tests/function/html_entity_decode.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"8f232646c76eee0d20316be5ddb239c0";s:12:"installed_as";s:56:"./test/PHP_Compat/tests/function/html_entity_decode.phpt";}s:43:"tests/function/htmlspecialchars_decode.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"24fffabb11529c92ce0a41a34ff0f947";s:12:"installed_as";s:61:"./test/PHP_Compat/tests/function/htmlspecialchars_decode.phpt";}s:36:"tests/function/http_build_query.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1129706f66823e1cf16824676f6de918";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/http_build_query.phpt";}s:33:"tests/function/ibase_timefmt.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e6e3e79ea36ca51d3df8894557989373";s:12:"installed_as";s:51:"./test/PHP_Compat/tests/function/ibase_timefmt.phpt";}s:25:"tests/function/idate.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6c9380e2e7e8fbfef24eccfe86ca4529";s:12:"installed_as";s:43:"./test/PHP_Compat/tests/function/idate.phpt";}s:43:"tests/function/image_type_to_mime_type.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9aa1fbd846fc7a2fba352744dbe8e0f4";s:12:"installed_as";s:61:"./test/PHP_Compat/tests/function/image_type_to_mime_type.phpt";}s:29:"tests/function/inet_ntop.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"cc47f3467a26b33832da9888718d40a1";s:12:"installed_as";s:47:"./test/PHP_Compat/tests/function/inet_ntop.phpt";}s:29:"tests/function/inet_pton.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"ddb2554446673cb2b13f3d51cecf84ef";s:12:"installed_as";s:47:"./test/PHP_Compat/tests/function/inet_pton.phpt";}s:31:"tests/function/ini_get_all.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e58fe664b3238ce73a300c8bd23975da";s:12:"installed_as";s:49:"./test/PHP_Compat/tests/function/ini_get_all.phpt";}s:24:"tests/function/is_a.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"204542bbc380aaef67f8856516797056";s:12:"installed_as";s:42:"./test/PHP_Compat/tests/function/is_a.phpt";}s:29:"tests/function/is_scalar.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"4b3d62e146fb59e67fc5f2f75816062f";s:12:"installed_as";s:47:"./test/PHP_Compat/tests/function/is_scalar.phpt";}s:28:"tests/function/md5_file.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"dbe3893912cd97f39920065c2f651a5f";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/md5_file.phpt";}s:25:"tests/function/mhash.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1d41298a704455f7b1566a52c9390b25";s:12:"installed_as";s:43:"./test/PHP_Compat/tests/function/mhash.phpt";}s:37:"tests/function/mime_content_type.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6f13865e91fa75adce5ef07872536270";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/mime_content_type.phpt";}s:28:"tests/function/ob_clean.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e7f546af262c62a0e9c4b588de8b00c5";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/ob_clean.phpt";}s:28:"tests/function/ob_flush.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"99858ff932cec523874680347b8c9f05";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/ob_flush.phpt";}s:32:"tests/function/ob_get_clean.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9495712b934319ae1ee92f669b0ff4f6";s:12:"installed_as";s:50:"./test/PHP_Compat/tests/function/ob_get_clean.phpt";}s:32:"tests/function/ob_get_flush.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"209516a8a8737f394d787081199284b2";s:12:"installed_as";s:50:"./test/PHP_Compat/tests/function/ob_get_flush.phpt";}s:40:"tests/function/php_strip_whitespace.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9b067699ca229d98733de5842cd4c502";s:12:"installed_as";s:58:"./test/PHP_Compat/tests/function/php_strip_whitespace.phpt";}s:36:"tests/function/pg_affected_rows.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"4a251fee7ec75fcf206a16ce19ce96e6";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/pg_affected_rows.phpt";}s:35:"tests/function/pg_escape_bytea.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"bd11faafe63a1a816da90da482e0c728";s:12:"installed_as";s:53:"./test/PHP_Compat/tests/function/pg_escape_bytea.phpt";}s:37:"tests/function/pg_unescape_bytea.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"15596ea9ef60d7c32e68388cba414dcf";s:12:"installed_as";s:55:"./test/PHP_Compat/tests/function/pg_unescape_bytea.phpt";}s:40:"tests/function/restore_include_path.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"38d5134aa4efa5d1f9dc7ff59cf97bd2";s:12:"installed_as";s:58:"./test/PHP_Compat/tests/function/restore_include_path.phpt";}s:27:"tests/function/scandir.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"6f9d03109d4dfd3203267591bc6cd5bb";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/scandir.phpt";}s:36:"tests/function/set_include_path.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"52763cbccec4afadd6b4e48646d8ce4a";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/set_include_path.phpt";}s:32:"tests/function/str_ireplace.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"a7972d2f5418fd3ede41d749d8a9663e";s:12:"installed_as";s:50:"./test/PHP_Compat/tests/function/str_ireplace.phpt";}s:29:"tests/function/str_rot13.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"cca8d3cc5167df5eca8d7d2be1c4f2d1";s:12:"installed_as";s:47:"./test/PHP_Compat/tests/function/str_rot13.phpt";}s:29:"tests/function/str_split.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"64d1d3329179d320d4f29b7b13329dfe";s:12:"installed_as";s:47:"./test/PHP_Compat/tests/function/str_split.phpt";}s:31:"tests/function/str_shuffle.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"56ededce2b5c69b5db2c0754ed15bb77";s:12:"installed_as";s:49:"./test/PHP_Compat/tests/function/str_shuffle.phpt";}s:34:"tests/function/str_word_count.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"26cda26e6c153faaa2e1afdfd54abb8a";s:12:"installed_as";s:52:"./test/PHP_Compat/tests/function/str_word_count.phpt";}s:27:"tests/function/stripos.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7abcc3d05a39a63d773fc81a79871be2";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/stripos.phpt";}s:27:"tests/function/strpbrk.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"c5dd4feb0f084a2ef5f8e88366587fb2";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/strpbrk.phpt";}s:28:"tests/function/strripos.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1d931231646cbe33bd22cefb64126b52";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/strripos.phpt";}s:34:"tests/function/substr_compare.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"9bc09988b880420cea6b6f1177185db7";s:12:"installed_as";s:52:"./test/PHP_Compat/tests/function/substr_compare.phpt";}s:36:"tests/function/time_sleep_until.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"1f114a2eea13e111fd0b07357d856a8d";s:12:"installed_as";s:54:"./test/PHP_Compat/tests/function/time_sleep_until.phpt";}s:30:"tests/function/var_export.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"89f1b9af410abddd3c0f7f9fd7b1d726";s:12:"installed_as";s:48:"./test/PHP_Compat/tests/function/var_export.phpt";}s:35:"tests/function/version_compare.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"e0db5c69bb6c326a82d2cfb1f11eb7e7";s:12:"installed_as";s:53:"./test/PHP_Compat/tests/function/version_compare.phpt";}s:27:"tests/function/vprintf.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"98ece8bf99b26d8b73e86bcb103a6cef";s:12:"installed_as";s:45:"./test/PHP_Compat/tests/function/vprintf.phpt";}s:28:"tests/function/vsprintf.phpt";a:4:{s:4:"role";s:4:"test";s:14:"baseinstalldir";s:3:"PHP";s:6:"md5sum";s:32:"7cd6d685853602770cb8e312bd454537";s:12:"installed_as";s:46:"./test/PHP_Compat/tests/function/vsprintf.phpt";}}s:10:"xsdversion";s:3:"1.0";s:7:"package";s:10:"PHP_Compat";s:7:"summary";s:56:"Provides missing functionality for older versions of PHP";s:11:"description";s:69:"PHP_Compat provides missing functionality for older versions of PHP. -";s:11:"maintainers";a:1:{i:0;a:4:{s:6:"handle";s:5:"aidan";s:4:"name";s:12:"Aidan Lister";s:5:"email";s:13:"ai...@ph...";s:4:"role";s:4:"lead";}}s:7:"version";s:5:"1.5.0";s:12:"release_date";s:10:"2005-12-15";s:15:"release_license";s:11:"PHP License";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:435:"Added more components: -* is_scalar -* property_exists -* inet_pton -* inet_ntop -* bcinvert -* bcpowmod -* mime_content_type -* time_sleep_until -* array_product -* idate -Bug fixes: -* Fixed #4783 (PATH_SEPARATOR) -* Fixed #4788 (version_compare) -* Fixed #4851 (var_export) -* Fixed #5049 (strripos) -* Fixed #5078 (str_shuffle) -* Fixed #5691 (fputcsv) -* Fixed #5469 (md5_file) -* Fixed #6082 (file_put_contents) -RC bug fixes: -* Fixed #6184 (idate) -";s:12:"_lastversion";N;s:7:"dirtree";a:7:{s:5:"./PHP";b:1;s:12:"./PHP/Compat";b:1;s:21:"./PHP/Compat/Constant";b:1;s:21:"./PHP/Compat/Function";b:1;s:23:"./test/PHP_Compat/tests";b:1;s:32:"./test/PHP_Compat/tests/constant";b:1;s:32:"./test/PHP_Compat/tests/function";b:1;}s:13:"_lastmodified";i:1153741487;} \ No newline at end of file Deleted: trunk/contrib/pfcInstaller2/PHP/Compat.php =================================================================== --- trunk/contrib/pfcInstaller2/PHP/Compat.php 2006-08-29 20:15:26 UTC (rev 713) +++ trunk/contrib/pfcInstaller2/PHP/Compat.php 2006-08-29 20:30:13 UTC (rev 714) @@ -1,133 +0,0 @@ -<?php -// +----------------------------------------------------------------------+ -// | PHP Version 4 | -// +----------------------------------------------------------------------+ -// | Copyright (c) 1997-2004 The PHP Group | -// +----------------------------------------------------------------------+ -// | This source file is subject to version 3.0 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/3_0.txt. | -// | If you did not receive a copy of the PHP license and are unable to | -// | obtain it through the world-wide-web, please send a note to | -// | li...@ph... so we can mai... [truncated message content] |
From: <ke...@us...> - 2006-08-29 20:15:34
|
Revision: 713 Author: kerphi Date: 2006-08-29 13:15:26 -0700 (Tue, 29 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=713&view=rev Log Message: ----------- make possible to download local archives Modified Paths: -------------- trunk/contrib/pfcInstaller2/archive trunk/contrib/pfcInstaller2/mirrors trunk/contrib/pfcInstaller2/step2.php Modified: trunk/contrib/pfcInstaller2/archive =================================================================== --- trunk/contrib/pfcInstaller2/archive 2006-08-28 21:08:22 UTC (rev 712) +++ trunk/contrib/pfcInstaller2/archive 2006-08-29 20:15:26 UTC (rev 713) @@ -1 +1 @@ -phpfreechat-0.6.tar.gz +phpfreechat-1.0-beta5.tar.gz Modified: trunk/contrib/pfcInstaller2/mirrors =================================================================== --- trunk/contrib/pfcInstaller2/mirrors 2006-08-28 21:08:22 UTC (rev 712) +++ trunk/contrib/pfcInstaller2/mirrors 2006-08-29 20:15:26 UTC (rev 713) @@ -1 +1 @@ -http://www.phpfreechat.net/download \ No newline at end of file +http://www.phpfreechat.net/download Modified: trunk/contrib/pfcInstaller2/step2.php =================================================================== --- trunk/contrib/pfcInstaller2/step2.php 2006-08-28 21:08:22 UTC (rev 712) +++ trunk/contrib/pfcInstaller2/step2.php 2006-08-29 20:15:26 UTC (rev 713) @@ -17,6 +17,9 @@ <?php if (!$isinstalled) { + // delete the old archive + @unlink($dstpath."/".$archivename); + $param = array(); if (isset($_GET["host"])) $http["proxy_host"] = $_GET["host"]; if (isset($_GET["port"])) $http["proxy_port"] = $_GET["port"]; @@ -27,18 +30,39 @@ // loop over the mirrors for($i = 0; $i<count($mirrors) && !$unziped; $i++) { - $req =& new HTTP_Request($mirrors[$i]."/".$archivename, $param); - if (!PEAR::isError($req->sendRequest())) - { - $archivecontent = $req->getResponseBody(); - file_put_contents($dstpath."/".$archivename, $archivecontent); - + $copied = false; + if (preg_match("/^\//",$mirrors[$i])) + { + // local file + if (!file_exists($mirrors[$i]."/".$archivename)) + $errors[$mirrors[$i]][] = "Local file not found"; + else + { + @copy($mirrors[$i]."/".$archivename,$dstpath."/".$archivename); + $copied = true; + } + } + else + { + // remote file + $req =& new HTTP_Request($mirrors[$i]."/".$archivename, $param); + if (!PEAR::isError($req->sendRequest())) + { + $archivecontent = $req->getResponseBody(); + file_put_contents($dstpath."/".$archivename, $archivecontent); + } + } + if (file_exists($dstpath."/".$archivename)) $copied = true; + + // the archive has been copied (but maybe it just contains a html error page!) + if ($copied) + { require_once "File/Archive.php"; $src = $dstpath."/".$archivename."/"; $dest = $dstpath; $res = @File_Archive::extract( $src, $dest ); if (PEAR::isError($res)) - $errors[$mirrors[$i]] = array($res->getMessage()); + $errors[$mirrors[$i]][] = $res->getMessage(); else $unziped = true; } @@ -53,7 +77,7 @@ else { echo "<p>Error!</p>"; - print_r($errors); + echo "<pre>"; print_r($errors); echo "</pre>"; } } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-28 21:08:29
|
Revision: 712 Author: kerphi Date: 2006-08-28 14:08:22 -0700 (Mon, 28 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=712&view=rev Log Message: ----------- remove csstidy library Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php Removed Paths: ------------- trunk/lib/csstidy-1.1/ Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-08-28 21:06:30 UTC (rev 711) +++ trunk/src/pfcglobalconfig.class.php 2006-08-28 21:08:22 UTC (rev 712) @@ -89,8 +89,6 @@ var $server_script_url = ""; // default is calculated from 'server_script_path' var $xajaxpath = ""; // default is dirname(__FILE__)."/../lib/xajax_0.2.3"; var $jspath = ""; // default is dirname(__FILE__)."/../lib/javascript"; - var $usecsstidy = false; - var $csstidypath = ""; // default is dirname(__FILE__)."/../lib/csstidy-1.1"; var $data_private_path = ""; // default is dirname(__FILE__)."/../data/private"; var $data_public_path = ""; // default is dirname(__FILE__)."/../data/public"; var $data_public_url = ""; // default is calculated from 'data_public_path' path @@ -217,7 +215,6 @@ if ($this->title == "") $this->title = _pfc("My Chat"); if ($this->xajaxpath == "") $this->xajaxpath = dirname(__FILE__)."/../lib/xajax_0.2.3"; if ($this->jspath == "") $this->jspath = dirname(__FILE__)."/../lib/javascript"; - if ($this->csstidypath == "") $this->csstidypath = dirname(__FILE__)."/../lib/csstidy-1.1"; if (is_array($this->channels) && count($this->channels) == 0) $this->channels = array(_pfc("My room")); // first of all, check the used functions This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-28 21:06:40
|
Revision: 711 Author: kerphi Date: 2006-08-28 14:06:30 -0700 (Mon, 28 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=711&view=rev Log Message: ----------- code cleaning Removed Paths: ------------- trunk/contrib/pfcInstaller2/.depdb trunk/contrib/pfcInstaller2/.filemap Deleted: trunk/contrib/pfcInstaller2/.depdb =================================================================== --- trunk/contrib/pfcInstaller2/.depdb 2006-08-28 21:05:14 UTC (rev 710) +++ trunk/contrib/pfcInstaller2/.depdb 2006-08-28 21:06:30 UTC (rev 711) @@ -1 +0,0 @@ -a:3:{s:8:"_version";s:3:"1.0";s:12:"dependencies";a:1:{s:12:"pear.php.net";a:4:{s:9:"mime_type";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.2.1";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:14:"System_Command";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:4:"pear";a:8:{i:0;a:3:{s:3:"dep";a:5:{s:4:"name";s:11:"Archive_Tar";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.1";s:11:"recommended";s:5:"1.3.1";s:7:"exclude";s:5:"1.3.0";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:4:{s:4:"name";s:14:"Console_Getopt";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.2";s:11:"recommended";s:3:"1.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:4:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.5.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.4.0";s:7:"exclude";s:5:"0.4.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:4;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"XML_RPC";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.4.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:5;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.5.1";}s:4:"type";s:8:"optional";s:5:"group";s:12:"webinstaller";}i:6;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.4.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"gtkinstaller";}i:7;a:3:{s:3:"dep";a:3:{s:4:"name";s:18:"PEAR_Frontend_Gtk2";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.1.2";}s:4:"type";s:8:"optional";s:5:"group";s:13:"gtk2installer";}}s:12:"file_archive";a:4:{i:0;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"MIME_Type";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"Mail_Mime";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:2:{s:4:"name";s:4:"Mail";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Cache_Lite";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.5.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:12:"http_request";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"Net_URL";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:6:"1.0.12";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Net_Socket";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.0.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}}}}s:8:"packages";a:1:{s:12:"pear.php.net";a:14:{s:4:"pear";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:14:"system_command";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:11:"archive_tar";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:14:"console_getopt";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_web";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_gtk";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:7:"xml_rpc";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:18:"pear_frontend_gtk2";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:9:"mime_type";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:9:"mail_mime";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:4:"mail";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:10:"cache_lite";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:7:"net_url";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"http_request";}}s:10:"net_socket";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"http_request";}}}}} \ No newline at end of file Deleted: trunk/contrib/pfcInstaller2/.filemap =================================================================== --- trunk/contrib/pfcInstaller2/.filemap 2006-08-28 21:05:14 UTC (rev 710) +++ trunk/contrib/pfcInstaller2/.filemap 2006-08-28 21:06:30 UTC (rev 711) @@ -1 +0,0 @@ -a:5:{s:3:"php";a:234:{s:18:"Console/Getopt.php";s:14:"console_getopt";s:15:"Archive/Tar.php";s:11:"archive_tar";s:12:"OS/Guess.php";s:4:"pear";s:27:"PEAR/ChannelFile/Parser.php";s:4:"pear";s:21:"PEAR/Command/Auth.xml";s:4:"pear";s:21:"PEAR/Command/Auth.php";s:4:"pear";s:22:"PEAR/Command/Build.xml";s:4:"pear";s:22:"PEAR/Command/Build.php";s:4:"pear";s:25:"PEAR/Command/Channels.xml";s:4:"pear";s:25:"PEAR/Command/Channels.php";s:4:"pear";s:23:"PEAR/Command/Common.php";s:4:"pear";s:23:"PEAR/Command/Config.xml";s:4:"pear";s:23:"PEAR/Command/Config.php";s:4:"pear";s:24:"PEAR/Command/Install.xml";s:4:"pear";s:24:"PEAR/Command/Install.php";s:4:"pear";s:23:"PEAR/Command/Mirror.xml";s:4:"pear";s:23:"PEAR/Command/Mirror.php";s:4:"pear";s:24:"PEAR/Command/Package.xml";s:4:"pear";s:24:"PEAR/Command/Package.php";s:4:"pear";s:23:"PEAR/Command/Pickle.xml";s:4:"pear";s:23:"PEAR/Command/Pickle.php";s:4:"pear";s:25:"PEAR/Command/Registry.xml";s:4:"pear";s:25:"PEAR/Command/Registry.php";s:4:"pear";s:23:"PEAR/Command/Remote.xml";s:4:"pear";s:23:"PEAR/Command/Remote.php";s:4:"pear";s:21:"PEAR/Command/Test.xml";s:4:"pear";s:21:"PEAR/Command/Test.php";s:4:"pear";s:27:"PEAR/Downloader/Package.php";s:4:"pear";s:21:"PEAR/Frontend/CLI.php";s:4:"pear";s:30:"PEAR/Installer/Role/Common.php";s:4:"pear";s:28:"PEAR/Installer/Role/Data.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Data.php";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.php";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.php";s:4:"pear";s:27:"PEAR/Installer/Role/Php.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Php.php";s:4:"pear";s:30:"PEAR/Installer/Role/Script.xml";s:4:"pear";s:30:"PEAR/Installer/Role/Script.php";s:4:"pear";s:27:"PEAR/Installer/Role/Src.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Src.php";s:4:"pear";s:28:"PEAR/Installer/Role/Test.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Test.php";s:4:"pear";s:23:"PEAR/Installer/Role.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v1.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v2.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v1.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v2.php";s:4:"pear";s:26:"PEAR/PackageFile/v2/rw.php";s:4:"pear";s:33:"PEAR/PackageFile/v2/Validator.php";s:4:"pear";s:23:"PEAR/PackageFile/v1.php";s:4:"pear";s:23:"PEAR/PackageFile/v2.php";s:4:"pear";s:16:"PEAR/REST/10.php";s:4:"pear";s:16:"PEAR/REST/11.php";s:4:"pear";s:34:"PEAR/Task/Postinstallscript/rw.php";s:4:"pear";s:24:"PEAR/Task/Replace/rw.php";s:4:"pear";s:24:"PEAR/Task/Unixeol/rw.php";s:4:"pear";s:27:"PEAR/Task/Windowseol/rw.php";s:4:"pear";s:20:"PEAR/Task/Common.php";s:4:"pear";s:31:"PEAR/Task/Postinstallscript.php";s:4:"pear";s:21:"PEAR/Task/Replace.php";s:4:"pear";s:21:"PEAR/Task/Unixeol.php";s:4:"pear";s:24:"PEAR/Task/Windowseol.php";s:4:"pear";s:23:"PEAR/Validator/PECL.php";s:4:"pear";s:19:"PEAR/Autoloader.php";s:4:"pear";s:16:"PEAR/Builder.php";s:4:"pear";s:20:"PEAR/ChannelFile.php";s:4:"pear";s:16:"PEAR/Command.php";s:4:"pear";s:15:"PEAR/Common.php";s:4:"pear";s:15:"PEAR/Config.php";s:4:"pear";s:19:"PEAR/Dependency.php";s:4:"pear";s:21:"PEAR/DependencyDB.php";s:4:"pear";s:20:"PEAR/Dependency2.php";s:4:"pear";s:19:"PEAR/Downloader.php";s:4:"pear";s:19:"PEAR/ErrorStack.php";s:4:"pear";s:18:"PEAR/Exception.php";s:4:"pear";s:17:"PEAR/Frontend.php";s:4:"pear";s:18:"PEAR/Installer.php";s:4:"pear";s:20:"PEAR/PackageFile.php";s:4:"pear";s:17:"PEAR/Packager.php";s:4:"pear";s:17:"PEAR/Registry.php";s:4:"pear";s:15:"PEAR/Remote.php";s:4:"pear";s:13:"PEAR/REST.php";s:4:"pear";s:16:"PEAR/RunTest.php";s:4:"pear";s:17:"PEAR/Validate.php";s:4:"pear";s:18:"PEAR/XMLParser.php";s:4:"pear";s:19:"scripts/pearcmd.php";s:4:"pear";s:19:"scripts/peclcmd.php";s:4:"pear";s:8:"PEAR.php";s:4:"pear";s:10:"System.php";s:4:"pear";s:11:"Net/URL.php";s:7:"net_url";s:14:"Net/Socket.php";s:10:"net_socket";s:13:"MIME/Type.php";s:9:"mime_type";s:23:"MIME/Type/Parameter.php";s:9:"mime_type";s:26:"docs/MIME_Type/example.php";s:9:"mime_type";s:14:"PHP/Compat.php";s:10:"php_compat";s:25:"PHP/Compat/Components.php";s:10:"php_compat";s:43:"PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";s:10:"php_compat";s:32:"PHP/Compat/Constant/E_STRICT.php";s:10:"php_compat";s:38:"PHP/Compat/Constant/PATH_SEPARATOR.php";s:10:"php_compat";s:27:"PHP/Compat/Constant/STD.php";s:10:"php_compat";s:28:"PHP/Compat/Constant/FILE.php";s:10:"php_compat";s:31:"PHP/Compat/Constant/PHP_EOL.php";s:10:"php_compat";s:34:"PHP/Compat/Constant/UPLOAD_ERR.php";s:10:"php_compat";s:25:"PHP/Compat/Constant/T.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_change_key_case.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_chunk.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_combine.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_diff_assoc.php";s:10:"php_compat";s:38:"PHP/Compat/Function/array_diff_key.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_diff_uassoc.php";s:10:"php_compat";s:39:"PHP/Compat/Function/array_diff_ukey.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_intersect_assoc.php";s:10:"php_compat";s:43:"PHP/Compat/Function/array_intersect_key.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_intersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_intersect_ukey.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_key_exists.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_product.php";s:10:"php_compat";s:36:"PHP/Compat/Function/array_search.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_udiff.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_udiff_assoc.php";s:10:"php_compat";s:42:"PHP/Compat/Function/array_udiff_uassoc.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_uintersect.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_uintersect_assoc.php";s:10:"php_compat";s:47:"PHP/Compat/Function/array_uintersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_walk_recursive.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcinvert.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcpowmod.php";s:10:"php_compat";s:44:"PHP/Compat/Function/call_user_func_array.php";s:10:"php_compat";s:29:"PHP/Compat/Function/clone.php";s:10:"php_compat";s:32:"PHP/Compat/Function/constant.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uuencode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uudecode.php";s:10:"php_compat";s:45:"PHP/Compat/Function/debug_print_backtrace.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_get_contents.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_put_contents.php";s:10:"php_compat";s:32:"PHP/Compat/Function/floatval.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fprintf.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fputcsv.php";s:10:"php_compat";s:35:"PHP/Compat/Function/get_headers.php";s:10:"php_compat";s:40:"PHP/Compat/Function/get_include_path.php";s:10:"php_compat";s:42:"PHP/Compat/Function/html_entity_decode.php";s:10:"php_compat";s:47:"PHP/Compat/Function/htmlspecialchars_decode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/http_build_query.php";s:10:"php_compat";s:37:"PHP/Compat/Function/ibase_timefmt.php";s:10:"php_compat";s:29:"PHP/Compat/Function/idate.php";s:10:"php_compat";s:47:"PHP/Compat/Function/image_type_to_mime_type.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_ntop.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_pton.php";s:10:"php_compat";s:35:"PHP/Compat/Function/ini_get_all.php";s:10:"php_compat";s:28:"PHP/Compat/Function/is_a.php";s:10:"php_compat";s:32:"PHP/Compat/Function/md5_file.php";s:10:"php_compat";s:29:"PHP/Compat/Function/mhash.php";s:10:"php_compat";s:41:"PHP/Compat/Function/mime_content_type.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_clean.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_flush.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_clean.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_flush.php";s:10:"php_compat";s:44:"PHP/Compat/Function/php_strip_whitespace.php";s:10:"php_compat";s:40:"PHP/Compat/Function/pg_affected_rows.php";s:10:"php_compat";s:39:"PHP/Compat/Function/pg_escape_bytea.php";s:10:"php_compat";s:41:"PHP/Compat/Function/pg_unescape_bytea.php";s:10:"php_compat";s:44:"PHP/Compat/Function/restore_include_path.php";s:10:"php_compat";s:31:"PHP/Compat/Function/scandir.php";s:10:"php_compat";s:40:"PHP/Compat/Function/set_include_path.php";s:10:"php_compat";s:36:"PHP/Compat/Function/str_ireplace.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_rot13.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_split.php";s:10:"php_compat";s:35:"PHP/Compat/Function/str_shuffle.php";s:10:"php_compat";s:38:"PHP/Compat/Function/str_word_count.php";s:10:"php_compat";s:31:"PHP/Compat/Function/stripos.php";s:10:"php_compat";s:31:"PHP/Compat/Function/strpbrk.php";s:10:"php_compat";s:32:"PHP/Compat/Function/strripos.php";s:10:"php_compat";s:38:"PHP/Compat/Function/substr_compare.php";s:10:"php_compat";s:40:"PHP/Compat/Function/time_sleep_until.php";s:10:"php_compat";s:34:"PHP/Compat/Function/var_export.php";s:10:"php_compat";s:39:"PHP/Compat/Function/version_compare.php";s:10:"php_compat";s:31:"PHP/Compat/Function/vprintf.php";s:10:"php_compat";s:32:"PHP/Compat/Function/vsprintf.php";s:10:"php_compat";s:16:"File/Archive.php";s:12:"file_archive";s:26:"File/Archive/Predicate.php";s:12:"file_archive";s:23:"File/Archive/Reader.php";s:12:"file_archive";s:23:"File/Archive/Writer.php";s:12:"file_archive";s:30:"File/Archive/Predicate/And.php";s:12:"file_archive";s:34:"File/Archive/Predicate/Current.php";s:12:"file_archive";s:33:"File/Archive/Predicate/Custom.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Duplicate.php";s:12:"file_archive";s:31:"File/Archive/Predicate/Ereg.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Eregi.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Extension.php";s:12:"file_archive";s:32:"File/Archive/Predicate/False.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Index.php";s:12:"file_archive";s:35:"File/Archive/Predicate/MaxDepth.php";s:12:"file_archive";s:31:"File/Archive/Predicate/MIME.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinSize.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinTime.php";s:12:"file_archive";s:30:"File/Archive/Predicate/Not.php";s:12:"file_archive";s:29:"File/Archive/Predicate/Or.php";s:12:"file_archive";s:31:"File/Archive/Predicate/True.php";s:12:"file_archive";s:26:"File/Archive/Reader/Ar.php";s:12:"file_archive";s:31:"File/Archive/Reader/Archive.php";s:12:"file_archive";s:29:"File/Archive/Reader/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Reader/Cache.php";s:12:"file_archive";s:34:"File/Archive/Reader/ChangeName.php";s:12:"file_archive";s:30:"File/Archive/Reader/Concat.php";s:12:"file_archive";s:33:"File/Archive/Reader/Directory.php";s:12:"file_archive";s:28:"File/Archive/Reader/File.php";s:12:"file_archive";s:30:"File/Archive/Reader/Filter.php";s:12:"file_archive";s:28:"File/Archive/Reader/Gzip.php";s:12:"file_archive";s:30:"File/Archive/Reader/Memory.php";s:12:"file_archive";s:32:"File/Archive/Reader/MimeList.php";s:12:"file_archive";s:29:"File/Archive/Reader/Multi.php";s:12:"file_archive";s:29:"File/Archive/Reader/Relay.php";s:12:"file_archive";s:30:"File/Archive/Reader/Select.php";s:12:"file_archive";s:27:"File/Archive/Reader/Tar.php";s:12:"file_archive";s:34:"File/Archive/Reader/Uncompress.php";s:12:"file_archive";s:27:"File/Archive/Reader/Zip.php";s:12:"file_archive";s:35:"File/Archive/Writer/AddBaseName.php";s:12:"file_archive";s:26:"File/Archive/Writer/Ar.php";s:12:"file_archive";s:31:"File/Archive/Writer/Archive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Writer/Files.php";s:12:"file_archive";s:28:"File/Archive/Writer/Gzip.php";s:12:"file_archive";s:28:"File/Archive/Writer/Mail.php";s:12:"file_archive";s:30:"File/Archive/Writer/Memory.php";s:12:"file_archive";s:37:"File/Archive/Writer/MemoryArchive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Multi.php";s:12:"file_archive";s:30:"File/Archive/Writer/Output.php";s:12:"file_archive";s:27:"File/Archive/Writer/Tar.php";s:12:"file_archive";s:38:"File/Archive/Writer/UniqueAppender.php";s:12:"file_archive";s:27:"File/Archive/Writer/Zip.php";s:12:"file_archive";s:16:"HTTP/Request.php";s:12:"http_request";s:25:"HTTP/Request/Listener.php";s:12:"http_request";}s:3:"doc";a:5:{s:32:"archive_tar/docs/Archive_Tar.txt";s:11:"archive_tar";s:24:"net_url/docs/example.php";s:7:"net_url";s:32:"file_archive/File/doc/readme.txt";s:12:"file_archive";s:29:"http_request/docs/example.php";s:12:"http_request";s:39:"http_request/docs/download-progress.php";s:12:"http_request";}s:6:"script";a:3:{s:15:"scripts/pear.sh";s:4:"pear";s:18:"scripts/peardev.sh";s:4:"pear";s:15:"scripts/pecl.sh";s:4:"pear";}s:4:"data";a:2:{s:16:"pear/package.dtd";s:4:"pear";s:18:"pear/template.spec";s:4:"pear";}s:4:"test";a:87:{s:34:"php_compat/tests/loadconstant.phpt";s:10:"php_compat";s:34:"php_compat/tests/loadfunction.phpt";s:10:"php_compat";s:33:"php_compat/tests/loadversion.phpt";s:10:"php_compat";s:50:"php_compat/tests/constant/directory_separator.phpt";s:10:"php_compat";s:39:"php_compat/tests/constant/e_strict.phpt";s:10:"php_compat";s:35:"php_compat/tests/constant/file.phpt";s:10:"php_compat";s:45:"php_compat/tests/constant/path_separator.phpt";s:10:"php_compat";s:34:"php_compat/tests/constant/std.phpt";s:10:"php_compat";s:38:"php_compat/tests/constant/php_eol.phpt";s:10:"php_compat";s:41:"php_compat/tests/constant/upload_err.phpt";s:10:"php_compat";s:32:"php_compat/tests/constant/t.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_change_key_case.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_chunk.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_combine.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_diff_assoc.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_diff_uassoc.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/array_diff_key.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/array_diff_ukey.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_intersect_assoc.phpt";s:10:"php_compat";s:50:"php_compat/tests/function/array_intersect_key.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_intersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_intersect_ukey.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_key_exists.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_product.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/array_search.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_udiff.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_udiff_assoc.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/array_udiff_uassoc.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_uintersect.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_uintersect_assoc.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/array_uintersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_walk_recursive.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcinvert.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcpowmod.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/call_user_func_array.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/clone.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/constant.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uuencode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uudecode.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/debug_print_backtrace.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_get_contents.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_put_contents.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/floatval.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fprintf.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fputcsv.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/get_headers.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/get_include_path.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/html_entity_decode.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/htmlspecialchars_decode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/http_build_query.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/ibase_timefmt.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/idate.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/image_type_to_mime_type.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_ntop.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_pton.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/ini_get_all.phpt";s:10:"php_compat";s:35:"php_compat/tests/function/is_a.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/is_scalar.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/md5_file.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/mhash.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/mime_content_type.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_clean.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_flush.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_clean.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_flush.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/php_strip_whitespace.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/pg_affected_rows.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/pg_escape_bytea.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/pg_unescape_bytea.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/restore_include_path.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/scandir.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/set_include_path.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/str_ireplace.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_rot13.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_split.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/str_shuffle.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/str_word_count.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/stripos.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/strpbrk.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/strripos.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/substr_compare.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/time_sleep_until.phpt";s:10:"php_compat";s:41:"php_compat/tests/function/var_export.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/version_compare.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/vprintf.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/vsprintf.phpt";s:10:"php_compat";s:32:"file_archive/File/tests/test.php";s:12:"file_archive";}} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-28 21:05:37
|
Revision: 710 Author: kerphi Date: 2006-08-28 14:05:14 -0700 (Mon, 28 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=710&view=rev Log Message: ----------- work in progress on the new pfcInstaller Modified Paths: -------------- trunk/contrib/pfcInstaller2/.depdb trunk/contrib/pfcInstaller2/.filemap trunk/contrib/pfcInstaller2/index.php Added Paths: ----------- trunk/contrib/pfcInstaller2/HTTP/ trunk/contrib/pfcInstaller2/HTTP/Request/ trunk/contrib/pfcInstaller2/HTTP/Request/Listener.php trunk/contrib/pfcInstaller2/HTTP/Request.php trunk/contrib/pfcInstaller2/archive trunk/contrib/pfcInstaller2/config.php trunk/contrib/pfcInstaller2/mirrors trunk/contrib/pfcInstaller2/step1.php trunk/contrib/pfcInstaller2/step2.php Modified: trunk/contrib/pfcInstaller2/.depdb =================================================================== --- trunk/contrib/pfcInstaller2/.depdb 2006-08-27 07:56:46 UTC (rev 709) +++ trunk/contrib/pfcInstaller2/.depdb 2006-08-28 21:05:14 UTC (rev 710) @@ -1 +1 @@ -a:3:{s:8:"_version";s:3:"1.0";s:12:"dependencies";a:1:{s:12:"pear.php.net";a:3:{s:9:"mime_type";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.2.1";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:14:"System_Command";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:4:"pear";a:8:{i:0;a:3:{s:3:"dep";a:5:{s:4:"name";s:11:"Archive_Tar";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.1";s:11:"recommended";s:5:"1.3.1";s:7:"exclude";s:5:"1.3.0";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:4:{s:4:"name";s:14:"Console_Getopt";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.2";s:11:"recommended";s:3:"1.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:4:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.5.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.4.0";s:7:"exclude";s:5:"0.4.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:4;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"XML_RPC";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.4.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:5;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.5.1";}s:4:"type";s:8:"optional";s:5:"group";s:12:"webinstaller";}i:6;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.4.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"gtkinstaller";}i:7;a:3:{s:3:"dep";a:3:{s:4:"name";s:18:"PEAR_Frontend_Gtk2";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.1.2";}s:4:"type";s:8:"optional";s:5:"group";s:13:"gtk2installer";}}s:12:"file_archive";a:4:{i:0;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"MIME_Type";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"Mail_Mime";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:2:{s:4:"name";s:4:"Mail";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Cache_Lite";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.5.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}}}s:8:"packages";a:1:{s:12:"pear.php.net";a:12:{s:4:"pear";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:14:"system_command";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:11:"archive_tar";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:14:"console_getopt";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_web";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_gtk";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:7:"xml_rpc";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:18:"pear_frontend_gtk2";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:9:"mime_type";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:9:"mail_mime";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:4:"mail";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:10:"cache_lite";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}}}} \ No newline at end of file +a:3:{s:8:"_version";s:3:"1.0";s:12:"dependencies";a:1:{s:12:"pear.php.net";a:4:{s:9:"mime_type";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.2.1";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:14:"System_Command";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:4:"pear";a:8:{i:0;a:3:{s:3:"dep";a:5:{s:4:"name";s:11:"Archive_Tar";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.1";s:11:"recommended";s:5:"1.3.1";s:7:"exclude";s:5:"1.3.0";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:4:{s:4:"name";s:14:"Console_Getopt";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.2";s:11:"recommended";s:3:"1.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:4:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.5.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.4.0";s:7:"exclude";s:5:"0.4.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:4;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"XML_RPC";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.4.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:5;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.5.1";}s:4:"type";s:8:"optional";s:5:"group";s:12:"webinstaller";}i:6;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.4.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"gtkinstaller";}i:7;a:3:{s:3:"dep";a:3:{s:4:"name";s:18:"PEAR_Frontend_Gtk2";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.1.2";}s:4:"type";s:8:"optional";s:5:"group";s:13:"gtk2installer";}}s:12:"file_archive";a:4:{i:0;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"MIME_Type";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"Mail_Mime";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:2:{s:4:"name";s:4:"Mail";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Cache_Lite";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.5.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:12:"http_request";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"Net_URL";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:6:"1.0.12";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Net_Socket";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.0.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}}}}s:8:"packages";a:1:{s:12:"pear.php.net";a:14:{s:4:"pear";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:14:"system_command";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:11:"archive_tar";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:14:"console_getopt";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_web";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_gtk";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:7:"xml_rpc";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:18:"pear_frontend_gtk2";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:9:"mime_type";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:9:"mail_mime";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:4:"mail";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:10:"cache_lite";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:7:"net_url";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"http_request";}}s:10:"net_socket";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"http_request";}}}}} \ No newline at end of file Modified: trunk/contrib/pfcInstaller2/.filemap =================================================================== --- trunk/contrib/pfcInstaller2/.filemap 2006-08-27 07:56:46 UTC (rev 709) +++ trunk/contrib/pfcInstaller2/.filemap 2006-08-28 21:05:14 UTC (rev 710) @@ -1 +1 @@ -a:5:{s:3:"php";a:232:{s:18:"Console/Getopt.php";s:14:"console_getopt";s:15:"Archive/Tar.php";s:11:"archive_tar";s:12:"OS/Guess.php";s:4:"pear";s:27:"PEAR/ChannelFile/Parser.php";s:4:"pear";s:21:"PEAR/Command/Auth.xml";s:4:"pear";s:21:"PEAR/Command/Auth.php";s:4:"pear";s:22:"PEAR/Command/Build.xml";s:4:"pear";s:22:"PEAR/Command/Build.php";s:4:"pear";s:25:"PEAR/Command/Channels.xml";s:4:"pear";s:25:"PEAR/Command/Channels.php";s:4:"pear";s:23:"PEAR/Command/Common.php";s:4:"pear";s:23:"PEAR/Command/Config.xml";s:4:"pear";s:23:"PEAR/Command/Config.php";s:4:"pear";s:24:"PEAR/Command/Install.xml";s:4:"pear";s:24:"PEAR/Command/Install.php";s:4:"pear";s:23:"PEAR/Command/Mirror.xml";s:4:"pear";s:23:"PEAR/Command/Mirror.php";s:4:"pear";s:24:"PEAR/Command/Package.xml";s:4:"pear";s:24:"PEAR/Command/Package.php";s:4:"pear";s:23:"PEAR/Command/Pickle.xml";s:4:"pear";s:23:"PEAR/Command/Pickle.php";s:4:"pear";s:25:"PEAR/Command/Registry.xml";s:4:"pear";s:25:"PEAR/Command/Registry.php";s:4:"pear";s:23:"PEAR/Command/Remote.xml";s:4:"pear";s:23:"PEAR/Command/Remote.php";s:4:"pear";s:21:"PEAR/Command/Test.xml";s:4:"pear";s:21:"PEAR/Command/Test.php";s:4:"pear";s:27:"PEAR/Downloader/Package.php";s:4:"pear";s:21:"PEAR/Frontend/CLI.php";s:4:"pear";s:30:"PEAR/Installer/Role/Common.php";s:4:"pear";s:28:"PEAR/Installer/Role/Data.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Data.php";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.php";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.php";s:4:"pear";s:27:"PEAR/Installer/Role/Php.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Php.php";s:4:"pear";s:30:"PEAR/Installer/Role/Script.xml";s:4:"pear";s:30:"PEAR/Installer/Role/Script.php";s:4:"pear";s:27:"PEAR/Installer/Role/Src.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Src.php";s:4:"pear";s:28:"PEAR/Installer/Role/Test.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Test.php";s:4:"pear";s:23:"PEAR/Installer/Role.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v1.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v2.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v1.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v2.php";s:4:"pear";s:26:"PEAR/PackageFile/v2/rw.php";s:4:"pear";s:33:"PEAR/PackageFile/v2/Validator.php";s:4:"pear";s:23:"PEAR/PackageFile/v1.php";s:4:"pear";s:23:"PEAR/PackageFile/v2.php";s:4:"pear";s:16:"PEAR/REST/10.php";s:4:"pear";s:16:"PEAR/REST/11.php";s:4:"pear";s:34:"PEAR/Task/Postinstallscript/rw.php";s:4:"pear";s:24:"PEAR/Task/Replace/rw.php";s:4:"pear";s:24:"PEAR/Task/Unixeol/rw.php";s:4:"pear";s:27:"PEAR/Task/Windowseol/rw.php";s:4:"pear";s:20:"PEAR/Task/Common.php";s:4:"pear";s:31:"PEAR/Task/Postinstallscript.php";s:4:"pear";s:21:"PEAR/Task/Replace.php";s:4:"pear";s:21:"PEAR/Task/Unixeol.php";s:4:"pear";s:24:"PEAR/Task/Windowseol.php";s:4:"pear";s:23:"PEAR/Validator/PECL.php";s:4:"pear";s:19:"PEAR/Autoloader.php";s:4:"pear";s:16:"PEAR/Builder.php";s:4:"pear";s:20:"PEAR/ChannelFile.php";s:4:"pear";s:16:"PEAR/Command.php";s:4:"pear";s:15:"PEAR/Common.php";s:4:"pear";s:15:"PEAR/Config.php";s:4:"pear";s:19:"PEAR/Dependency.php";s:4:"pear";s:21:"PEAR/DependencyDB.php";s:4:"pear";s:20:"PEAR/Dependency2.php";s:4:"pear";s:19:"PEAR/Downloader.php";s:4:"pear";s:19:"PEAR/ErrorStack.php";s:4:"pear";s:18:"PEAR/Exception.php";s:4:"pear";s:17:"PEAR/Frontend.php";s:4:"pear";s:18:"PEAR/Installer.php";s:4:"pear";s:20:"PEAR/PackageFile.php";s:4:"pear";s:17:"PEAR/Packager.php";s:4:"pear";s:17:"PEAR/Registry.php";s:4:"pear";s:15:"PEAR/Remote.php";s:4:"pear";s:13:"PEAR/REST.php";s:4:"pear";s:16:"PEAR/RunTest.php";s:4:"pear";s:17:"PEAR/Validate.php";s:4:"pear";s:18:"PEAR/XMLParser.php";s:4:"pear";s:19:"scripts/pearcmd.php";s:4:"pear";s:19:"scripts/peclcmd.php";s:4:"pear";s:8:"PEAR.php";s:4:"pear";s:10:"System.php";s:4:"pear";s:11:"Net/URL.php";s:7:"net_url";s:14:"Net/Socket.php";s:10:"net_socket";s:13:"MIME/Type.php";s:9:"mime_type";s:23:"MIME/Type/Parameter.php";s:9:"mime_type";s:26:"docs/MIME_Type/example.php";s:9:"mime_type";s:14:"PHP/Compat.php";s:10:"php_compat";s:25:"PHP/Compat/Components.php";s:10:"php_compat";s:43:"PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";s:10:"php_compat";s:32:"PHP/Compat/Constant/E_STRICT.php";s:10:"php_compat";s:38:"PHP/Compat/Constant/PATH_SEPARATOR.php";s:10:"php_compat";s:27:"PHP/Compat/Constant/STD.php";s:10:"php_compat";s:28:"PHP/Compat/Constant/FILE.php";s:10:"php_compat";s:31:"PHP/Compat/Constant/PHP_EOL.php";s:10:"php_compat";s:34:"PHP/Compat/Constant/UPLOAD_ERR.php";s:10:"php_compat";s:25:"PHP/Compat/Constant/T.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_change_key_case.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_chunk.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_combine.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_diff_assoc.php";s:10:"php_compat";s:38:"PHP/Compat/Function/array_diff_key.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_diff_uassoc.php";s:10:"php_compat";s:39:"PHP/Compat/Function/array_diff_ukey.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_intersect_assoc.php";s:10:"php_compat";s:43:"PHP/Compat/Function/array_intersect_key.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_intersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_intersect_ukey.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_key_exists.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_product.php";s:10:"php_compat";s:36:"PHP/Compat/Function/array_search.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_udiff.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_udiff_assoc.php";s:10:"php_compat";s:42:"PHP/Compat/Function/array_udiff_uassoc.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_uintersect.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_uintersect_assoc.php";s:10:"php_compat";s:47:"PHP/Compat/Function/array_uintersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_walk_recursive.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcinvert.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcpowmod.php";s:10:"php_compat";s:44:"PHP/Compat/Function/call_user_func_array.php";s:10:"php_compat";s:29:"PHP/Compat/Function/clone.php";s:10:"php_compat";s:32:"PHP/Compat/Function/constant.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uuencode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uudecode.php";s:10:"php_compat";s:45:"PHP/Compat/Function/debug_print_backtrace.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_get_contents.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_put_contents.php";s:10:"php_compat";s:32:"PHP/Compat/Function/floatval.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fprintf.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fputcsv.php";s:10:"php_compat";s:35:"PHP/Compat/Function/get_headers.php";s:10:"php_compat";s:40:"PHP/Compat/Function/get_include_path.php";s:10:"php_compat";s:42:"PHP/Compat/Function/html_entity_decode.php";s:10:"php_compat";s:47:"PHP/Compat/Function/htmlspecialchars_decode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/http_build_query.php";s:10:"php_compat";s:37:"PHP/Compat/Function/ibase_timefmt.php";s:10:"php_compat";s:29:"PHP/Compat/Function/idate.php";s:10:"php_compat";s:47:"PHP/Compat/Function/image_type_to_mime_type.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_ntop.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_pton.php";s:10:"php_compat";s:35:"PHP/Compat/Function/ini_get_all.php";s:10:"php_compat";s:28:"PHP/Compat/Function/is_a.php";s:10:"php_compat";s:32:"PHP/Compat/Function/md5_file.php";s:10:"php_compat";s:29:"PHP/Compat/Function/mhash.php";s:10:"php_compat";s:41:"PHP/Compat/Function/mime_content_type.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_clean.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_flush.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_clean.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_flush.php";s:10:"php_compat";s:44:"PHP/Compat/Function/php_strip_whitespace.php";s:10:"php_compat";s:40:"PHP/Compat/Function/pg_affected_rows.php";s:10:"php_compat";s:39:"PHP/Compat/Function/pg_escape_bytea.php";s:10:"php_compat";s:41:"PHP/Compat/Function/pg_unescape_bytea.php";s:10:"php_compat";s:44:"PHP/Compat/Function/restore_include_path.php";s:10:"php_compat";s:31:"PHP/Compat/Function/scandir.php";s:10:"php_compat";s:40:"PHP/Compat/Function/set_include_path.php";s:10:"php_compat";s:36:"PHP/Compat/Function/str_ireplace.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_rot13.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_split.php";s:10:"php_compat";s:35:"PHP/Compat/Function/str_shuffle.php";s:10:"php_compat";s:38:"PHP/Compat/Function/str_word_count.php";s:10:"php_compat";s:31:"PHP/Compat/Function/stripos.php";s:10:"php_compat";s:31:"PHP/Compat/Function/strpbrk.php";s:10:"php_compat";s:32:"PHP/Compat/Function/strripos.php";s:10:"php_compat";s:38:"PHP/Compat/Function/substr_compare.php";s:10:"php_compat";s:40:"PHP/Compat/Function/time_sleep_until.php";s:10:"php_compat";s:34:"PHP/Compat/Function/var_export.php";s:10:"php_compat";s:39:"PHP/Compat/Function/version_compare.php";s:10:"php_compat";s:31:"PHP/Compat/Function/vprintf.php";s:10:"php_compat";s:32:"PHP/Compat/Function/vsprintf.php";s:10:"php_compat";s:16:"File/Archive.php";s:12:"file_archive";s:26:"File/Archive/Predicate.php";s:12:"file_archive";s:23:"File/Archive/Reader.php";s:12:"file_archive";s:23:"File/Archive/Writer.php";s:12:"file_archive";s:30:"File/Archive/Predicate/And.php";s:12:"file_archive";s:34:"File/Archive/Predicate/Current.php";s:12:"file_archive";s:33:"File/Archive/Predicate/Custom.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Duplicate.php";s:12:"file_archive";s:31:"File/Archive/Predicate/Ereg.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Eregi.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Extension.php";s:12:"file_archive";s:32:"File/Archive/Predicate/False.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Index.php";s:12:"file_archive";s:35:"File/Archive/Predicate/MaxDepth.php";s:12:"file_archive";s:31:"File/Archive/Predicate/MIME.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinSize.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinTime.php";s:12:"file_archive";s:30:"File/Archive/Predicate/Not.php";s:12:"file_archive";s:29:"File/Archive/Predicate/Or.php";s:12:"file_archive";s:31:"File/Archive/Predicate/True.php";s:12:"file_archive";s:26:"File/Archive/Reader/Ar.php";s:12:"file_archive";s:31:"File/Archive/Reader/Archive.php";s:12:"file_archive";s:29:"File/Archive/Reader/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Reader/Cache.php";s:12:"file_archive";s:34:"File/Archive/Reader/ChangeName.php";s:12:"file_archive";s:30:"File/Archive/Reader/Concat.php";s:12:"file_archive";s:33:"File/Archive/Reader/Directory.php";s:12:"file_archive";s:28:"File/Archive/Reader/File.php";s:12:"file_archive";s:30:"File/Archive/Reader/Filter.php";s:12:"file_archive";s:28:"File/Archive/Reader/Gzip.php";s:12:"file_archive";s:30:"File/Archive/Reader/Memory.php";s:12:"file_archive";s:32:"File/Archive/Reader/MimeList.php";s:12:"file_archive";s:29:"File/Archive/Reader/Multi.php";s:12:"file_archive";s:29:"File/Archive/Reader/Relay.php";s:12:"file_archive";s:30:"File/Archive/Reader/Select.php";s:12:"file_archive";s:27:"File/Archive/Reader/Tar.php";s:12:"file_archive";s:34:"File/Archive/Reader/Uncompress.php";s:12:"file_archive";s:27:"File/Archive/Reader/Zip.php";s:12:"file_archive";s:35:"File/Archive/Writer/AddBaseName.php";s:12:"file_archive";s:26:"File/Archive/Writer/Ar.php";s:12:"file_archive";s:31:"File/Archive/Writer/Archive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Writer/Files.php";s:12:"file_archive";s:28:"File/Archive/Writer/Gzip.php";s:12:"file_archive";s:28:"File/Archive/Writer/Mail.php";s:12:"file_archive";s:30:"File/Archive/Writer/Memory.php";s:12:"file_archive";s:37:"File/Archive/Writer/MemoryArchive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Multi.php";s:12:"file_archive";s:30:"File/Archive/Writer/Output.php";s:12:"file_archive";s:27:"File/Archive/Writer/Tar.php";s:12:"file_archive";s:38:"File/Archive/Writer/UniqueAppender.php";s:12:"file_archive";s:27:"File/Archive/Writer/Zip.php";s:12:"file_archive";}s:3:"doc";a:3:{s:32:"archive_tar/docs/Archive_Tar.txt";s:11:"archive_tar";s:24:"net_url/docs/example.php";s:7:"net_url";s:32:"file_archive/File/doc/readme.txt";s:12:"file_archive";}s:6:"script";a:3:{s:15:"scripts/pear.sh";s:4:"pear";s:18:"scripts/peardev.sh";s:4:"pear";s:15:"scripts/pecl.sh";s:4:"pear";}s:4:"data";a:2:{s:16:"pear/package.dtd";s:4:"pear";s:18:"pear/template.spec";s:4:"pear";}s:4:"test";a:87:{s:34:"php_compat/tests/loadconstant.phpt";s:10:"php_compat";s:34:"php_compat/tests/loadfunction.phpt";s:10:"php_compat";s:33:"php_compat/tests/loadversion.phpt";s:10:"php_compat";s:50:"php_compat/tests/constant/directory_separator.phpt";s:10:"php_compat";s:39:"php_compat/tests/constant/e_strict.phpt";s:10:"php_compat";s:35:"php_compat/tests/constant/file.phpt";s:10:"php_compat";s:45:"php_compat/tests/constant/path_separator.phpt";s:10:"php_compat";s:34:"php_compat/tests/constant/std.phpt";s:10:"php_compat";s:38:"php_compat/tests/constant/php_eol.phpt";s:10:"php_compat";s:41:"php_compat/tests/constant/upload_err.phpt";s:10:"php_compat";s:32:"php_compat/tests/constant/t.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_change_key_case.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_chunk.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_combine.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_diff_assoc.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_diff_uassoc.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/array_diff_key.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/array_diff_ukey.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_intersect_assoc.phpt";s:10:"php_compat";s:50:"php_compat/tests/function/array_intersect_key.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_intersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_intersect_ukey.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_key_exists.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_product.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/array_search.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_udiff.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_udiff_assoc.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/array_udiff_uassoc.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_uintersect.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_uintersect_assoc.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/array_uintersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_walk_recursive.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcinvert.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcpowmod.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/call_user_func_array.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/clone.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/constant.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uuencode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uudecode.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/debug_print_backtrace.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_get_contents.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_put_contents.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/floatval.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fprintf.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fputcsv.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/get_headers.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/get_include_path.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/html_entity_decode.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/htmlspecialchars_decode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/http_build_query.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/ibase_timefmt.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/idate.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/image_type_to_mime_type.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_ntop.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_pton.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/ini_get_all.phpt";s:10:"php_compat";s:35:"php_compat/tests/function/is_a.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/is_scalar.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/md5_file.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/mhash.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/mime_content_type.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_clean.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_flush.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_clean.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_flush.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/php_strip_whitespace.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/pg_affected_rows.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/pg_escape_bytea.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/pg_unescape_bytea.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/restore_include_path.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/scandir.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/set_include_path.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/str_ireplace.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_rot13.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_split.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/str_shuffle.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/str_word_count.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/stripos.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/strpbrk.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/strripos.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/substr_compare.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/time_sleep_until.phpt";s:10:"php_compat";s:41:"php_compat/tests/function/var_export.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/version_compare.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/vprintf.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/vsprintf.phpt";s:10:"php_compat";s:32:"file_archive/File/tests/test.php";s:12:"file_archive";}} \ No newline at end of file +a:5:{s:3:"php";a:234:{s:18:"Console/Getopt.php";s:14:"console_getopt";s:15:"Archive/Tar.php";s:11:"archive_tar";s:12:"OS/Guess.php";s:4:"pear";s:27:"PEAR/ChannelFile/Parser.php";s:4:"pear";s:21:"PEAR/Command/Auth.xml";s:4:"pear";s:21:"PEAR/Command/Auth.php";s:4:"pear";s:22:"PEAR/Command/Build.xml";s:4:"pear";s:22:"PEAR/Command/Build.php";s:4:"pear";s:25:"PEAR/Command/Channels.xml";s:4:"pear";s:25:"PEAR/Command/Channels.php";s:4:"pear";s:23:"PEAR/Command/Common.php";s:4:"pear";s:23:"PEAR/Command/Config.xml";s:4:"pear";s:23:"PEAR/Command/Config.php";s:4:"pear";s:24:"PEAR/Command/Install.xml";s:4:"pear";s:24:"PEAR/Command/Install.php";s:4:"pear";s:23:"PEAR/Command/Mirror.xml";s:4:"pear";s:23:"PEAR/Command/Mirror.php";s:4:"pear";s:24:"PEAR/Command/Package.xml";s:4:"pear";s:24:"PEAR/Command/Package.php";s:4:"pear";s:23:"PEAR/Command/Pickle.xml";s:4:"pear";s:23:"PEAR/Command/Pickle.php";s:4:"pear";s:25:"PEAR/Command/Registry.xml";s:4:"pear";s:25:"PEAR/Command/Registry.php";s:4:"pear";s:23:"PEAR/Command/Remote.xml";s:4:"pear";s:23:"PEAR/Command/Remote.php";s:4:"pear";s:21:"PEAR/Command/Test.xml";s:4:"pear";s:21:"PEAR/Command/Test.php";s:4:"pear";s:27:"PEAR/Downloader/Package.php";s:4:"pear";s:21:"PEAR/Frontend/CLI.php";s:4:"pear";s:30:"PEAR/Installer/Role/Common.php";s:4:"pear";s:28:"PEAR/Installer/Role/Data.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Data.php";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.php";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.php";s:4:"pear";s:27:"PEAR/Installer/Role/Php.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Php.php";s:4:"pear";s:30:"PEAR/Installer/Role/Script.xml";s:4:"pear";s:30:"PEAR/Installer/Role/Script.php";s:4:"pear";s:27:"PEAR/Installer/Role/Src.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Src.php";s:4:"pear";s:28:"PEAR/Installer/Role/Test.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Test.php";s:4:"pear";s:23:"PEAR/Installer/Role.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v1.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v2.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v1.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v2.php";s:4:"pear";s:26:"PEAR/PackageFile/v2/rw.php";s:4:"pear";s:33:"PEAR/PackageFile/v2/Validator.php";s:4:"pear";s:23:"PEAR/PackageFile/v1.php";s:4:"pear";s:23:"PEAR/PackageFile/v2.php";s:4:"pear";s:16:"PEAR/REST/10.php";s:4:"pear";s:16:"PEAR/REST/11.php";s:4:"pear";s:34:"PEAR/Task/Postinstallscript/rw.php";s:4:"pear";s:24:"PEAR/Task/Replace/rw.php";s:4:"pear";s:24:"PEAR/Task/Unixeol/rw.php";s:4:"pear";s:27:"PEAR/Task/Windowseol/rw.php";s:4:"pear";s:20:"PEAR/Task/Common.php";s:4:"pear";s:31:"PEAR/Task/Postinstallscript.php";s:4:"pear";s:21:"PEAR/Task/Replace.php";s:4:"pear";s:21:"PEAR/Task/Unixeol.php";s:4:"pear";s:24:"PEAR/Task/Windowseol.php";s:4:"pear";s:23:"PEAR/Validator/PECL.php";s:4:"pear";s:19:"PEAR/Autoloader.php";s:4:"pear";s:16:"PEAR/Builder.php";s:4:"pear";s:20:"PEAR/ChannelFile.php";s:4:"pear";s:16:"PEAR/Command.php";s:4:"pear";s:15:"PEAR/Common.php";s:4:"pear";s:15:"PEAR/Config.php";s:4:"pear";s:19:"PEAR/Dependency.php";s:4:"pear";s:21:"PEAR/DependencyDB.php";s:4:"pear";s:20:"PEAR/Dependency2.php";s:4:"pear";s:19:"PEAR/Downloader.php";s:4:"pear";s:19:"PEAR/ErrorStack.php";s:4:"pear";s:18:"PEAR/Exception.php";s:4:"pear";s:17:"PEAR/Frontend.php";s:4:"pear";s:18:"PEAR/Installer.php";s:4:"pear";s:20:"PEAR/PackageFile.php";s:4:"pear";s:17:"PEAR/Packager.php";s:4:"pear";s:17:"PEAR/Registry.php";s:4:"pear";s:15:"PEAR/Remote.php";s:4:"pear";s:13:"PEAR/REST.php";s:4:"pear";s:16:"PEAR/RunTest.php";s:4:"pear";s:17:"PEAR/Validate.php";s:4:"pear";s:18:"PEAR/XMLParser.php";s:4:"pear";s:19:"scripts/pearcmd.php";s:4:"pear";s:19:"scripts/peclcmd.php";s:4:"pear";s:8:"PEAR.php";s:4:"pear";s:10:"System.php";s:4:"pear";s:11:"Net/URL.php";s:7:"net_url";s:14:"Net/Socket.php";s:10:"net_socket";s:13:"MIME/Type.php";s:9:"mime_type";s:23:"MIME/Type/Parameter.php";s:9:"mime_type";s:26:"docs/MIME_Type/example.php";s:9:"mime_type";s:14:"PHP/Compat.php";s:10:"php_compat";s:25:"PHP/Compat/Components.php";s:10:"php_compat";s:43:"PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";s:10:"php_compat";s:32:"PHP/Compat/Constant/E_STRICT.php";s:10:"php_compat";s:38:"PHP/Compat/Constant/PATH_SEPARATOR.php";s:10:"php_compat";s:27:"PHP/Compat/Constant/STD.php";s:10:"php_compat";s:28:"PHP/Compat/Constant/FILE.php";s:10:"php_compat";s:31:"PHP/Compat/Constant/PHP_EOL.php";s:10:"php_compat";s:34:"PHP/Compat/Constant/UPLOAD_ERR.php";s:10:"php_compat";s:25:"PHP/Compat/Constant/T.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_change_key_case.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_chunk.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_combine.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_diff_assoc.php";s:10:"php_compat";s:38:"PHP/Compat/Function/array_diff_key.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_diff_uassoc.php";s:10:"php_compat";s:39:"PHP/Compat/Function/array_diff_ukey.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_intersect_assoc.php";s:10:"php_compat";s:43:"PHP/Compat/Function/array_intersect_key.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_intersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_intersect_ukey.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_key_exists.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_product.php";s:10:"php_compat";s:36:"PHP/Compat/Function/array_search.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_udiff.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_udiff_assoc.php";s:10:"php_compat";s:42:"PHP/Compat/Function/array_udiff_uassoc.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_uintersect.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_uintersect_assoc.php";s:10:"php_compat";s:47:"PHP/Compat/Function/array_uintersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_walk_recursive.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcinvert.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcpowmod.php";s:10:"php_compat";s:44:"PHP/Compat/Function/call_user_func_array.php";s:10:"php_compat";s:29:"PHP/Compat/Function/clone.php";s:10:"php_compat";s:32:"PHP/Compat/Function/constant.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uuencode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uudecode.php";s:10:"php_compat";s:45:"PHP/Compat/Function/debug_print_backtrace.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_get_contents.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_put_contents.php";s:10:"php_compat";s:32:"PHP/Compat/Function/floatval.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fprintf.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fputcsv.php";s:10:"php_compat";s:35:"PHP/Compat/Function/get_headers.php";s:10:"php_compat";s:40:"PHP/Compat/Function/get_include_path.php";s:10:"php_compat";s:42:"PHP/Compat/Function/html_entity_decode.php";s:10:"php_compat";s:47:"PHP/Compat/Function/htmlspecialchars_decode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/http_build_query.php";s:10:"php_compat";s:37:"PHP/Compat/Function/ibase_timefmt.php";s:10:"php_compat";s:29:"PHP/Compat/Function/idate.php";s:10:"php_compat";s:47:"PHP/Compat/Function/image_type_to_mime_type.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_ntop.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_pton.php";s:10:"php_compat";s:35:"PHP/Compat/Function/ini_get_all.php";s:10:"php_compat";s:28:"PHP/Compat/Function/is_a.php";s:10:"php_compat";s:32:"PHP/Compat/Function/md5_file.php";s:10:"php_compat";s:29:"PHP/Compat/Function/mhash.php";s:10:"php_compat";s:41:"PHP/Compat/Function/mime_content_type.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_clean.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_flush.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_clean.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_flush.php";s:10:"php_compat";s:44:"PHP/Compat/Function/php_strip_whitespace.php";s:10:"php_compat";s:40:"PHP/Compat/Function/pg_affected_rows.php";s:10:"php_compat";s:39:"PHP/Compat/Function/pg_escape_bytea.php";s:10:"php_compat";s:41:"PHP/Compat/Function/pg_unescape_bytea.php";s:10:"php_compat";s:44:"PHP/Compat/Function/restore_include_path.php";s:10:"php_compat";s:31:"PHP/Compat/Function/scandir.php";s:10:"php_compat";s:40:"PHP/Compat/Function/set_include_path.php";s:10:"php_compat";s:36:"PHP/Compat/Function/str_ireplace.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_rot13.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_split.php";s:10:"php_compat";s:35:"PHP/Compat/Function/str_shuffle.php";s:10:"php_compat";s:38:"PHP/Compat/Function/str_word_count.php";s:10:"php_compat";s:31:"PHP/Compat/Function/stripos.php";s:10:"php_compat";s:31:"PHP/Compat/Function/strpbrk.php";s:10:"php_compat";s:32:"PHP/Compat/Function/strripos.php";s:10:"php_compat";s:38:"PHP/Compat/Function/substr_compare.php";s:10:"php_compat";s:40:"PHP/Compat/Function/time_sleep_until.php";s:10:"php_compat";s:34:"PHP/Compat/Function/var_export.php";s:10:"php_compat";s:39:"PHP/Compat/Function/version_compare.php";s:10:"php_compat";s:31:"PHP/Compat/Function/vprintf.php";s:10:"php_compat";s:32:"PHP/Compat/Function/vsprintf.php";s:10:"php_compat";s:16:"File/Archive.php";s:12:"file_archive";s:26:"File/Archive/Predicate.php";s:12:"file_archive";s:23:"File/Archive/Reader.php";s:12:"file_archive";s:23:"File/Archive/Writer.php";s:12:"file_archive";s:30:"File/Archive/Predicate/And.php";s:12:"file_archive";s:34:"File/Archive/Predicate/Current.php";s:12:"file_archive";s:33:"File/Archive/Predicate/Custom.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Duplicate.php";s:12:"file_archive";s:31:"File/Archive/Predicate/Ereg.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Eregi.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Extension.php";s:12:"file_archive";s:32:"File/Archive/Predicate/False.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Index.php";s:12:"file_archive";s:35:"File/Archive/Predicate/MaxDepth.php";s:12:"file_archive";s:31:"File/Archive/Predicate/MIME.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinSize.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinTime.php";s:12:"file_archive";s:30:"File/Archive/Predicate/Not.php";s:12:"file_archive";s:29:"File/Archive/Predicate/Or.php";s:12:"file_archive";s:31:"File/Archive/Predicate/True.php";s:12:"file_archive";s:26:"File/Archive/Reader/Ar.php";s:12:"file_archive";s:31:"File/Archive/Reader/Archive.php";s:12:"file_archive";s:29:"File/Archive/Reader/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Reader/Cache.php";s:12:"file_archive";s:34:"File/Archive/Reader/ChangeName.php";s:12:"file_archive";s:30:"File/Archive/Reader/Concat.php";s:12:"file_archive";s:33:"File/Archive/Reader/Directory.php";s:12:"file_archive";s:28:"File/Archive/Reader/File.php";s:12:"file_archive";s:30:"File/Archive/Reader/Filter.php";s:12:"file_archive";s:28:"File/Archive/Reader/Gzip.php";s:12:"file_archive";s:30:"File/Archive/Reader/Memory.php";s:12:"file_archive";s:32:"File/Archive/Reader/MimeList.php";s:12:"file_archive";s:29:"File/Archive/Reader/Multi.php";s:12:"file_archive";s:29:"File/Archive/Reader/Relay.php";s:12:"file_archive";s:30:"File/Archive/Reader/Select.php";s:12:"file_archive";s:27:"File/Archive/Reader/Tar.php";s:12:"file_archive";s:34:"File/Archive/Reader/Uncompress.php";s:12:"file_archive";s:27:"File/Archive/Reader/Zip.php";s:12:"file_archive";s:35:"File/Archive/Writer/AddBaseName.php";s:12:"file_archive";s:26:"File/Archive/Writer/Ar.php";s:12:"file_archive";s:31:"File/Archive/Writer/Archive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Writer/Files.php";s:12:"file_archive";s:28:"File/Archive/Writer/Gzip.php";s:12:"file_archive";s:28:"File/Archive/Writer/Mail.php";s:12:"file_archive";s:30:"File/Archive/Writer/Memory.php";s:12:"file_archive";s:37:"File/Archive/Writer/MemoryArchive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Multi.php";s:12:"file_archive";s:30:"File/Archive/Writer/Output.php";s:12:"file_archive";s:27:"File/Archive/Writer/Tar.php";s:12:"file_archive";s:38:"File/Archive/Writer/UniqueAppender.php";s:12:"file_archive";s:27:"File/Archive/Writer/Zip.php";s:12:"file_archive";s:16:"HTTP/Request.php";s:12:"http_request";s:25:"HTTP/Request/Listener.php";s:12:"http_request";}s:3:"doc";a:5:{s:32:"archive_tar/docs/Archive_Tar.txt";s:11:"archive_tar";s:24:"net_url/docs/example.php";s:7:"net_url";s:32:"file_archive/File/doc/readme.txt";s:12:"file_archive";s:29:"http_request/docs/example.php";s:12:"http_request";s:39:"http_request/docs/download-progress.php";s:12:"http_request";}s:6:"script";a:3:{s:15:"scripts/pear.sh";s:4:"pear";s:18:"scripts/peardev.sh";s:4:"pear";s:15:"scripts/pecl.sh";s:4:"pear";}s:4:"data";a:2:{s:16:"pear/package.dtd";s:4:"pear";s:18:"pear/template.spec";s:4:"pear";}s:4:"test";a:87:{s:34:"php_compat/tests/loadconstant.phpt";s:10:"php_compat";s:34:"php_compat/tests/loadfunction.phpt";s:10:"php_compat";s:33:"php_compat/tests/loadversion.phpt";s:10:"php_compat";s:50:"php_compat/tests/constant/directory_separator.phpt";s:10:"php_compat";s:39:"php_compat/tests/constant/e_strict.phpt";s:10:"php_compat";s:35:"php_compat/tests/constant/file.phpt";s:10:"php_compat";s:45:"php_compat/tests/constant/path_separator.phpt";s:10:"php_compat";s:34:"php_compat/tests/constant/std.phpt";s:10:"php_compat";s:38:"php_compat/tests/constant/php_eol.phpt";s:10:"php_compat";s:41:"php_compat/tests/constant/upload_err.phpt";s:10:"php_compat";s:32:"php_compat/tests/constant/t.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_change_key_case.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_chunk.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_combine.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_diff_assoc.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_diff_uassoc.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/array_diff_key.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/array_diff_ukey.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_intersect_assoc.phpt";s:10:"php_compat";s:50:"php_compat/tests/function/array_intersect_key.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_intersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_intersect_ukey.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_key_exists.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_product.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/array_search.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_udiff.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_udiff_assoc.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/array_udiff_uassoc.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_uintersect.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_uintersect_assoc.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/array_uintersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_walk_recursive.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcinvert.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcpowmod.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/call_user_func_array.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/clone.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/constant.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uuencode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uudecode.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/debug_print_backtrace.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_get_contents.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_put_contents.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/floatval.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fprintf.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fputcsv.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/get_headers.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/get_include_path.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/html_entity_decode.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/htmlspecialchars_decode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/http_build_query.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/ibase_timefmt.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/idate.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/image_type_to_mime_type.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_ntop.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_pton.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/ini_get_all.phpt";s:10:"php_compat";s:35:"php_compat/tests/function/is_a.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/is_scalar.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/md5_file.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/mhash.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/mime_content_type.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_clean.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_flush.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_clean.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_flush.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/php_strip_whitespace.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/pg_affected_rows.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/pg_escape_bytea.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/pg_unescape_bytea.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/restore_include_path.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/scandir.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/set_include_path.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/str_ireplace.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_rot13.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_split.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/str_shuffle.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/str_word_count.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/stripos.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/strpbrk.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/strripos.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/substr_compare.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/time_sleep_until.phpt";s:10:"php_compat";s:41:"php_compat/tests/function/var_export.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/version_compare.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/vprintf.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/vsprintf.phpt";s:10:"php_compat";s:32:"file_archive/File/tests/test.php";s:12:"file_archive";}} \ No newline at end of file Added: trunk/contrib/pfcInstaller2/HTTP/Request/Listener.php =================================================================== --- trunk/contrib/pfcInstaller2/HTTP/Request/Listener.php (rev 0) +++ trunk/contrib/pfcInstaller2/HTTP/Request/Listener.php 2006-08-28 21:05:14 UTC (rev 710) @@ -0,0 +1,96 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Copyright (c) 2002-2003, Richard Heyes | +// | All rights reserved. | +// | | +// | Redistribution and use in source and binary forms, with or without | +// | modification, are permitted provided that the following conditions | +// | are met: | +// | | +// | o Redistributions of source code must retain the above copyright | +// | notice, this list of conditions and the following disclaimer. | +// | o Redistributions in binary form must reproduce the above copyright | +// | notice, this list of conditions and the following disclaimer in the | +// | documentation and/or other materials provided with the distribution.| +// | o The names of the authors may not be used to endorse or promote | +// | products derived from this software without specific prior written | +// | permission. | +// | | +// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | +// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | +// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | +// | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | +// | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | +// | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | +// | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | +// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | +// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | +// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | +// | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | +// | | +// +-----------------------------------------------------------------------+ +// | Author: Alexey Borzov <av...@ph...> | +// +-----------------------------------------------------------------------+ +// +// $Id: Listener.php,v 1.2 2003/10/26 10:28:29 avb Exp $ +// + +/** + * This class implements the Observer part of a Subject-Observer + * design pattern. It listens to the events sent by a + * HTTP_Request or HTTP_Response instance. + * + * @package HTTP_Request + * @author Alexey Borzov <av...@ph...> + * @version $Revision: 1.2 $ + */ +class HTTP_Request_Listener +{ + /** + * A listener's identifier + * @var string + */ + var $_id; + + /** + * Constructor, sets the object's identifier + * + * @access public + */ + function HTTP_Request_Listener() + { + $this->_id = md5(uniqid('http_request_', 1)); + } + + + /** + * Returns the listener's identifier + * + * @access public + * @return string + */ + function getId() + { + return $this->_id; + } + + + /** + * This method is called when Listener is notified of an event + * + * @access public + * @param object an object the listener is attached to + * @param string Event name + * @param mixed Additional data + * @abstract + */ + function update(&$subject, $event, $data = null) + { + echo "Notified of event: '$event'\n"; + if (null !== $data) { + echo "Additional data: "; + var_dump($data); + } + } +} +?> Added: trunk/contrib/pfcInstaller2/HTTP/Request.php =================================================================== --- trunk/contrib/pfcInstaller2/HTTP/Request.php (rev 0) +++ trunk/contrib/pfcInstaller2/HTTP/Request.php 2006-08-28 21:05:14 UTC (rev 710) @@ -0,0 +1,1191 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Copyright (c) 2002-2003, Richard Heyes | +// | All rights reserved. | +// | | +// | Redistribution and use in source and binary forms, with or without | +// | modification, are permitted provided that the following conditions | +// | are met: | +// | | +// | o Redistributions of source code must retain the above copyright | +// | notice, this list of conditions and the following disclaimer. | +// | o Redistributions in binary form must reproduce the above copyright | +// | notice, this list of conditions and the following disclaimer in the | +// | documentation and/or other materials provided with the distribution.| +// | o The names of the authors may not be used to endorse or promote | +// | products derived from this software without specific prior written | +// | permission. | +// | | +// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | +// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | +// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | +// | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | +// | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | +// | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | +// | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | +// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | +// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | +// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | +// | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | +// | | +// +-----------------------------------------------------------------------+ +// | Author: Richard Heyes <ri...@ph...> | +// +-----------------------------------------------------------------------+ +// +// $Id: Request.php,v 1.43 2005/11/06 18:29:14 avb Exp $ +// +// HTTP_Request Class +// +// Simple example, (Fetches yahoo.com and displays it): +// +// $a = &new HTTP_Request('http://www.yahoo.com/'); +// $a->sendRequest(); +// echo $a->getResponseBody(); +// + +require_once 'PEAR.php'; +require_once 'Net/Socket.php'; +require_once 'Net/URL.php'; + +define('HTTP_REQUEST_METHOD_GET', 'GET', true); +define('HTTP_REQUEST_METHOD_HEAD', 'HEAD', true); +define('HTTP_REQUEST_METHOD_POST', 'POST', true); +define('HTTP_REQUEST_METHOD_PUT', 'PUT', true); +define('HTTP_REQUEST_METHOD_DELETE', 'DELETE', true); +define('HTTP_REQUEST_METHOD_OPTIONS', 'OPTIONS', true); +define('HTTP_REQUEST_METHOD_TRACE', 'TRACE', true); + +define('HTTP_REQUEST_HTTP_VER_1_0', '1.0', true); +define('HTTP_REQUEST_HTTP_VER_1_1', '1.1', true); + +class HTTP_Request { + + /** + * Instance of Net_URL + * @var object Net_URL + */ + var $_url; + + /** + * Type of request + * @var string + */ + var $_method; + + /** + * HTTP Version + * @var string + */ + var $_http; + + /** + * Request headers + * @var array + */ + var $_requestHeaders; + + /** + * Basic Auth Username + * @var string + */ + var $_user; + + /** + * Basic Auth Password + * @var string + */ + var $_pass; + + /** + * Socket object + * @var object Net_Socket + */ + var $_sock; + + /** + * Proxy server + * @var string + */ + var $_proxy_host; + + /** + * Proxy port + * @var integer + */ + var $_proxy_port; + + /** + * Proxy username + * @var string + */ + var $_proxy_user; + + /** + * Proxy password + * @var string + */ + var $_proxy_pass; + + /** + * Post data + * @var array + */ + var $_postData; + + /** + * Request body + * @var string + */ + var $_body; + + /** + * A list of methods that MUST NOT have a request body, per RFC 2616 + * @var array + */ + var $_bodyDisallowed = array('TRACE'); + + /** + * Files to post + * @var array + */ + var $_postFiles = array(); + + /** + * Connection timeout. + * @var float + */ + var $_timeout; + + /** + * HTTP_Response object + * @var object HTTP_Response + */ + var $_response; + + /** + * Whether to allow redirects + * @var boolean + */ + var $_allowRedirects; + + /** + * Maximum redirects allowed + * @var integer + */ + var $_maxRedirects; + + /** + * Current number of redirects + * @var integer + */ + var $_redirects; + + /** + * Whether to append brackets [] to array variables + * @var bool + */ + var $_useBrackets = true; + + /** + * Attached listeners + * @var array + */ + var $_listeners = array(); + + /** + * Whether to save response body in response object property + * @var bool + */ + var $_saveBody = true; + + /** + * Timeout for reading from socket (array(seconds, microseconds)) + * @var array + */ + var $_readTimeout = null; + + /** + * Options to pass to Net_Socket::connect. See stream_context_create + * @var array + */ + var $_socketOptions = null; + + /** + * Constructor + * + * Sets up the object + * @param string The url to fetch/access + * @param array Associative array of parameters which can have the following keys: + * <ul> + * <li>method - Method to use, GET, POST etc (string)</li> + * <li>http - HTTP Version to use, 1.0 or 1.1 (string)</li> + * <li>user - Basic Auth username (string)</li> + * <li>pass - Basic Auth password (string)</li> + * <li>proxy_host - Proxy server host (string)</li> + * <li>proxy_port - Proxy server port (integer)</li> + * <li>proxy_user - Proxy auth username (string)</li> + * <li>proxy_pass - Proxy auth password (string)</li> + * <li>timeout - Connection timeout in seconds (float)</li> + * <li>allowRedirects - Whether to follow redirects or not (bool)</li> + * <li>maxRedirects - Max number of redirects to follow (integer)</li> + * <li>useBrackets - Whether to append [] to array variable names (bool)</li> + * <li>saveBody - Whether to save response body in response object property (bool)</li> + * <li>readTimeout - Timeout for reading / writing data over the socket (array (seconds, microseconds))</li> + * <li>socketOptions - Options to pass to Net_Socket object (array)</li> + * </ul> + * @access public + */ + function HTTP_Request($url = '', $params = array()) + { + $this->_sock = &new Net_Socket(); + $this->_method = HTTP_REQUEST_METHOD_GET; + $this->_http = HTTP_REQUEST_HTTP_VER_1_1; + $this->_requestHeaders = array(); + $this->_postData = array(); + $this->_body = null; + + $this->_user = null; + $this->_pass = null; + + $this->_proxy_host = null; + $this->_proxy_port = null; + $this->_proxy_user = null; + $this->_proxy_pass = null; + + $this->_allowRedirects = false; + $this->_maxRedirects = 3; + $this->_redirects = 0; + + $this->_timeout = null; + $this->_response = null; + + foreach ($params as $key => $value) { + $this->{'_' . $key} = $value; + } + + if (!empty($url)) { + $this->setURL($url); + } + + // Default useragent + $this->addHeader('User-Agent', 'PEAR HTTP_Request class ( http://pear.php.net/ )'); + + // Make sure keepalives dont knobble us + $this->addHeader('Connection', 'close'); + + // Basic authentication + if (!empty($this->_user)) { + $this->addHeader('Authorization', 'Basic ' . base64_encode($this->_user . ':' . $this->_pass)); + } + + // Use gzip encoding if possible + // Avoid gzip encoding if using multibyte functions (see #1781) + if (HTTP_REQUEST_HTTP_VER_1_1 == $this->_http && extension_loaded('zlib') && + 0 == (2 & ini_get('mbstring.func_overload'))) { + + $this->addHeader('Accept-Encoding', 'gzip'); + } + } + + /** + * Generates a Host header for HTTP/1.1 requests + * + * @access private + * @return string + */ + function _generateHostHeader() + { + if ($this->_url->port != 80 AND strcasecmp($this->_url->protocol, 'http') == 0) { + ... [truncated message content] |
From: <ke...@us...> - 2006-08-27 07:58:47
|
Revision: 709 Author: kerphi Date: 2006-08-27 00:56:46 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=709&view=rev Log Message: ----------- update pear and add the new file_archive package Modified Paths: -------------- trunk/contrib/pfcInstaller2/.depdb trunk/contrib/pfcInstaller2/.filemap trunk/contrib/pfcInstaller2/.registry/pear.reg trunk/contrib/pfcInstaller2/OS/Guess.php trunk/contrib/pfcInstaller2/PEAR/Autoloader.php trunk/contrib/pfcInstaller2/PEAR/Builder.php trunk/contrib/pfcInstaller2/PEAR/ChannelFile/Parser.php trunk/contrib/pfcInstaller2/PEAR/ChannelFile.php trunk/contrib/pfcInstaller2/PEAR/Command/Auth.php trunk/contrib/pfcInstaller2/PEAR/Command/Auth.xml trunk/contrib/pfcInstaller2/PEAR/Command/Build.php trunk/contrib/pfcInstaller2/PEAR/Command/Build.xml trunk/contrib/pfcInstaller2/PEAR/Command/Channels.php trunk/contrib/pfcInstaller2/PEAR/Command/Channels.xml trunk/contrib/pfcInstaller2/PEAR/Command/Common.php trunk/contrib/pfcInstaller2/PEAR/Command/Config.php trunk/contrib/pfcInstaller2/PEAR/Command/Config.xml trunk/contrib/pfcInstaller2/PEAR/Command/Install.php trunk/contrib/pfcInstaller2/PEAR/Command/Install.xml trunk/contrib/pfcInstaller2/PEAR/Command/Mirror.php trunk/contrib/pfcInstaller2/PEAR/Command/Mirror.xml trunk/contrib/pfcInstaller2/PEAR/Command/Package.php trunk/contrib/pfcInstaller2/PEAR/Command/Package.xml trunk/contrib/pfcInstaller2/PEAR/Command/Pickle.php trunk/contrib/pfcInstaller2/PEAR/Command/Pickle.xml trunk/contrib/pfcInstaller2/PEAR/Command/Registry.php trunk/contrib/pfcInstaller2/PEAR/Command/Registry.xml trunk/contrib/pfcInstaller2/PEAR/Command/Remote.php trunk/contrib/pfcInstaller2/PEAR/Command/Remote.xml trunk/contrib/pfcInstaller2/PEAR/Command/Test.php trunk/contrib/pfcInstaller2/PEAR/Command/Test.xml trunk/contrib/pfcInstaller2/PEAR/Command.php trunk/contrib/pfcInstaller2/PEAR/Common.php trunk/contrib/pfcInstaller2/PEAR/Config.php trunk/contrib/pfcInstaller2/PEAR/Dependency.php trunk/contrib/pfcInstaller2/PEAR/Dependency2.php trunk/contrib/pfcInstaller2/PEAR/DependencyDB.php trunk/contrib/pfcInstaller2/PEAR/Downloader/Package.php trunk/contrib/pfcInstaller2/PEAR/Downloader.php trunk/contrib/pfcInstaller2/PEAR/ErrorStack.php trunk/contrib/pfcInstaller2/PEAR/Exception.php trunk/contrib/pfcInstaller2/PEAR/Frontend/CLI.php trunk/contrib/pfcInstaller2/PEAR/Frontend.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Common.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Data.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Data.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Doc.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Doc.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Ext.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Ext.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Php.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Php.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Script.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Script.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Src.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Src.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Test.php trunk/contrib/pfcInstaller2/PEAR/Installer/Role/Test.xml trunk/contrib/pfcInstaller2/PEAR/Installer/Role.php trunk/contrib/pfcInstaller2/PEAR/Installer.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/Generator/v1.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/Generator/v2.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/Parser/v1.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/Parser/v2.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/v1.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/v2/Validator.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/v2/rw.php trunk/contrib/pfcInstaller2/PEAR/PackageFile/v2.php trunk/contrib/pfcInstaller2/PEAR/PackageFile.php trunk/contrib/pfcInstaller2/PEAR/Packager.php trunk/contrib/pfcInstaller2/PEAR/REST/10.php trunk/contrib/pfcInstaller2/PEAR/REST/11.php trunk/contrib/pfcInstaller2/PEAR/REST.php trunk/contrib/pfcInstaller2/PEAR/Registry.php trunk/contrib/pfcInstaller2/PEAR/Remote.php trunk/contrib/pfcInstaller2/PEAR/RunTest.php trunk/contrib/pfcInstaller2/PEAR/Task/Common.php trunk/contrib/pfcInstaller2/PEAR/Task/Postinstallscript/rw.php trunk/contrib/pfcInstaller2/PEAR/Task/Postinstallscript.php trunk/contrib/pfcInstaller2/PEAR/Task/Replace/rw.php trunk/contrib/pfcInstaller2/PEAR/Task/Replace.php trunk/contrib/pfcInstaller2/PEAR/Task/Unixeol/rw.php trunk/contrib/pfcInstaller2/PEAR/Task/Unixeol.php trunk/contrib/pfcInstaller2/PEAR/Task/Windowseol/rw.php trunk/contrib/pfcInstaller2/PEAR/Task/Windowseol.php trunk/contrib/pfcInstaller2/PEAR/Validate.php trunk/contrib/pfcInstaller2/PEAR/Validator/PECL.php trunk/contrib/pfcInstaller2/PEAR/XMLParser.php trunk/contrib/pfcInstaller2/PEAR.php trunk/contrib/pfcInstaller2/System.php trunk/contrib/pfcInstaller2/pearcmd.php trunk/contrib/pfcInstaller2/peclcmd.php trunk/contrib/pfcInstaller2/tmp/data/PEAR/package.dtd trunk/contrib/pfcInstaller2/tmp/data/PEAR/template.spec Added Paths: ----------- trunk/contrib/pfcInstaller2/File/ trunk/contrib/pfcInstaller2/File/Archive/ trunk/contrib/pfcInstaller2/File/Archive/Predicate/ trunk/contrib/pfcInstaller2/File/Archive/Predicate/And.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Current.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Custom.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Duplicate.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Ereg.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Eregi.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Extension.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/False.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Index.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/MIME.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/MaxDepth.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/MinSize.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/MinTime.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Not.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/Or.php trunk/contrib/pfcInstaller2/File/Archive/Predicate/True.php trunk/contrib/pfcInstaller2/File/Archive/Predicate.php trunk/contrib/pfcInstaller2/File/Archive/Reader/ trunk/contrib/pfcInstaller2/File/Archive/Reader/Ar.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Archive.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Bzip2.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Cache.php trunk/contrib/pfcInstaller2/File/Archive/Reader/ChangeName.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Concat.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Directory.php trunk/contrib/pfcInstaller2/File/Archive/Reader/File.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Filter.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Gzip.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Memory.php trunk/contrib/pfcInstaller2/File/Archive/Reader/MimeList.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Multi.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Relay.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Select.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Tar.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Uncompress.php trunk/contrib/pfcInstaller2/File/Archive/Reader/Zip.php trunk/contrib/pfcInstaller2/File/Archive/Reader.php trunk/contrib/pfcInstaller2/File/Archive/Writer/ trunk/contrib/pfcInstaller2/File/Archive/Writer/AddBaseName.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Ar.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Archive.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Bzip2.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Files.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Gzip.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Mail.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Memory.php trunk/contrib/pfcInstaller2/File/Archive/Writer/MemoryArchive.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Multi.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Output.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Tar.php trunk/contrib/pfcInstaller2/File/Archive/Writer/UniqueAppender.php trunk/contrib/pfcInstaller2/File/Archive/Writer/Zip.php trunk/contrib/pfcInstaller2/File/Archive/Writer.php trunk/contrib/pfcInstaller2/File/Archive.php Property Changed: ---------------- trunk/contrib/pfcInstaller2/tmp/cache/ trunk/contrib/pfcInstaller2/tmp/doc/ Modified: trunk/contrib/pfcInstaller2/.depdb =================================================================== --- trunk/contrib/pfcInstaller2/.depdb 2006-08-26 14:32:32 UTC (rev 708) +++ trunk/contrib/pfcInstaller2/.depdb 2006-08-27 07:56:46 UTC (rev 709) @@ -1 +1 @@ -a:3:{s:8:"_version";s:3:"1.0";s:12:"dependencies";a:1:{s:12:"pear.php.net";a:2:{s:4:"pear";a:8:{i:0;a:3:{s:3:"dep";a:5:{s:4:"name";s:11:"Archive_Tar";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.1";s:11:"recommended";s:5:"1.3.1";s:7:"exclude";s:5:"1.3.0";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:4:{s:4:"name";s:14:"Console_Getopt";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.2";s:11:"recommended";s:3:"1.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.5.0";s:7:"exclude";s:5:"0.5.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.4.0";s:7:"exclude";s:5:"0.4.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:4;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"XML_RPC";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.4.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:5;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.5.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"webinstaller";}i:6;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.4.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"gtkinstaller";}i:7;a:3:{s:3:"dep";a:3:{s:4:"name";s:18:"PEAR_Frontend_Gtk2";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.1.2";}s:4:"type";s:8:"optional";s:5:"group";s:13:"gtk2installer";}}s:9:"mime_type";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.2.1";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:14:"System_Command";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}}}s:8:"packages";a:1:{s:12:"pear.php.net";a:8:{s:11:"archive_tar";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:14:"console_getopt";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_web";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_gtk";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:7:"xml_rpc";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:18:"pear_frontend_gtk2";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:4:"pear";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:14:"system_command";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}}}} \ No newline at end of file +a:3:{s:8:"_version";s:3:"1.0";s:12:"dependencies";a:1:{s:12:"pear.php.net";a:3:{s:9:"mime_type";a:2:{i:0;a:3:{s:3:"dep";a:3:{s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.2.1";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:14:"System_Command";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}s:4:"pear";a:8:{i:0;a:3:{s:3:"dep";a:5:{s:4:"name";s:11:"Archive_Tar";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.1";s:11:"recommended";s:5:"1.3.1";s:7:"exclude";s:5:"1.3.0";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:4:{s:4:"name";s:14:"Console_Getopt";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:3:"1.2";s:11:"recommended";s:3:"1.2";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:4:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.5.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:5:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"max";s:5:"0.4.0";s:7:"exclude";s:5:"0.4.0";s:9:"conflicts";s:0:"";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:4;a:3:{s:3:"dep";a:3:{s:4:"name";s:7:"XML_RPC";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.4.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:5;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Web";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.5.1";}s:4:"type";s:8:"optional";s:5:"group";s:12:"webinstaller";}i:6;a:3:{s:3:"dep";a:3:{s:4:"name";s:17:"PEAR_Frontend_Gtk";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.4.0";}s:4:"type";s:8:"optional";s:5:"group";s:12:"gtkinstaller";}i:7;a:3:{s:3:"dep";a:3:{s:4:"name";s:18:"PEAR_Frontend_Gtk2";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"0.1.2";}s:4:"type";s:8:"optional";s:5:"group";s:13:"gtk2installer";}}s:12:"file_archive";a:4:{i:0;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"MIME_Type";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"required";s:5:"group";b:0;}i:1;a:3:{s:3:"dep";a:2:{s:4:"name";s:9:"Mail_Mime";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:2;a:3:{s:3:"dep";a:2:{s:4:"name";s:4:"Mail";s:7:"channel";s:12:"pear.php.net";}s:4:"type";s:8:"optional";s:5:"group";b:0;}i:3;a:3:{s:3:"dep";a:3:{s:4:"name";s:10:"Cache_Lite";s:7:"channel";s:12:"pear.php.net";s:3:"min";s:5:"1.5.0";}s:4:"type";s:8:"optional";s:5:"group";b:0;}}}}s:8:"packages";a:1:{s:12:"pear.php.net";a:12:{s:4:"pear";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:14:"system_command";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:9:"mime_type";}}s:11:"archive_tar";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:14:"console_getopt";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_web";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:17:"pear_frontend_gtk";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:7:"xml_rpc";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:18:"pear_frontend_gtk2";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:4:"pear";}}s:9:"mime_type";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:9:"mail_mime";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:4:"mail";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}s:10:"cache_lite";a:1:{i:0;a:2:{s:7:"channel";s:12:"pear.php.net";s:7:"package";s:12:"file_archive";}}}}} \ No newline at end of file Modified: trunk/contrib/pfcInstaller2/.filemap =================================================================== --- trunk/contrib/pfcInstaller2/.filemap 2006-08-26 14:32:32 UTC (rev 708) +++ trunk/contrib/pfcInstaller2/.filemap 2006-08-27 07:56:46 UTC (rev 709) @@ -1 +1 @@ -a:5:{s:3:"php";a:180:{s:18:"Console/Getopt.php";s:14:"console_getopt";s:15:"Archive/Tar.php";s:11:"archive_tar";s:12:"OS/Guess.php";s:4:"pear";s:27:"PEAR/ChannelFile/Parser.php";s:4:"pear";s:21:"PEAR/Command/Auth.xml";s:4:"pear";s:21:"PEAR/Command/Auth.php";s:4:"pear";s:22:"PEAR/Command/Build.xml";s:4:"pear";s:22:"PEAR/Command/Build.php";s:4:"pear";s:25:"PEAR/Command/Channels.xml";s:4:"pear";s:25:"PEAR/Command/Channels.php";s:4:"pear";s:23:"PEAR/Command/Common.php";s:4:"pear";s:23:"PEAR/Command/Config.xml";s:4:"pear";s:23:"PEAR/Command/Config.php";s:4:"pear";s:24:"PEAR/Command/Install.xml";s:4:"pear";s:24:"PEAR/Command/Install.php";s:4:"pear";s:23:"PEAR/Command/Mirror.xml";s:4:"pear";s:23:"PEAR/Command/Mirror.php";s:4:"pear";s:24:"PEAR/Command/Package.xml";s:4:"pear";s:24:"PEAR/Command/Package.php";s:4:"pear";s:23:"PEAR/Command/Pickle.xml";s:4:"pear";s:23:"PEAR/Command/Pickle.php";s:4:"pear";s:25:"PEAR/Command/Registry.xml";s:4:"pear";s:25:"PEAR/Command/Registry.php";s:4:"pear";s:23:"PEAR/Command/Remote.xml";s:4:"pear";s:23:"PEAR/Command/Remote.php";s:4:"pear";s:21:"PEAR/Command/Test.xml";s:4:"pear";s:21:"PEAR/Command/Test.php";s:4:"pear";s:27:"PEAR/Downloader/Package.php";s:4:"pear";s:21:"PEAR/Frontend/CLI.php";s:4:"pear";s:30:"PEAR/Installer/Role/Common.php";s:4:"pear";s:28:"PEAR/Installer/Role/Data.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Data.php";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.php";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.php";s:4:"pear";s:27:"PEAR/Installer/Role/Php.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Php.php";s:4:"pear";s:30:"PEAR/Installer/Role/Script.xml";s:4:"pear";s:30:"PEAR/Installer/Role/Script.php";s:4:"pear";s:27:"PEAR/Installer/Role/Src.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Src.php";s:4:"pear";s:28:"PEAR/Installer/Role/Test.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Test.php";s:4:"pear";s:23:"PEAR/Installer/Role.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v1.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v2.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v1.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v2.php";s:4:"pear";s:26:"PEAR/PackageFile/v2/rw.php";s:4:"pear";s:33:"PEAR/PackageFile/v2/Validator.php";s:4:"pear";s:23:"PEAR/PackageFile/v1.php";s:4:"pear";s:23:"PEAR/PackageFile/v2.php";s:4:"pear";s:16:"PEAR/REST/10.php";s:4:"pear";s:16:"PEAR/REST/11.php";s:4:"pear";s:34:"PEAR/Task/Postinstallscript/rw.php";s:4:"pear";s:24:"PEAR/Task/Replace/rw.php";s:4:"pear";s:24:"PEAR/Task/Unixeol/rw.php";s:4:"pear";s:27:"PEAR/Task/Windowseol/rw.php";s:4:"pear";s:20:"PEAR/Task/Common.php";s:4:"pear";s:31:"PEAR/Task/Postinstallscript.php";s:4:"pear";s:21:"PEAR/Task/Replace.php";s:4:"pear";s:21:"PEAR/Task/Unixeol.php";s:4:"pear";s:24:"PEAR/Task/Windowseol.php";s:4:"pear";s:23:"PEAR/Validator/PECL.php";s:4:"pear";s:19:"PEAR/Autoloader.php";s:4:"pear";s:16:"PEAR/Builder.php";s:4:"pear";s:20:"PEAR/ChannelFile.php";s:4:"pear";s:16:"PEAR/Command.php";s:4:"pear";s:15:"PEAR/Common.php";s:4:"pear";s:15:"PEAR/Config.php";s:4:"pear";s:19:"PEAR/Dependency.php";s:4:"pear";s:21:"PEAR/DependencyDB.php";s:4:"pear";s:20:"PEAR/Dependency2.php";s:4:"pear";s:19:"PEAR/Downloader.php";s:4:"pear";s:19:"PEAR/ErrorStack.php";s:4:"pear";s:18:"PEAR/Exception.php";s:4:"pear";s:17:"PEAR/Frontend.php";s:4:"pear";s:18:"PEAR/Installer.php";s:4:"pear";s:20:"PEAR/PackageFile.php";s:4:"pear";s:17:"PEAR/Packager.php";s:4:"pear";s:17:"PEAR/Registry.php";s:4:"pear";s:15:"PEAR/Remote.php";s:4:"pear";s:13:"PEAR/REST.php";s:4:"pear";s:16:"PEAR/RunTest.php";s:4:"pear";s:17:"PEAR/Validate.php";s:4:"pear";s:18:"PEAR/XMLParser.php";s:4:"pear";s:19:"scripts/pearcmd.php";s:4:"pear";s:19:"scripts/peclcmd.php";s:4:"pear";s:8:"PEAR.php";s:4:"pear";s:10:"System.php";s:4:"pear";s:11:"Net/URL.php";s:7:"net_url";s:14:"Net/Socket.php";s:10:"net_socket";s:13:"MIME/Type.php";s:9:"mime_type";s:23:"MIME/Type/Parameter.php";s:9:"mime_type";s:26:"docs/MIME_Type/example.php";s:9:"mime_type";s:14:"PHP/Compat.php";s:10:"php_compat";s:25:"PHP/Compat/Components.php";s:10:"php_compat";s:43:"PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";s:10:"php_compat";s:32:"PHP/Compat/Constant/E_STRICT.php";s:10:"php_compat";s:38:"PHP/Compat/Constant/PATH_SEPARATOR.php";s:10:"php_compat";s:27:"PHP/Compat/Constant/STD.php";s:10:"php_compat";s:28:"PHP/Compat/Constant/FILE.php";s:10:"php_compat";s:31:"PHP/Compat/Constant/PHP_EOL.php";s:10:"php_compat";s:34:"PHP/Compat/Constant/UPLOAD_ERR.php";s:10:"php_compat";s:25:"PHP/Compat/Constant/T.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_change_key_case.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_chunk.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_combine.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_diff_assoc.php";s:10:"php_compat";s:38:"PHP/Compat/Function/array_diff_key.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_diff_uassoc.php";s:10:"php_compat";s:39:"PHP/Compat/Function/array_diff_ukey.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_intersect_assoc.php";s:10:"php_compat";s:43:"PHP/Compat/Function/array_intersect_key.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_intersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_intersect_ukey.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_key_exists.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_product.php";s:10:"php_compat";s:36:"PHP/Compat/Function/array_search.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_udiff.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_udiff_assoc.php";s:10:"php_compat";s:42:"PHP/Compat/Function/array_udiff_uassoc.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_uintersect.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_uintersect_assoc.php";s:10:"php_compat";s:47:"PHP/Compat/Function/array_uintersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_walk_recursive.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcinvert.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcpowmod.php";s:10:"php_compat";s:44:"PHP/Compat/Function/call_user_func_array.php";s:10:"php_compat";s:29:"PHP/Compat/Function/clone.php";s:10:"php_compat";s:32:"PHP/Compat/Function/constant.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uuencode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uudecode.php";s:10:"php_compat";s:45:"PHP/Compat/Function/debug_print_backtrace.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_get_contents.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_put_contents.php";s:10:"php_compat";s:32:"PHP/Compat/Function/floatval.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fprintf.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fputcsv.php";s:10:"php_compat";s:35:"PHP/Compat/Function/get_headers.php";s:10:"php_compat";s:40:"PHP/Compat/Function/get_include_path.php";s:10:"php_compat";s:42:"PHP/Compat/Function/html_entity_decode.php";s:10:"php_compat";s:47:"PHP/Compat/Function/htmlspecialchars_decode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/http_build_query.php";s:10:"php_compat";s:37:"PHP/Compat/Function/ibase_timefmt.php";s:10:"php_compat";s:29:"PHP/Compat/Function/idate.php";s:10:"php_compat";s:47:"PHP/Compat/Function/image_type_to_mime_type.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_ntop.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_pton.php";s:10:"php_compat";s:35:"PHP/Compat/Function/ini_get_all.php";s:10:"php_compat";s:28:"PHP/Compat/Function/is_a.php";s:10:"php_compat";s:32:"PHP/Compat/Function/md5_file.php";s:10:"php_compat";s:29:"PHP/Compat/Function/mhash.php";s:10:"php_compat";s:41:"PHP/Compat/Function/mime_content_type.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_clean.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_flush.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_clean.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_flush.php";s:10:"php_compat";s:44:"PHP/Compat/Function/php_strip_whitespace.php";s:10:"php_compat";s:40:"PHP/Compat/Function/pg_affected_rows.php";s:10:"php_compat";s:39:"PHP/Compat/Function/pg_escape_bytea.php";s:10:"php_compat";s:41:"PHP/Compat/Function/pg_unescape_bytea.php";s:10:"php_compat";s:44:"PHP/Compat/Function/restore_include_path.php";s:10:"php_compat";s:31:"PHP/Compat/Function/scandir.php";s:10:"php_compat";s:40:"PHP/Compat/Function/set_include_path.php";s:10:"php_compat";s:36:"PHP/Compat/Function/str_ireplace.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_rot13.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_split.php";s:10:"php_compat";s:35:"PHP/Compat/Function/str_shuffle.php";s:10:"php_compat";s:38:"PHP/Compat/Function/str_word_count.php";s:10:"php_compat";s:31:"PHP/Compat/Function/stripos.php";s:10:"php_compat";s:31:"PHP/Compat/Function/strpbrk.php";s:10:"php_compat";s:32:"PHP/Compat/Function/strripos.php";s:10:"php_compat";s:38:"PHP/Compat/Function/substr_compare.php";s:10:"php_compat";s:40:"PHP/Compat/Function/time_sleep_until.php";s:10:"php_compat";s:34:"PHP/Compat/Function/var_export.php";s:10:"php_compat";s:39:"PHP/Compat/Function/version_compare.php";s:10:"php_compat";s:31:"PHP/Compat/Function/vprintf.php";s:10:"php_compat";s:32:"PHP/Compat/Function/vsprintf.php";s:10:"php_compat";}s:3:"doc";a:2:{s:32:"archive_tar/docs/Archive_Tar.txt";s:11:"archive_tar";s:24:"net_url/docs/example.php";s:7:"net_url";}s:6:"script";a:3:{s:15:"scripts/pear.sh";s:4:"pear";s:18:"scripts/peardev.sh";s:4:"pear";s:15:"scripts/pecl.sh";s:4:"pear";}s:4:"data";a:2:{s:16:"pear/package.dtd";s:4:"pear";s:18:"pear/template.spec";s:4:"pear";}s:4:"test";a:86:{s:34:"php_compat/tests/loadconstant.phpt";s:10:"php_compat";s:34:"php_compat/tests/loadfunction.phpt";s:10:"php_compat";s:33:"php_compat/tests/loadversion.phpt";s:10:"php_compat";s:50:"php_compat/tests/constant/directory_separator.phpt";s:10:"php_compat";s:39:"php_compat/tests/constant/e_strict.phpt";s:10:"php_compat";s:35:"php_compat/tests/constant/file.phpt";s:10:"php_compat";s:45:"php_compat/tests/constant/path_separator.phpt";s:10:"php_compat";s:34:"php_compat/tests/constant/std.phpt";s:10:"php_compat";s:38:"php_compat/tests/constant/php_eol.phpt";s:10:"php_compat";s:41:"php_compat/tests/constant/upload_err.phpt";s:10:"php_compat";s:32:"php_compat/tests/constant/t.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_change_key_case.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_chunk.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_combine.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_diff_assoc.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_diff_uassoc.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/array_diff_key.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/array_diff_ukey.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_intersect_assoc.phpt";s:10:"php_compat";s:50:"php_compat/tests/function/array_intersect_key.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_intersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_intersect_ukey.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_key_exists.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_product.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/array_search.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_udiff.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_udiff_assoc.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/array_udiff_uassoc.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_uintersect.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_uintersect_assoc.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/array_uintersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_walk_recursive.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcinvert.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcpowmod.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/call_user_func_array.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/clone.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/constant.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uuencode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uudecode.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/debug_print_backtrace.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_get_contents.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_put_contents.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/floatval.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fprintf.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fputcsv.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/get_headers.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/get_include_path.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/html_entity_decode.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/htmlspecialchars_decode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/http_build_query.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/ibase_timefmt.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/idate.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/image_type_to_mime_type.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_ntop.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_pton.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/ini_get_all.phpt";s:10:"php_compat";s:35:"php_compat/tests/function/is_a.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/is_scalar.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/md5_file.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/mhash.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/mime_content_type.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_clean.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_flush.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_clean.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_flush.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/php_strip_whitespace.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/pg_affected_rows.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/pg_escape_bytea.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/pg_unescape_bytea.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/restore_include_path.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/scandir.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/set_include_path.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/str_ireplace.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_rot13.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_split.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/str_shuffle.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/str_word_count.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/stripos.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/strpbrk.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/strripos.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/substr_compare.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/time_sleep_until.phpt";s:10:"php_compat";s:41:"php_compat/tests/function/var_export.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/version_compare.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/vprintf.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/vsprintf.phpt";s:10:"php_compat";}} \ No newline at end of file +a:5:{s:3:"php";a:232:{s:18:"Console/Getopt.php";s:14:"console_getopt";s:15:"Archive/Tar.php";s:11:"archive_tar";s:12:"OS/Guess.php";s:4:"pear";s:27:"PEAR/ChannelFile/Parser.php";s:4:"pear";s:21:"PEAR/Command/Auth.xml";s:4:"pear";s:21:"PEAR/Command/Auth.php";s:4:"pear";s:22:"PEAR/Command/Build.xml";s:4:"pear";s:22:"PEAR/Command/Build.php";s:4:"pear";s:25:"PEAR/Command/Channels.xml";s:4:"pear";s:25:"PEAR/Command/Channels.php";s:4:"pear";s:23:"PEAR/Command/Common.php";s:4:"pear";s:23:"PEAR/Command/Config.xml";s:4:"pear";s:23:"PEAR/Command/Config.php";s:4:"pear";s:24:"PEAR/Command/Install.xml";s:4:"pear";s:24:"PEAR/Command/Install.php";s:4:"pear";s:23:"PEAR/Command/Mirror.xml";s:4:"pear";s:23:"PEAR/Command/Mirror.php";s:4:"pear";s:24:"PEAR/Command/Package.xml";s:4:"pear";s:24:"PEAR/Command/Package.php";s:4:"pear";s:23:"PEAR/Command/Pickle.xml";s:4:"pear";s:23:"PEAR/Command/Pickle.php";s:4:"pear";s:25:"PEAR/Command/Registry.xml";s:4:"pear";s:25:"PEAR/Command/Registry.php";s:4:"pear";s:23:"PEAR/Command/Remote.xml";s:4:"pear";s:23:"PEAR/Command/Remote.php";s:4:"pear";s:21:"PEAR/Command/Test.xml";s:4:"pear";s:21:"PEAR/Command/Test.php";s:4:"pear";s:27:"PEAR/Downloader/Package.php";s:4:"pear";s:21:"PEAR/Frontend/CLI.php";s:4:"pear";s:30:"PEAR/Installer/Role/Common.php";s:4:"pear";s:28:"PEAR/Installer/Role/Data.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Data.php";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Doc.php";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Ext.php";s:4:"pear";s:27:"PEAR/Installer/Role/Php.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Php.php";s:4:"pear";s:30:"PEAR/Installer/Role/Script.xml";s:4:"pear";s:30:"PEAR/Installer/Role/Script.php";s:4:"pear";s:27:"PEAR/Installer/Role/Src.xml";s:4:"pear";s:27:"PEAR/Installer/Role/Src.php";s:4:"pear";s:28:"PEAR/Installer/Role/Test.xml";s:4:"pear";s:28:"PEAR/Installer/Role/Test.php";s:4:"pear";s:23:"PEAR/Installer/Role.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v1.php";s:4:"pear";s:33:"PEAR/PackageFile/Generator/v2.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v1.php";s:4:"pear";s:30:"PEAR/PackageFile/Parser/v2.php";s:4:"pear";s:26:"PEAR/PackageFile/v2/rw.php";s:4:"pear";s:33:"PEAR/PackageFile/v2/Validator.php";s:4:"pear";s:23:"PEAR/PackageFile/v1.php";s:4:"pear";s:23:"PEAR/PackageFile/v2.php";s:4:"pear";s:16:"PEAR/REST/10.php";s:4:"pear";s:16:"PEAR/REST/11.php";s:4:"pear";s:34:"PEAR/Task/Postinstallscript/rw.php";s:4:"pear";s:24:"PEAR/Task/Replace/rw.php";s:4:"pear";s:24:"PEAR/Task/Unixeol/rw.php";s:4:"pear";s:27:"PEAR/Task/Windowseol/rw.php";s:4:"pear";s:20:"PEAR/Task/Common.php";s:4:"pear";s:31:"PEAR/Task/Postinstallscript.php";s:4:"pear";s:21:"PEAR/Task/Replace.php";s:4:"pear";s:21:"PEAR/Task/Unixeol.php";s:4:"pear";s:24:"PEAR/Task/Windowseol.php";s:4:"pear";s:23:"PEAR/Validator/PECL.php";s:4:"pear";s:19:"PEAR/Autoloader.php";s:4:"pear";s:16:"PEAR/Builder.php";s:4:"pear";s:20:"PEAR/ChannelFile.php";s:4:"pear";s:16:"PEAR/Command.php";s:4:"pear";s:15:"PEAR/Common.php";s:4:"pear";s:15:"PEAR/Config.php";s:4:"pear";s:19:"PEAR/Dependency.php";s:4:"pear";s:21:"PEAR/DependencyDB.php";s:4:"pear";s:20:"PEAR/Dependency2.php";s:4:"pear";s:19:"PEAR/Downloader.php";s:4:"pear";s:19:"PEAR/ErrorStack.php";s:4:"pear";s:18:"PEAR/Exception.php";s:4:"pear";s:17:"PEAR/Frontend.php";s:4:"pear";s:18:"PEAR/Installer.php";s:4:"pear";s:20:"PEAR/PackageFile.php";s:4:"pear";s:17:"PEAR/Packager.php";s:4:"pear";s:17:"PEAR/Registry.php";s:4:"pear";s:15:"PEAR/Remote.php";s:4:"pear";s:13:"PEAR/REST.php";s:4:"pear";s:16:"PEAR/RunTest.php";s:4:"pear";s:17:"PEAR/Validate.php";s:4:"pear";s:18:"PEAR/XMLParser.php";s:4:"pear";s:19:"scripts/pearcmd.php";s:4:"pear";s:19:"scripts/peclcmd.php";s:4:"pear";s:8:"PEAR.php";s:4:"pear";s:10:"System.php";s:4:"pear";s:11:"Net/URL.php";s:7:"net_url";s:14:"Net/Socket.php";s:10:"net_socket";s:13:"MIME/Type.php";s:9:"mime_type";s:23:"MIME/Type/Parameter.php";s:9:"mime_type";s:26:"docs/MIME_Type/example.php";s:9:"mime_type";s:14:"PHP/Compat.php";s:10:"php_compat";s:25:"PHP/Compat/Components.php";s:10:"php_compat";s:43:"PHP/Compat/Constant/DIRECTORY_SEPARATOR.php";s:10:"php_compat";s:32:"PHP/Compat/Constant/E_STRICT.php";s:10:"php_compat";s:38:"PHP/Compat/Constant/PATH_SEPARATOR.php";s:10:"php_compat";s:27:"PHP/Compat/Constant/STD.php";s:10:"php_compat";s:28:"PHP/Compat/Constant/FILE.php";s:10:"php_compat";s:31:"PHP/Compat/Constant/PHP_EOL.php";s:10:"php_compat";s:34:"PHP/Compat/Constant/UPLOAD_ERR.php";s:10:"php_compat";s:25:"PHP/Compat/Constant/T.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_change_key_case.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_chunk.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_combine.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_diff_assoc.php";s:10:"php_compat";s:38:"PHP/Compat/Function/array_diff_key.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_diff_uassoc.php";s:10:"php_compat";s:39:"PHP/Compat/Function/array_diff_ukey.php";s:10:"php_compat";s:45:"PHP/Compat/Function/array_intersect_assoc.php";s:10:"php_compat";s:43:"PHP/Compat/Function/array_intersect_key.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_intersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_intersect_ukey.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_key_exists.php";s:10:"php_compat";s:37:"PHP/Compat/Function/array_product.php";s:10:"php_compat";s:36:"PHP/Compat/Function/array_search.php";s:10:"php_compat";s:35:"PHP/Compat/Function/array_udiff.php";s:10:"php_compat";s:41:"PHP/Compat/Function/array_udiff_assoc.php";s:10:"php_compat";s:42:"PHP/Compat/Function/array_udiff_uassoc.php";s:10:"php_compat";s:40:"PHP/Compat/Function/array_uintersect.php";s:10:"php_compat";s:46:"PHP/Compat/Function/array_uintersect_assoc.php";s:10:"php_compat";s:47:"PHP/Compat/Function/array_uintersect_uassoc.php";s:10:"php_compat";s:44:"PHP/Compat/Function/array_walk_recursive.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcinvert.php";s:10:"php_compat";s:32:"PHP/Compat/Function/bcpowmod.php";s:10:"php_compat";s:44:"PHP/Compat/Function/call_user_func_array.php";s:10:"php_compat";s:29:"PHP/Compat/Function/clone.php";s:10:"php_compat";s:32:"PHP/Compat/Function/constant.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uuencode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/convert_uudecode.php";s:10:"php_compat";s:45:"PHP/Compat/Function/debug_print_backtrace.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_get_contents.php";s:10:"php_compat";s:41:"PHP/Compat/Function/file_put_contents.php";s:10:"php_compat";s:32:"PHP/Compat/Function/floatval.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fprintf.php";s:10:"php_compat";s:31:"PHP/Compat/Function/fputcsv.php";s:10:"php_compat";s:35:"PHP/Compat/Function/get_headers.php";s:10:"php_compat";s:40:"PHP/Compat/Function/get_include_path.php";s:10:"php_compat";s:42:"PHP/Compat/Function/html_entity_decode.php";s:10:"php_compat";s:47:"PHP/Compat/Function/htmlspecialchars_decode.php";s:10:"php_compat";s:40:"PHP/Compat/Function/http_build_query.php";s:10:"php_compat";s:37:"PHP/Compat/Function/ibase_timefmt.php";s:10:"php_compat";s:29:"PHP/Compat/Function/idate.php";s:10:"php_compat";s:47:"PHP/Compat/Function/image_type_to_mime_type.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_ntop.php";s:10:"php_compat";s:33:"PHP/Compat/Function/inet_pton.php";s:10:"php_compat";s:35:"PHP/Compat/Function/ini_get_all.php";s:10:"php_compat";s:28:"PHP/Compat/Function/is_a.php";s:10:"php_compat";s:32:"PHP/Compat/Function/md5_file.php";s:10:"php_compat";s:29:"PHP/Compat/Function/mhash.php";s:10:"php_compat";s:41:"PHP/Compat/Function/mime_content_type.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_clean.php";s:10:"php_compat";s:32:"PHP/Compat/Function/ob_flush.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_clean.php";s:10:"php_compat";s:36:"PHP/Compat/Function/ob_get_flush.php";s:10:"php_compat";s:44:"PHP/Compat/Function/php_strip_whitespace.php";s:10:"php_compat";s:40:"PHP/Compat/Function/pg_affected_rows.php";s:10:"php_compat";s:39:"PHP/Compat/Function/pg_escape_bytea.php";s:10:"php_compat";s:41:"PHP/Compat/Function/pg_unescape_bytea.php";s:10:"php_compat";s:44:"PHP/Compat/Function/restore_include_path.php";s:10:"php_compat";s:31:"PHP/Compat/Function/scandir.php";s:10:"php_compat";s:40:"PHP/Compat/Function/set_include_path.php";s:10:"php_compat";s:36:"PHP/Compat/Function/str_ireplace.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_rot13.php";s:10:"php_compat";s:33:"PHP/Compat/Function/str_split.php";s:10:"php_compat";s:35:"PHP/Compat/Function/str_shuffle.php";s:10:"php_compat";s:38:"PHP/Compat/Function/str_word_count.php";s:10:"php_compat";s:31:"PHP/Compat/Function/stripos.php";s:10:"php_compat";s:31:"PHP/Compat/Function/strpbrk.php";s:10:"php_compat";s:32:"PHP/Compat/Function/strripos.php";s:10:"php_compat";s:38:"PHP/Compat/Function/substr_compare.php";s:10:"php_compat";s:40:"PHP/Compat/Function/time_sleep_until.php";s:10:"php_compat";s:34:"PHP/Compat/Function/var_export.php";s:10:"php_compat";s:39:"PHP/Compat/Function/version_compare.php";s:10:"php_compat";s:31:"PHP/Compat/Function/vprintf.php";s:10:"php_compat";s:32:"PHP/Compat/Function/vsprintf.php";s:10:"php_compat";s:16:"File/Archive.php";s:12:"file_archive";s:26:"File/Archive/Predicate.php";s:12:"file_archive";s:23:"File/Archive/Reader.php";s:12:"file_archive";s:23:"File/Archive/Writer.php";s:12:"file_archive";s:30:"File/Archive/Predicate/And.php";s:12:"file_archive";s:34:"File/Archive/Predicate/Current.php";s:12:"file_archive";s:33:"File/Archive/Predicate/Custom.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Duplicate.php";s:12:"file_archive";s:31:"File/Archive/Predicate/Ereg.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Eregi.php";s:12:"file_archive";s:36:"File/Archive/Predicate/Extension.php";s:12:"file_archive";s:32:"File/Archive/Predicate/False.php";s:12:"file_archive";s:32:"File/Archive/Predicate/Index.php";s:12:"file_archive";s:35:"File/Archive/Predicate/MaxDepth.php";s:12:"file_archive";s:31:"File/Archive/Predicate/MIME.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinSize.php";s:12:"file_archive";s:34:"File/Archive/Predicate/MinTime.php";s:12:"file_archive";s:30:"File/Archive/Predicate/Not.php";s:12:"file_archive";s:29:"File/Archive/Predicate/Or.php";s:12:"file_archive";s:31:"File/Archive/Predicate/True.php";s:12:"file_archive";s:26:"File/Archive/Reader/Ar.php";s:12:"file_archive";s:31:"File/Archive/Reader/Archive.php";s:12:"file_archive";s:29:"File/Archive/Reader/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Reader/Cache.php";s:12:"file_archive";s:34:"File/Archive/Reader/ChangeName.php";s:12:"file_archive";s:30:"File/Archive/Reader/Concat.php";s:12:"file_archive";s:33:"File/Archive/Reader/Directory.php";s:12:"file_archive";s:28:"File/Archive/Reader/File.php";s:12:"file_archive";s:30:"File/Archive/Reader/Filter.php";s:12:"file_archive";s:28:"File/Archive/Reader/Gzip.php";s:12:"file_archive";s:30:"File/Archive/Reader/Memory.php";s:12:"file_archive";s:32:"File/Archive/Reader/MimeList.php";s:12:"file_archive";s:29:"File/Archive/Reader/Multi.php";s:12:"file_archive";s:29:"File/Archive/Reader/Relay.php";s:12:"file_archive";s:30:"File/Archive/Reader/Select.php";s:12:"file_archive";s:27:"File/Archive/Reader/Tar.php";s:12:"file_archive";s:34:"File/Archive/Reader/Uncompress.php";s:12:"file_archive";s:27:"File/Archive/Reader/Zip.php";s:12:"file_archive";s:35:"File/Archive/Writer/AddBaseName.php";s:12:"file_archive";s:26:"File/Archive/Writer/Ar.php";s:12:"file_archive";s:31:"File/Archive/Writer/Archive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Bzip2.php";s:12:"file_archive";s:29:"File/Archive/Writer/Files.php";s:12:"file_archive";s:28:"File/Archive/Writer/Gzip.php";s:12:"file_archive";s:28:"File/Archive/Writer/Mail.php";s:12:"file_archive";s:30:"File/Archive/Writer/Memory.php";s:12:"file_archive";s:37:"File/Archive/Writer/MemoryArchive.php";s:12:"file_archive";s:29:"File/Archive/Writer/Multi.php";s:12:"file_archive";s:30:"File/Archive/Writer/Output.php";s:12:"file_archive";s:27:"File/Archive/Writer/Tar.php";s:12:"file_archive";s:38:"File/Archive/Writer/UniqueAppender.php";s:12:"file_archive";s:27:"File/Archive/Writer/Zip.php";s:12:"file_archive";}s:3:"doc";a:3:{s:32:"archive_tar/docs/Archive_Tar.txt";s:11:"archive_tar";s:24:"net_url/docs/example.php";s:7:"net_url";s:32:"file_archive/File/doc/readme.txt";s:12:"file_archive";}s:6:"script";a:3:{s:15:"scripts/pear.sh";s:4:"pear";s:18:"scripts/peardev.sh";s:4:"pear";s:15:"scripts/pecl.sh";s:4:"pear";}s:4:"data";a:2:{s:16:"pear/package.dtd";s:4:"pear";s:18:"pear/template.spec";s:4:"pear";}s:4:"test";a:87:{s:34:"php_compat/tests/loadconstant.phpt";s:10:"php_compat";s:34:"php_compat/tests/loadfunction.phpt";s:10:"php_compat";s:33:"php_compat/tests/loadversion.phpt";s:10:"php_compat";s:50:"php_compat/tests/constant/directory_separator.phpt";s:10:"php_compat";s:39:"php_compat/tests/constant/e_strict.phpt";s:10:"php_compat";s:35:"php_compat/tests/constant/file.phpt";s:10:"php_compat";s:45:"php_compat/tests/constant/path_separator.phpt";s:10:"php_compat";s:34:"php_compat/tests/constant/std.phpt";s:10:"php_compat";s:38:"php_compat/tests/constant/php_eol.phpt";s:10:"php_compat";s:41:"php_compat/tests/constant/upload_err.phpt";s:10:"php_compat";s:32:"php_compat/tests/constant/t.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_change_key_case.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_chunk.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_combine.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_diff_assoc.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_diff_uassoc.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/array_diff_key.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/array_diff_ukey.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/array_intersect_assoc.phpt";s:10:"php_compat";s:50:"php_compat/tests/function/array_intersect_key.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_intersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_intersect_ukey.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_key_exists.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/array_product.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/array_search.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/array_udiff.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/array_udiff_assoc.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/array_udiff_uassoc.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/array_uintersect.phpt";s:10:"php_compat";s:53:"php_compat/tests/function/array_uintersect_assoc.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/array_uintersect_uassoc.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/array_walk_recursive.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcinvert.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/bcpowmod.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/call_user_func_array.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/clone.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/constant.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uuencode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/convert_uudecode.phpt";s:10:"php_compat";s:52:"php_compat/tests/function/debug_print_backtrace.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_get_contents.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/file_put_contents.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/floatval.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fprintf.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/fputcsv.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/get_headers.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/get_include_path.phpt";s:10:"php_compat";s:49:"php_compat/tests/function/html_entity_decode.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/htmlspecialchars_decode.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/http_build_query.phpt";s:10:"php_compat";s:44:"php_compat/tests/function/ibase_timefmt.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/idate.phpt";s:10:"php_compat";s:54:"php_compat/tests/function/image_type_to_mime_type.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_ntop.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/inet_pton.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/ini_get_all.phpt";s:10:"php_compat";s:35:"php_compat/tests/function/is_a.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/is_scalar.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/md5_file.phpt";s:10:"php_compat";s:36:"php_compat/tests/function/mhash.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/mime_content_type.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_clean.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/ob_flush.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_clean.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/ob_get_flush.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/php_strip_whitespace.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/pg_affected_rows.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/pg_escape_bytea.phpt";s:10:"php_compat";s:48:"php_compat/tests/function/pg_unescape_bytea.phpt";s:10:"php_compat";s:51:"php_compat/tests/function/restore_include_path.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/scandir.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/set_include_path.phpt";s:10:"php_compat";s:43:"php_compat/tests/function/str_ireplace.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_rot13.phpt";s:10:"php_compat";s:40:"php_compat/tests/function/str_split.phpt";s:10:"php_compat";s:42:"php_compat/tests/function/str_shuffle.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/str_word_count.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/stripos.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/strpbrk.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/strripos.phpt";s:10:"php_compat";s:45:"php_compat/tests/function/substr_compare.phpt";s:10:"php_compat";s:47:"php_compat/tests/function/time_sleep_until.phpt";s:10:"php_compat";s:41:"php_compat/tests/function/var_export.phpt";s:10:"php_compat";s:46:"php_compat/tests/function/version_compare.phpt";s:10:"php_compat";s:38:"php_compat/tests/function/vprintf.phpt";s:10:"php_compat";s:39:"php_compat/tests/function/vsprintf.phpt";s:10:"php_compat";s:32:"file_archive/File/tests/test.php";s:12:"file_archive";}} \ No newline at end of file Modified: trunk/contrib/pfcInstaller2/.registry/pear.reg =================================================================== --- trunk/contrib/pfcInstaller2/.registry/pear.reg 2006-08-26 14:32:32 UTC (rev 708) +++ trunk/contrib/pfcInstaller2/.registry/pear.reg 2006-08-27 07:56:46 UTC (rev 709) @@ -1,4 +1,4 @@ -a:23:{s:7:"attribs";a:6:{s:15:"packagerversion";s:9:"1.4.10RC1";s:7:"version";s:3:"2.0";s:5:"xmlns";s:35:"http://pear.php.net/dtd/package-2.0";s:11:"xmlns:tasks";s:33:"http://pear.php.net/dtd/tasks-1.0";s:9:"xmlns:xsi";s:41:"http://www.w3.org/2001/XMLSchema-instance";s:18:"xsi:schemaLocation";s:147:"http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd";}s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:7:"summary";s:16:"PEAR Base System";s:11:"description";s:1277:"The PEAR package contains: +a:23:{s:7:"attribs";a:6:{s:15:"packagerversion";s:6:"1.4.11";s:7:"version";s:3:"2.0";s:5:"xmlns";s:35:"http://pear.php.net/dtd/package-2.0";s:11:"xmlns:tasks";s:33:"http://pear.php.net/dtd/tasks-1.0";s:9:"xmlns:xsi";s:41:"http://www.w3.org/2001/XMLSchema-instance";s:18:"xsi:schemaLocation";s:147:"http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd";}s:4:"name";s:4:"PEAR";s:7:"channel";s:12:"pear.php.net";s:7:"summary";s:16:"PEAR Base System";s:11:"description";s:1277:"The PEAR package contains: * the PEAR installer, for creating, distributing and installing packages * the beta-quality PEAR_Exception PHP5 error handling mechanism @@ -25,7 +25,9 @@ * support for custom file roles and installation tasks NOTE: users of PEAR_Frontend_Web/PEAR_Frontend_Gtk must upgrade their installations - to the latest version, or PEAR will not upgrade properly";s:4:"lead";a:4:{i:0;a:4:{s:4:"name";s:11:"Greg Beaver";s:4:"user";s:6:"cellog";s:5:"email";s:14:"ce...@ph...";s:6:"active";s:3:"yes";}i:1;a:4:{s:4:"name";s:17:"Pierre-Alain Joye";s:4:"user";s:6:"pajoye";s:5:"email";s:17:"pa...@pe...";s:6:"active";s:3:"yes";}i:2;a:4:{s:4:"name";s:11:"Stig Bakken";s:4:"user";s:3:"ssb";s:5:"email";s:12:"st...@ph...";s:6:"active";s:2:"no";}i:3;a:4:{s:4:"name";s:13:"Tomas V.V.Cox";s:4:"user";s:3:"cox";s:5:"email";s:15:"co...@id...";s:6:"active";s:2:"no";}}s:6:"helper";a:3:{i:0;a:4:{s:4:"name";s:11:"Tim Jackson";s:4:"user";s:4:"timj";s:5:"email";s:12:"ti...@ph...";s:6:"active";s:3:"yes";}i:1;a:4:{s:4:"name";s:15:"Bertrand Gugger";s:4:"user";s:5:"toggg";s:5:"email";s:13:"to...@ph...";s:6:"active";s:2:"no";}i:2;a:4:{s:4:"name";s:13:"Martin Jansen";s:4:"user";s:2:"mj";s:5:"email";s:10:"mj...@ph...";s:6:"active";s:2:"no";}}s:4:"date";s:10:"2006-07-18";s:4:"time";s:8:"20:16:41";s:7:"version";a:2:{s:7:"release";s:6:"1.4.10";s:3:"api";s:5:"1.4.2";}s:9:"stability";a:2:{s:7:"release";s:6:"stable";s:3:"api";s:6:"stable";}s:7:"license";a:2:{s:7:"attribs";a:1:{s:3:"uri";s:26:"http://www.php.net/license";}s:8:"_content";s:11:"PHP License";}s:5:"notes";s:785:"bugfix release + to the latest version, or PEAR will not upgrade properly";s:4:"lead";a:4:{i:0;a:4:{s:4:"name";s:11:"Greg Beaver";s:4:"user";s:6:"cellog";s:5:"email";s:14:"ce...@ph...";s:6:"active";s:3:"yes";}i:1;a:4:{s:4:"name";s:17:"Pierre-Alain Joye";s:4:"user";s:6:"pajoye";s:5:"email";s:17:"pa...@pe...";s:6:"active";s:3:"yes";}i:2;a:4:{s:4:"name";s:11:"Stig Bakken";s:4:"user";s:3:"ssb";s:5:"email";s:12:"st...@ph...";s:6:"active";s:2:"no";}i:3;a:4:{s:4:"name";s:13:"Tomas V.V.Cox";s:4:"user";s:3:"cox";s:5:"email";s:15:"co...@id...";s:6:"active";s:2:"no";}}s:6:"helper";a:3:{i:0;a:4:{s:4:"name";s:11:"Tim Jackson";s:4:"user";s:4:"timj";s:5:"email";s:12:"ti...@ph...";s:6:"active";s:3:"yes";}i:1;a:4:{s:4:"name";s:15:"Bertrand Gugger";s:4:"user";s:5:"toggg";s:5:"email";s:13:"to...@ph...";s:6:"active";s:2:"no";}i:2;a:4:{s:4:"name";s:13:"Martin Jansen";s:4:"user";s:2:"mj";s:5:"email";s:10:"mj...@ph...";s:6:"active";s:2:"no";}}s:4:"date";s:10:"2006-08-16";s:4:"time";s:8:"12:15:15";s:7:"version";a:2:{s:7:"release";s:6:"1.4.11";s:3:"api";s:5:"1.4.2";}s:9:"stability";a:2:{s:7:"release";s:6:"stable";s:3:"api";s:6:"stable";}s:7:"license";a:2:{s:7:"attribs";a:1:{s:3:"uri";s:26:"http://www.php.net/license";}s:8:"_content";s:11:"PHP License";}s:5:"notes";s:125:"minor bugfix release +* fix the conflicts detection for the web frontend (before 0.5.0) +* fix warnings in the list-all command";s:8:"contents";a:1:{s:3:"dir";a:2:{s:7:"attribs";a:1:{s:4:"name";s:1:"/";}s:4:"file";a:97:{i:0;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"b309a1eb31b2826cd1cec229fb352eb0";s:4:"name";s:12:"OS/Guess.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:1;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"28016a108b34962267f86ccc1d70d852";s:4:"name";s:27:"PEAR/ChannelFile/Parser.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:2;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"4a11a3c4bc2c2f338c183b332def156b";s:4:"name";s:21:"PEAR/Command/Auth.xml";s:4:"role";s:3:"php";}}i:3;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"20a596c843275e8607c0e1fdc7953e64";s:4:"name";s:21:"PEAR/Command/Auth.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:4;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"73602fd7f051eaf8d37452d0e3063bdb";s:4:"name";s:22:"PEAR/Command/Build.xml";s:4:"role";s:3:"php";}}i:5;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"bf340957761207ff4408b560cba982e1";s:4:"name";s:22:"PEAR/Command/Build.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:6;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"d5586c3708924122c9383738315f6539";s:4:"name";s:25:"PEAR/Command/Channels.xml";s:4:"role";s:3:"php";}}i:7;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"f68e6ae36ed4dd9e3b4cd2a8d67e1227";s:4:"name";s:25:"PEAR/Command/Channels.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:8;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"0033cb00b42b118df88c0daaacbfe1d3";s:4:"name";s:23:"PEAR/Command/Common.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:9;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"91f189cb9423b5e87ee0abc5ea1a2be3";s:4:"name";s:23:"PEAR/Command/Config.xml";s:4:"role";s:3:"php";}}i:10;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"12df978b3560fc1e846ecbd5e367240c";s:4:"name";s:23:"PEAR/Command/Config.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:11;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"516da3eb7ebbecfbfb4188408a1983b2";s:4:"name";s:24:"PEAR/Command/Install.xml";s:4:"role";s:3:"php";}}i:12;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"aa6ea8b7087130a518fcbb401f3369c6";s:4:"name";s:24:"PEAR/Command/Install.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:13;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"5cb62a04c0a268f4edd64a49a3895c92";s:4:"name";s:23:"PEAR/Command/Mirror.xml";s:4:"role";s:3:"php";}}i:14;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"d35b596f8c060eb666797cd2f0f61643";s:4:"name";s:23:"PEAR/Command/Mirror.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:15;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"bbf88f26cd10b1caa76d5eec474f093f";s:4:"name";s:24:"PEAR/Command/Package.xml";s:4:"role";s:3:"php";}}i:16;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"ed3d49a880913827d7c3a1beacb5531c";s:4:"name";s:24:"PEAR/Command/Package.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:2:{i:0;a:1:{s:7:"attribs";a:3:{s:4:"from";s:10:"@DATA-DIR@";s:2:"to";s:8:"data_dir";s:4:"type";s:11:"pear-config";}}i:1;a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}}i:17;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"35817866283227237796b32d32dac44d";s:4:"name";s:23:"PEAR/Command/Pickle.xml";s:4:"role";s:3:"php";}}i:18;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"dea2b4d9388a9511e59548c61f60251a";s:4:"name";s:23:"PEAR/Command/Pickle.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:19;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"e7fc652e4b5266bbac1c23140de01598";s:4:"name";s:25:"PEAR/Command/Registry.xml";s:4:"role";s:3:"php";}}i:20;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"2f8013f7a0c1e2f2ba7ca3113135015d";s:4:"name";s:25:"PEAR/Command/Registry.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:21;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"d57b54857aba5b6ff2fe528cbf522b00";s:4:"name";s:23:"PEAR/Command/Remote.xml";s:4:"role";s:3:"php";}}i:22;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"ad00e67d39dc0d15c5ed9cbd26992ec9";s:4:"name";s:23:"PEAR/Command/Remote.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attribs";a:3:{s:4:"from";s:17:"@package_version@";s:2:"to";s:7:"version";s:4:"type";s:12:"package-info";}}}i:23;a:1:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"f5072ed4032dc28fac20f526f03520f8";s:4:"name";s:21:"PEAR/Command/Test.xml";s:4:"role";s:3:"php";}}i:24;a:2:{s:7:"attribs";a:3:{s:6:"md5sum";s:32:"a537a76b067ccdac893469fb95c1c9cc";s:4:"name";s:21:"PEAR/Command/Test.php";s:4:"role";s:3:"php";}s:13:"tasks:replace";a:1:{s:7:"attr... [truncated message content] |
From: <ke...@us...> - 2006-08-26 14:32:39
|
Revision: 708 Author: kerphi Date: 2006-08-26 07:32:32 -0700 (Sat, 26 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=708&view=rev Log Message: ----------- [en] Bug fix: on IE6 when chinese characteres were typed, the screen goes blank. The workeround is to force use of serif (or monospace) font family for the chat area (sans-serif will not work). [fr] Bug fix?\194?\160: les caract?\195?\168res chinois provoquaient l'effacement des messages du chat sous IE6. L'astuce consiste ?\195?\160 forcer l'utilisation de la famille de police serif (ou monospace) pour la zone de chat (la famille sans-serif ?\195?\169tait la cause du probl?\195?\168me). Modified Paths: -------------- trunk/themes/default/style.css Modified: trunk/themes/default/style.css =================================================================== --- trunk/themes/default/style.css 2006-08-26 14:27:29 UTC (rev 707) +++ trunk/themes/default/style.css 2006-08-26 14:32:32 UTC (rev 708) @@ -33,6 +33,7 @@ background-color: #FFF; margin-top: 5px; height: 300px; + font-family: serif; /* needed by IE6 in order to display correctly chinese characteres */ } div.pfc_content { } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-26 14:27:35
|
Revision: 707 Author: kerphi Date: 2006-08-26 07:27:29 -0700 (Sat, 26 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=707&view=rev Log Message: ----------- fix a wrong charactere Modified Paths: -------------- trunk/i18n/ja_JP/main.php Modified: trunk/i18n/ja_JP/main.php =================================================================== --- trunk/i18n/ja_JP/main.php 2006-08-26 12:01:52 UTC (rev 706) +++ trunk/i18n/ja_JP/main.php 2006-08-26 14:27:29 UTC (rev 707) @@ -211,7 +211,7 @@ $GLOBALS["i18n"]["%s joins %s"] = "%s が %s に参加しました。"; // line 31 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s"] = "%2$s により %1$\s から追い出されました。"; +$GLOBALS["i18n"]["kicked from %s by %s"] = "%2s により %1s から追い出されました。"; // line 38 in send.class.php $GLOBALS["i18n"]["Can't send the message, %s is offline"] = "%s はオフラインなのでメッセージを送ることができませんでした。"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-26 12:02:01
|
Revision: 706 Author: kerphi Date: 2006-08-26 05:01:52 -0700 (Sat, 26 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=706&view=rev Log Message: ----------- [en] Bug fix: each commands which displayed an info message (/identify, /rehash ...) just cleared the screen on IE6. I found a workaround by moving the info message into the red error box. [fr] Bug fix?\194?\160: toutes les commandes qui affichaient un message en retour (/identify, /rehash ...) provoquaient l'effacement de l'?\195?\169cran sous IE6. J'ai trouv?\195?\169 un moyen de contourner le probl?\195?\168me en affichant le message d'information dans la boite des erreurs. Modified Paths: -------------- trunk/src/client/pfcclient.js trunk/src/client/pfcgui.js trunk/themes/default/style.css Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-08-26 09:31:12 UTC (rev 705) +++ trunk/src/client/pfcclient.js 2006-08-26 12:01:52 UTC (rev 706) @@ -601,28 +601,26 @@ displayMsg: function( cmd, msg ) { + this.setError(msg); + + // @todo find a better crossbrowser way to display messages +/* // get the current selected tab container var tabid = this.gui.getTabId(); var container = this.gui.getChatContentFromTabId(tabid); + // to fix IE6 display bug + // http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 div = document.createElement('div'); - div.style.padding = "2px 5px 2px 5px"; - - pre = document.createElement('pre'); - pre.setAttribute('class', 'pfc_info pfc_info_'+cmd); - pre.setAttribute('className', 'pfc_info pfc_info_'+cmd); // for IE6 - // Element.addClassName(pre, 'pfc_info'); - // Element.addClassName(pre, 'pfc_info_'+cmd); - pre.style.border = "1px solid #555"; - pre.style.padding = "5px"; - pre.innerHTML = msg; - div.appendChild(pre); - + // div.style.padding = "2px 5px 2px 5px"; // this will clear the screen in IE6 + div.innerHTML = '<div class="pfc_info pfc_info_'+cmd+'" style="margin:5px">'+msg+'</div>'; + // finaly append this to the message list container.appendChild(div); this.gui.scrollDown(tabid, div); +*/ }, - + handleComingRequest: function( cmds ) { var msg_html = $H(); Modified: trunk/src/client/pfcgui.js =================================================================== --- trunk/src/client/pfcgui.js 2006-08-26 09:31:12 UTC (rev 705) +++ trunk/src/client/pfcgui.js 2006-08-26 12:01:52 UTC (rev 706) @@ -561,16 +561,16 @@ clist.appendChild(img); } + // error box : <p id="pfc_errors"> + var errorbox = document.createElement('div'); + errorbox.setAttribute('id', 'pfc_errors'); + inputcontainer.appendChild(errorbox); + // smiley box : <div id="pfc_smileys"> var smileybox = document.createElement('div'); smileybox.setAttribute('id', 'pfc_smileys'); inputcontainer.appendChild(smileybox); this.loadSmileyBox(); - - // error box : <p id="pfc_errors"> - var errorbox = document.createElement('div'); - errorbox.setAttribute('id', 'pfc_errors'); - contentexp.appendChild(errorbox); } }; Modified: trunk/themes/default/style.css =================================================================== --- trunk/themes/default/style.css 2006-08-26 09:31:12 UTC (rev 705) +++ trunk/themes/default/style.css 2006-08-26 12:01:52 UTC (rev 706) @@ -217,16 +217,13 @@ div#pfc_errors { display: none; - margin-top: 5px; - padding: 2px; - height: 18px; - + padding: 5px; border: 1px solid #555; - color: #FC4A1F; - background-color: #FFBA76; - text-align: center; + color: #EC4B0F; + background-color: #FFBB77; font-style: italic; - font-weight: bold; + font-family: monospace; + font-size: 90%; } /* commands */ @@ -243,12 +240,19 @@ } /* commands info */ -pre.pfc_info { +.pfc_info { color: #888; + + /* to fix IE6 display bug */ + /* http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 */ + font-family: sans-serif; /* do NOT setup monospace font or it will not work in IE6 */ + font-style: italic; background-color: #EEE; + font-size: 80%; } + div#pfc_colorlist { display: none; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-26 09:31:21
|
Revision: 705 Author: kerphi Date: 2006-08-26 02:31:12 -0700 (Sat, 26 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=705&view=rev Log Message: ----------- [en] Bug fix: in the default file container, the old messages were never deleted. (thanks to dan_m2k, thehermit and AkS for the bug report) [fr] Bug fix?\194?\160: dans le conteneur par d?\195?\169faut (file), les vieux messages n'?\195?\169taient jamais d?\195?\169truits. (merci ?\195?\160 dan_m2k, thehermit et AkS pour le rapport de bug) Modified Paths: -------------- trunk/src/containers/file.class.php Modified: trunk/src/containers/file.class.php =================================================================== --- trunk/src/containers/file.class.php 2006-08-25 19:55:44 UTC (rev 704) +++ trunk/src/containers/file.class.php 2006-08-26 09:31:12 UTC (rev 705) @@ -475,6 +475,11 @@ // write message file_put_contents($msg_filename, $data); + + // delete the obsolete message + $old_msg_id = $msg_id - $c->max_msg - 20; + if ($old_msg_id > 0 && file_exists($msg_dir."/".$old_msg_id)) + @unlink($msg_dir."/".$old_msg_id); return $msg_id; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 19:55:49
|
Revision: 704 Author: kerphi Date: 2006-08-25 12:55:44 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=704&view=rev Log Message: ----------- Bug fix: the rehash command result display message didn't work anymore Modified Paths: -------------- trunk/src/client/chat.js.tpl.php Modified: trunk/src/client/chat.js.tpl.php =================================================================== --- trunk/src/client/chat.js.tpl.php 2006-08-25 19:52:12 UTC (rev 703) +++ trunk/src/client/chat.js.tpl.php 2006-08-25 19:55:44 UTC (rev 704) @@ -77,6 +77,8 @@ "Color", // _pfc "PHP FREE CHAT [powered by phpFreeChat-%s]", // _pfc "Enter the text to format", // _pfc + "Configuration has been rehashed", // _pfc + "A problem occurs during rehash", // _pfc ); foreach($labels_to_load as $l) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 19:52:20
|
Revision: 703 Author: kerphi Date: 2006-08-25 12:52:12 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=703&view=rev Log Message: ----------- Bug fix: the log proxy was broken Modified Paths: -------------- trunk/src/proxys/log.class.php Modified: trunk/src/proxys/log.class.php =================================================================== --- trunk/src/proxys/log.class.php 2006-08-25 19:40:39 UTC (rev 702) +++ trunk/src/proxys/log.class.php 2006-08-25 19:52:12 UTC (rev 703) @@ -31,7 +31,7 @@ class pfcProxyCommand_log extends pfcProxyCommand { function run(&$xml_reponse, $p) - { + { $cmdtocheck = array("send", "me", "notice"); if ( in_array($this->name, $cmdtocheck) ) { @@ -46,14 +46,15 @@ $logpath = ($c->proxys_cfg[$this->proxyname]["path"] == "" ? $c->data_public_path : $c->proxys_cfg[$this->proxyname]["path"]); $logfile = $logpath."/".$c->getId()."/chat.log"; - - if (!is_writable($logpath)) + if (is_writable($logpath)) { - if ((file_exists($logfile) && is_writable($logpath)) || - (!file_exists($logfile))) + $f_exists = file_exists($logfile); + if (($f_exists && is_writable($logpath)) || + !$f_exists) { - $fp = fopen($logfile, file_exists($logfile) ? 'a' : 'w'); - fwrite($fp, $recipient." -> ".$param."\n"); + $fp = fopen($logfile, $f_exists ? 'a' : 'w'); + // @todo write logs in a cleaner structured language (xml, html ... ?) + fwrite($fp, $recipient."\t".$sender."\t".$param."\n"); fclose($fp); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 19:40:48
|
Revision: 702 Author: kerphi Date: 2006-08-25 12:40:39 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=702&view=rev Log Message: ----------- [en] New parameters to easily customize the nickname color list and the bbcode text colors: nickname_colorlist and bbcode_colorlist. [fr] Nouveaux param?\195?\168ters permettant de personnaliser facilement la liste des couleurs des pseudonymes et du texte (bbcode)?\194?\160: nickname_colorlist and bbcode_colorlist. Modified Paths: -------------- trunk/src/client/chat.js.tpl.php trunk/src/pfcglobalconfig.class.php Modified: trunk/src/client/chat.js.tpl.php =================================================================== --- trunk/src/client/chat.js.tpl.php 2006-08-25 19:37:08 UTC (rev 701) +++ trunk/src/client/chat.js.tpl.php 2006-08-25 19:40:39 UTC (rev 702) @@ -33,19 +33,13 @@ echo implode(",", $list); ?>); var pfc_openlinknewwindow = <?php echo $openlinknewwindow ? "true" : "false"; ?>; -<?php -$bbcode_clist = array("FFFFFF","000000","000055","008000","FF0000","800000","800080","FF5500","FFFF00","00FF00","008080","00FFFF","0000FF","FF00FF","7F7F7F","D2D2D2"); -?> var pfc_bbcode_color_list = Array(<?php - $list = array(); foreach($bbcode_clist as $v) {$list[] = $v;} - $list = array_map("quoteandescape",$list); - echo implode(",", $list); - ?>); -<?php -$nickname_clist = array('#CCCCCC','#000000','#3636B2','#2A8C2A','#C33B3B','#C73232','#80267F','#66361F','#D9A641','#3DCC3D','#1A5555','#2F8C74','#4545E6','#B037B0','#4C4C4C','#959595'); -?> + $list = array(); foreach($bbcode_colorlist as $v) {$list[] = substr($v,1);} + $list = array_map("quoteandescape",$list); + echo implode(",", $list); + ?>); var pfc_nickname_color_list = Array(<?php - $list = array(); foreach($nickname_clist as $v) {$list[] = $v;} + $list = array(); foreach($nickname_colorlist as $v) {$list[] = $v;} $list = array_map("quoteandescape",$list); echo implode(",", $list); ?>); @@ -118,9 +112,8 @@ ); // convert bbcode color value list to a bbcode color url list -function get_bbcode_color_url($v) { return 'images/color_'.$v.'.gif'; } -$bbcode_clist = array_map("get_bbcode_color_url",$bbcode_clist); - +function get_bbcode_color_url($v) { return 'images/color_'.substr($v,1).'.gif'; } +$bbcode_clist = array_map("get_bbcode_color_url", $bbcode_colorlist); $fileurl_to_load = array_merge($fileurl_to_load, $bbcode_clist); foreach($fileurl_to_load as $f) { Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-08-25 19:37:08 UTC (rev 701) +++ trunk/src/pfcglobalconfig.class.php 2006-08-25 19:40:39 UTC (rev 702) @@ -70,7 +70,9 @@ var $showsmileys = true; var $btn_sh_whosonline = true; // display show/hide button for who is online var $btn_sh_smileys = true; // display show/hide button for smileys - + var $bbcode_colorlist = array("#FFFFFF","#000000","#000055","#008000","#FF0000","#800000","#800080","#FF5500","#FFFF00","#00FF00","#008080","#00FFFF","#0000FF","#FF00FF","#7F7F7F","#D2D2D2"); + var $nickname_colorlist = array('#CCCCCC','#000000','#3636B2','#2A8C2A','#C33B3B','#C73232','#80267F','#66361F','#D9A641','#3DCC3D','#1A5555','#2F8C74','#4545E6','#B037B0','#4C4C4C','#959595'); + var $theme = "default"; var $themepath = ""; var $themeurl = ""; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 19:37:13
|
Revision: 701 Author: kerphi Date: 2006-08-25 12:37:08 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=701&view=rev Log Message: ----------- [en] Bug fix: nicknames colors list were not correctly reloaded when al lwas assigned. [fr] Bug fix?\194?\160: la liste des couleurs des pseudonymes n'?\195?\169tait pas correctement recharg?\195?\169e lorsqu'elle ?\195?\169tait vide. Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-08-25 15:23:26 UTC (rev 700) +++ trunk/src/client/pfcclient.js 2006-08-25 19:37:08 UTC (rev 701) @@ -956,7 +956,7 @@ */ reloadColorList: function() { - this.colorlist = pfc_nickname_color_list; + this.colorlist = $A(pfc_nickname_color_list); }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 15:23:32
|
Revision: 700 Author: kerphi Date: 2006-08-25 08:23:26 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=700&view=rev Log Message: ----------- Small fix on the log proxy Modified Paths: -------------- trunk/src/proxys/log.class.php Modified: trunk/src/proxys/log.class.php =================================================================== --- trunk/src/proxys/log.class.php 2006-08-25 15:19:51 UTC (rev 699) +++ trunk/src/proxys/log.class.php 2006-08-25 15:23:26 UTC (rev 700) @@ -52,8 +52,9 @@ if ((file_exists($logfile) && is_writable($logpath)) || (!file_exists($logfile))) { - $fp = fopen($logfile, 'a'); + $fp = fopen($logfile, file_exists($logfile) ? 'a' : 'w'); fwrite($fp, $recipient." -> ".$param."\n"); + fclose($fp); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-25 15:19:56
|
Revision: 699 Author: kerphi Date: 2006-08-25 08:19:51 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=699&view=rev Log Message: ----------- [en] Bug fix: fix an infinit loop on windows platform when calculating relative path. [fr] Bug fix?\194?\160: r?\195?\169soud une boucle infinie sous windows lorsque je calculais les chemins relatifs. Modified Paths: -------------- trunk/src/pfctools.php Modified: trunk/src/pfctools.php =================================================================== --- trunk/src/pfctools.php 2006-08-23 16:36:49 UTC (rev 698) +++ trunk/src/pfctools.php 2006-08-25 15:19:51 UTC (rev 699) @@ -64,7 +64,10 @@ $res = ""; //echo $p1."<br>"; //echo $p2."<br>"; - while( $p1 != "" && $p1 != "/" && strpos($p2, $p1) !== 0) + while( $p1 != "" && + $p1 != "/" && // for unix root dir + !preg_match("/[a-z]\:\\\/i",$p1) && // for windows rootdir + strpos($p2, $p1) !== 0) { $res .= "../"; $p1 = dirname($p1); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-23 16:37:09
|
Revision: 698 Author: kerphi Date: 2006-08-23 09:36:49 -0700 (Wed, 23 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=698&view=rev Log Message: ----------- Add a basic log proxy which store all chat messages into a simple file (chat.log) Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php Added Paths: ----------- trunk/src/proxys/log.class.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-08-23 09:44:16 UTC (rev 697) +++ trunk/src/pfcglobalconfig.class.php 2006-08-23 16:36:49 UTC (rev 698) @@ -41,10 +41,11 @@ var $lockurl = "http://www.phpfreechat.net"; // this is the url where the users must be redirected when the chat is locked // these parameters are static (cached) - var $proxys = array("lock", "auth", "noflood", "censor"); + var $proxys = array("lock", "auth", "noflood", "censor", "log"); var $proxys_cfg = array("auth" => array(), "noflood" => array("limit"=>10,"delay"=>5), - "censor" => array("words"=>array("fuck","sex","bitch"),"replaceby"=>"*")); + "censor" => array("words"=>array("fuck","sex","bitch"),"replaceby"=>"*"), + "log" => array("path"=>"")); var $title = ""; // default is _pfc("My Chat") var $channels = array(); // the default joined channels when opening the chat var $frozen_channels = array(); // by default allow users to create there own channels Added: trunk/src/proxys/log.class.php =================================================================== --- trunk/src/proxys/log.class.php (rev 0) +++ trunk/src/proxys/log.class.php 2006-08-23 16:36:49 UTC (rev 698) @@ -0,0 +1,66 @@ +<?php +/** + * log.class.php + * + * Copyright © 2006 Stephane Gully <ste...@gm...> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ +require_once dirname(__FILE__)."/../pfci18n.class.php"; +require_once dirname(__FILE__)."/../pfcuserconfig.class.php"; +require_once dirname(__FILE__)."/../pfcproxycommand.class.php"; + +/** + * pfcProxyCommand_log + * this proxy will log "everything" from the chat + * @author Stephane Gully <ste...@gm...> + */ +class pfcProxyCommand_log extends pfcProxyCommand +{ + function run(&$xml_reponse, $p) + { + $cmdtocheck = array("send", "me", "notice"); + if ( in_array($this->name, $cmdtocheck) ) + { + $clientid = $p["clientid"]; + $param = $p["param"]; + $sender = $p["sender"]; + $recipient = $p["recipient"]; + $recipientid = $p["recipientid"]; + $c =& $this->c; + $u =& $this->u; + + $logpath = ($c->proxys_cfg[$this->proxyname]["path"] == "" ? $c->data_public_path : + $c->proxys_cfg[$this->proxyname]["path"]); + $logfile = $logpath."/".$c->getId()."/chat.log"; + + if (!is_writable($logpath)) + { + if ((file_exists($logfile) && is_writable($logpath)) || + (!file_exists($logfile))) + { + $fp = fopen($logfile, 'a'); + fwrite($fp, $recipient." -> ".$param."\n"); + } + } + } + + // forward the command to the next proxy or to the final command + $this->next->run($xml_reponse, $p); + } +} + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-23 09:44:21
|
Revision: 697 Author: kerphi Date: 2006-08-23 02:44:16 -0700 (Wed, 23 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=697&view=rev Log Message: ----------- Bug fix: the javascript labels were not translated. Modified Paths: -------------- trunk/src/client/pfcresource.js Modified: trunk/src/client/pfcresource.js =================================================================== --- trunk/src/client/pfcresource.js 2006-08-23 08:05:09 UTC (rev 696) +++ trunk/src/client/pfcresource.js 2006-08-23 09:44:16 UTC (rev 697) @@ -23,7 +23,10 @@ { var key = this.getLabel.arguments[0]; if (this.labels[key]) - return String.sprintf2(this.getLabel.arguments); //this.labels[key]; + { + this.getLabel.arguments[0] = this.labels[key]; + return String.sprintf2(this.getLabel.arguments); + } else return ""; }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-23 08:05:17
|
Revision: 696 Author: kerphi Date: 2006-08-23 01:05:09 -0700 (Wed, 23 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=696&view=rev Log Message: ----------- Bug fix: the height parameter was broken Modified Paths: -------------- trunk/src/phpfreechat.class.php Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2006-08-22 14:34:33 UTC (rev 695) +++ trunk/src/phpfreechat.class.php 2006-08-23 08:05:09 UTC (rev 696) @@ -150,6 +150,14 @@ $output .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"".$c->getFileUrlByProxy("style.css")."\" />\n"; } + // since php can't be embeded into the css themes files, special styles parameter must be setup here + if ($c->height != "") + { + $output .= "<style type=\"text/css\">"; + $output .= "div#pfc_channels_content { height: ".$c->height."; }"; + $output .= "</style>\n"; + } + if($return) return $output; else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-22 14:34:40
|
Revision: 695 Author: kerphi Date: 2006-08-22 07:34:33 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=695&view=rev Log Message: ----------- fix miniblune theme (width parameter) Modified Paths: -------------- trunk/demo/demo44_green_theme.php trunk/src/phpfreechat.class.php Modified: trunk/demo/demo44_green_theme.php =================================================================== --- trunk/demo/demo44_green_theme.php 2006-08-22 14:29:51 UTC (rev 694) +++ trunk/demo/demo44_green_theme.php 2006-08-22 14:34:33 UTC (rev 695) @@ -12,7 +12,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> - <title>Blune PHPFreeChat</title> + <title> PHPFreeChat - Green theme</title> <?php $chat->printJavascript(); ?> <?php $chat->printStyle(); ?> </head> Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2006-08-22 14:29:51 UTC (rev 694) +++ trunk/src/phpfreechat.class.php 2006-08-22 14:34:33 UTC (rev 695) @@ -170,7 +170,7 @@ $u =& pfcUserConfig::Instance(); - $output = "<div id=\"pfc_container\">"; + $output = "<div id=\"pfc_container\"".($c->width != "" ? "style=\"width:".$c->width."\"": "").">"; // Please do not remove these lines, // or keep a backling to http://www.phpfreechat on your partner page This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-22 14:29:58
|
Revision: 694 Author: kerphi Date: 2006-08-22 07:29:51 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=694&view=rev Log Message: ----------- fix the blune theme Added Paths: ----------- trunk/themes/blune/style.css Removed Paths: ------------- trunk/themes/blune/templates/ Added: trunk/themes/blune/style.css =================================================================== --- trunk/themes/blune/style.css (rev 0) +++ trunk/themes/blune/style.css 2006-08-22 14:29:51 UTC (rev 694) @@ -0,0 +1,59 @@ + +div#pfc_container { + color: #2A4064; + background-color: #BEC5D0; + background-image: url("proxy.php?p=default/images/shade.gif"); +} + +div.pfc_chat { + background-color:#CED4DF; +} + +div.pfc_message { + background-color:#CED4DF; +} + +div.pfc_oldmsg { + /*background-image: none; + background-color:#DCDEE4;*/ +} + +span.pfc_nick { + color:#2A4064; +} + +div.pfc_btn img:hover { + border: 1px solid #000; +} + +p#pfc_errors { + display: none; + margin-top: 5px; + padding: 2px; + height: 18px; + + border: #555 solid 1px; + color: #EC4A1F; + background-color: #BEC5D0; + text-align: center; + font-style: italic; + font-weight: bold; +} + +ul#pfc_channels_list li div { + background-color: #bec5d0; + border-bottom: 1px solid #bec5d0; +} +ul#pfc_channels_list li.selected div { + background-color: #CED4DF; + border-bottom: 1px solid #CED4DF; + color: #000; + font-weight: bold; +} +ul#pfc_channels_list li > div:hover { + background-color: #CED4DF; + border-bottom: 1px solid #CED4DF; +} +ul#pfc_channels_list li.selected > div:hover { + background-color: #CED4DF; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-22 14:26:37
|
Revision: 693 Author: kerphi Date: 2006-08-22 07:26:31 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=693&view=rev Log Message: ----------- mark "not yet working" demos Modified Paths: -------------- trunk/demo/index.php Modified: trunk/demo/index.php =================================================================== --- trunk/demo/index.php 2006-08-22 14:25:59 UTC (rev 692) +++ trunk/demo/index.php 2006-08-22 14:26:31 UTC (rev 693) @@ -72,8 +72,8 @@ <li><a href="demo32_show_last_messages-chat.php">demo32 - demo which show how to get the last posted messages (chat script)</a></li> <li><a href="demo32_show_last_messages-showlastmsg.php">demo32 - demo which show how to get the last posted messages (showlastmsg script)</a></li> - <li><a href="demo35_shared_memory.php">demo35 - demo which show how to use the shared memory container</a></li> - <li><a href="demo43_change_the_nicknames_colors.php">demo43 - demo which show how to change the nicknames automatic colors</a></li> + <li><a href="demo35_shared_memory.php">demo35 - demo which show how to use the shared memory container</a> (not yet working)</li> + <li><a href="demo43_change_the_nicknames_colors.php">demo43 - demo which show how to change the nicknames automatic colors</a> (not yet working)</li> </ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |