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/
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/
Dcomposer.json20 "ext-bz2": "For bz2 compression",
21 "ext-zlib": "For zlib compression"
DREADME.md5 needed for compression). It can create new files or extract existing ones.
/dokuwiki/vendor/splitbrain/php-archive/src/
DArchiveIllegalCompressionException.php6 * Bad or unsupported compression settings requested
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 …]
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)
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/
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/
DREADME.md47 const foo = 'No compression here'; // this comment will also stay
/dokuwiki/inc/Sitemap/
DMapper.php134 return $conf['compression'] === 'bz2' || $conf['compression'] === 'gz';
/dokuwiki/inc/
Dinit.php171 // enable gzip compression if supported
179 // Disable compression when a (compressed) sitemap might be delivered
221 if ($conf['compression'] == 'bz2' && !DOKU_HAS_BZIP) {
222 $conf['compression'] = 'gz';
224 if ($conf['compression'] == 'gz' && !DOKU_HAS_GZIP) {
225 $conf['compression'] = 0;
Dhttputils.php54 // don't produce output, even if compression is on
Dpageutils.php352 if ($conf['compression']) {
360 $fn .= '.' . $conf['compression'];
/dokuwiki/lib/plugins/config/settings/
Dconfig.metadata.php48 …* 'compression' - no additional parameters. checks php installation supports possible compressio…
243 $meta['compression'] = ['compression', '_caution' => 'warning'];
/dokuwiki/_test/tests/inc/
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/
Dbuild.xml54 <tar destfile="dist/${gzfile}" prefix="${fileprefix}" compression="gzip">
58 <tar destfile="dist/${bz2file}" prefix="${fileprefix}" compression="bzip2">
/dokuwiki/conf/
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/
Dsshconfig.php56 "ClearAllForwardings", "Compression", "ConnectionAttempts",
Dinno.php113 … 'ChangesAssociations','ChangesEnvironment','Check','CodeFile','Comment','Compression','CopyMode',
Dabap.php288 'compression off',
289 'compression on',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
DCommon.php307 // point compression is being used
312 // point compression is not being used
/dokuwiki/
Dcomposer.lock645 "ext-bz2": "For bz2 compression",
648 "ext-zlib": "For zlib compression"
/dokuwiki/vendor/composer/
Dinstalled.json666 "ext-bz2": "For bz2 compression",
669 "ext-zlib": "For zlib compression"
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
DBinary.php285 …throw new \RuntimeException('Point compression on binary finite field elliptic curves is not suppo…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
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
1771 …throw new NoSupportedAlgorithmsException('No compatible server to client compression algorithms fo…
1778 …throw new NoSupportedAlgorithmsException('No compatible client to server compression algorithms fo…
[all …]

12