summaryrefslogtreecommitdiff
path: root/ext/phar/TODO
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2007-01-30 20:58:14 +0000
committerMarcus Boerger <helly@php.net>2007-01-30 20:58:14 +0000
commit5f8256cfc1f314d7e9c04c6459a7f0c611cf9eb9 (patch)
treef929a7d45305b1da3d1582147c2f0e3f9f96994f /ext/phar/TODO
parent72ea46a29218a0a32095fddfe7aa6ef1feb7e927 (diff)
downloadphp-git-5f8256cfc1f314d7e9c04c6459a7f0c611cf9eb9.tar.gz
- Update TODO
- Add Phar::isFlushing() - Improve test
Diffstat (limited to 'ext/phar/TODO')
-rw-r--r--ext/phar/TODO8
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/phar/TODO b/ext/phar/TODO
index 6161f84e85..878a2b4477 100644
--- a/ext/phar/TODO
+++ b/ext/phar/TODO
@@ -28,8 +28,6 @@ Version 1.0.0
X Phar archive metadata Phar::setMetaData($metadata) Phar::getMetaData() [Greg]
X support rename() in stream wrapper [Greg]
* update docs to reflect changes in error handling
- * update docs to add setStub(), make note about not using it within begin()/commit()
- ? have setStub() throw an exception if used between begin()/commit() [erase if no]
* fix 011.phpt, 029.phpt for uncaught exceptions causing bad cleanup
Version 1.1.0
@@ -39,3 +37,9 @@ Version 1.1.0
* implement GPG signing
* ability to match files containing a metadata key opendir('phar://a.phar/?mime-type=image/jpeg')
or foreach ($p->match('mime-type', 'image/jpeg') as $file)
+ * Phar::copy($from, $to);
+ * Phar::delete($what)
+ * Phar::buildFromIterator($filename, Iterator $it, array $addinfo = null);
+ $addinfo = array('alias','flags','metadata','stub'...)
+ * Layout: Option to compress all content rather than single files.
+ That excludes stub and anifest haeder.