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/ |
D | SettingCompression.php | 10 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/ |
D | composer.json | 20 "ext-bz2": "For bz2 compression", 21 "ext-zlib": "For zlib compression"
|
D | README.md | 5 needed for compression). It can create new files or extract existing ones.
|
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | ArchiveIllegalCompressionException.php | 6 * Bad or unsupported compression settings requested
|
D | Zip.php | 29 * 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 …]
|
D | Archive.php | 17 * 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)
|
D | Tar.php | 8 * 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/ |
D | DokuWikiTest.php | 97 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/ |
D | README.md | 47 const foo = 'No compression here'; // this comment will also stay
|
/dokuwiki/inc/Sitemap/ |
D | Mapper.php | 134 return $conf['compression'] === 'bz2' || $conf['compression'] === 'gz';
|
/dokuwiki/inc/ |
D | init.php | 171 // 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;
|
D | httputils.php | 54 // don't produce output, even if compression is on
|
D | pageutils.php | 352 if ($conf['compression']) { 360 $fn .= '.' . $conf['compression'];
|
/dokuwiki/lib/plugins/config/settings/ |
D | config.metadata.php | 48 …* 'compression' - no additional parameters. checks php installation supports possible compressio… 243 $meta['compression'] = ['compression', '_caution' => 'warning'];
|
/dokuwiki/_test/tests/inc/ |
D | common_pageinfo.test.php | 152 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/ |
D | build.xml | 54 <tar destfile="dist/${gzfile}" prefix="${fileprefix}" compression="gzip"> 58 <tar destfile="dist/${bz2file}" prefix="${fileprefix}" compression="bzip2">
|
/dokuwiki/conf/ |
D | dokuwiki.php | 101 $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/ |
D | sshconfig.php | 56 "ClearAllForwardings", "Compression", "ConnectionAttempts",
|
D | inno.php | 113 … 'ChangesAssociations','ChangesEnvironment','Check','CodeFile','Comment','Compression','CopyMode',
|
D | abap.php | 288 'compression off', 289 'compression on',
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
D | Common.php | 307 // point compression is being used 312 // point compression is not being used
|
/dokuwiki/ |
D | composer.lock | 645 "ext-bz2": "For bz2 compression", 648 "ext-zlib": "For zlib compression"
|
/dokuwiki/vendor/composer/ |
D | installed.json | 666 "ext-bz2": "For bz2 compression", 669 "ext-zlib": "For zlib compression"
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
D | Binary.php | 285 …throw new \RuntimeException('Point compression on binary finite field elliptic curves is not suppo…
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
D | SSH2.php | 84 * 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