Home
last modified time | relevance | path

Searched +full:compression -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 30) sorted by relevance

12

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingCompression.php10 protected $choices = ['0']; // 0 = no compression, always supported
16 // populate _choices with the compression methods supported by this php installation
/dokuwiki/vendor/splitbrain/php-archive/
H A Dcomposer.json20 "ext-bz2": "For bz2 compression",
21 "ext-zlib": "For zlib compression"
H A DREADME.md5 needed for compression). It can create new files or extract existing ones.
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchiveIllegalCompressionException.php6 * Bad or unsupported compression settings requested
H A DZip.php29 * Set the compression level.
31 * Compression Type is ignored for ZIP
33 * You can call this function before adding each file to set differen compression levels
36 * @param int $level Compression level (0 to 9)
37 * @param int $type Type of compression to use ignored for ZIP
43 … throw new ArchiveIllegalCompressionException('Compression level should be between -1 and 9');
182 if ($header['compression'] == 0) {
194 // prepend compression header
195 if ($header['compression'] != 0) {
199 chr($header['compression']),
[all …]
H A DArchive.php17 * Set the compression level and type
19 * @param int $level Compression level (0 to 9)
20 * @param int $type Type of compression to use (use COMPRESS_* constants)
H A DTar.php8 * Creates or extracts Tar archives. Supports gz and bzip compression
32 * Sets the compression to use
34 * @param int $level Compression level (0 to 9)
35 * @param int $type Type of compression to use (use COMPRESS_* constants)
42 … throw new ArchiveIllegalCompressionException('Compression level should be between -1 and 9');
61 // update compression to mach file
270 // determine compression
713 * Checks if the given compression type is available and throws an exception if not
730 * Guesses the wanted compression from the given file
/dokuwiki/_test/core/
H A DDokuWikiTest.php97 if($conf['compression'] == 'bz2' && !DOKU_HAS_BZIP) {
98 $conf['compression'] = 'gz';
100 if($conf['compression'] == 'gz' && !DOKU_HAS_GZIP) {
101 $conf['compression'] = 0;
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md47 const foo = 'No compression here'; // this comment will also stay
/dokuwiki/inc/Sitemap/
H A DMapper.php134 return $conf['compression'] === 'bz2' || $conf['compression'] === 'gz';
/dokuwiki/inc/
H A Dinit.php176 // enable gzip compression if supported
184 // Disable compression when a (compressed) sitemap might be delivered
226 if ($conf['compression'] == 'bz2' && !DOKU_HAS_BZIP) {
227 $conf['compression'] = 'gz';
229 if ($conf['compression'] == 'gz' && !DOKU_HAS_GZIP) {
230 $conf['compression'] = 0;
H A Dhttputils.php54 // don't produce output, even if compression is on
H A Dpageutils.php353 if ($conf['compression']) {
361 $fn .= '.' . $conf['compression'];
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php48 …* 'compression' - no additional parameters. checks php installation supports possible compressio…
243 $meta['compression'] = ['compression', '_caution' => 'warning'];
/dokuwiki/_test/tests/inc/
H A Dcommon_pageinfo.test.php152 if ($conf['compression']) {
153 … //compression in $info['filepath'] determined by wikiFN depends also on if the page exist
154 $ext .= "." . $conf['compression']; //.gz or .bz2
/dokuwiki/vendor/geshi/geshi/
H A Dbuild.xml54 <tar destfile="dist/${gzfile}" prefix="${fileprefix}" compression="gzip">
58 <tar destfile="dist/${bz2file}" prefix="${fileprefix}" compression="bzip2">
/dokuwiki/conf/
H A Ddokuwiki.php101 $conf['jpg_quality'] = '70'; //quality of compression when scaling jpg images (0-100)
152 $conf['compression'] = 'gz'; //compress old revisions: (0: off) ('gz': gnuzip) ('bz2': …
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dsshconfig.php56 "ClearAllForwardings", "Compression", "ConnectionAttempts",
H A Dinno.php113 … 'ChangesAssociations','ChangesEnvironment','Check','CodeFile','Comment','Compression','CopyMode',
H A Dabap.php288 'compression off',
289 'compression on',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php307 // point compression is being used
312 // point compression is not being used
/dokuwiki/vendor/composer/
H A Dinstalled.json673 "ext-bz2": "For bz2 compression",
676 "ext-zlib": "For zlib compression"
/dokuwiki/
H A Dcomposer.lock652 "ext-bz2": "For bz2 compression",
655 "ext-zlib": "For zlib compression"
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php84 * Compression Types
88 * No compression
92 * zlib compression
321 * Compression Algorithms: Client to Server
329 * Compression Algorithms: Server to Client
1059 * Compression method
1073 * Compression context
1087 * Regenerate Compression Context
1776 …throw new NoSupportedAlgorithmsException('No compatible server to client compression algorithms fo…
1783 …throw new NoSupportedAlgorithmsException('No compatible client to server compression algorithms fo…
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBinary.php285 …throw new \RuntimeException('Point compression on binary finite field elliptic curves is not suppo…

12