summaryrefslogtreecommitdiffstats
path: root/system/libraries/Zip.php
AgeCommit message (Collapse)AuthorFilesLines
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2017-01-19More byte-safetyAndrey Andreev1-5/+5
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-10-28Improve byte-safetyAndrey Andreev1-13/+61
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-04-04Matched root_path's slashes with the name being replacedKyle Gadd1-1/+1
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev1-1/+1
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-13/+13
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-12-04Zip library changes related to PR #3341Andrey Andreev1-14/+10
- Drop compression_encoding option, it requires PHP 5.4. - Change default compression_level to 2 as this was previously the hard-coded default. - Improve on the doc changes made in the PR.
2014-11-19Exposed the arguments to gzcompress by adding public variables to the Zip ↵garrettair1-1/+14
library.
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-14/+25
2014-06-03Fix a potential undefined variable errorAndrey Andreev1-1/+1
2014-03-14Fixed filemtimeAhmad Anbar1-1/+1
2014-03-13Partially revert PR #2190Andrey Andreev1-1/+1
The core shouldn't depend on constants that are not defined by itself
2014-02-26Don't use error suppression on is_dir(), file_exists()Andrey Andreev1-5/+6
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-01-28Fix #2844Andrey Andreev1-1/+1
2014-01-15Fix #2822: Incorrect usage of fwrite()Andrey Andreev1-2/+10
We only used to check (and not always) if the return value of fwrite() is boolean FALSE, while it is possible that the otherwise returned bytecount is less than the length of data that we're trying to write. This allowed incomplete writes over network streams and possibly a few other edge cases.
2014-01-08Optimize get_instance() calls/assignmentsAndrey Andreev1-2/+1
2014-01-07Add ability for changing the original file path/name in CI_Zip::read_file()Andrey Andreev1-11/+14
Supersedes PR #884
2013-09-23[ci skip] Update Zip library docblocksAndrey Andreev1-19/+19
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-12-17Merge pull request #2077 from AndrewPodner/developAndrey Andreev1-1/+1
update for Issue #2064 - take 2
2012-12-17update for Issue #2064 (changed docblocks which return $this or only call a ↵Andrew Podner1-1/+1
method that returns $this to @return CI_DB_class_name)
2012-12-17Fix 2073Andrey Andreev1-1/+1
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-1/+2
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-06-16Really important space fix :)vkeranov1-1/+1
2012-05-17Clean up the librariesAndrey Andreev1-6/+6
2012-04-27Fixed Cart, Migration, Parser and Zip librariesTimothy Warren1-0/+40
2012-04-04Update system/libraries/Zip.phpTobias Tschech1-2/+1
2012-04-04Added Windows path compatibility to function read_dirtschechniker1-4/+5
2012-03-26Merge upstream branchAndrey Andreev1-1/+1
2012-03-26Clear some spaces and fix some inconsistencies in the Zip library and ↵Andrey Andreev1-4/+4
system/helpers/ files
2012-03-20Remove EOF newlineAndrey Andreev1-1/+1
2012-03-20Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-zipAndrey Andreev1-1/+1
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-02-29Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-zipAndrey Andreev1-1/+1
2012-02-29Minor clean-upAndrey Andreev1-3/+2
2012-02-02Fix some comment blocksAndrey Andreev1-15/+23
2012-01-24Revert a space in the license agreement :)Andrey Andreev1-1/+1
2012-01-20Some more cleaningAndrey Andreev1-16/+10
2012-01-10Some quotesAndrey Andreev1-2/+2
2012-01-08Some more misc. stuffAndrey Andreev1-24/+12
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-27Remove access lines from method descriptionsAndrey Andreev1-10/+0
2011-12-26Update with suggestions from gaker & dixyAndrey Andreev1-5/+8
2011-12-25Improve the Zip libraryAndrey Andreev1-36/+34