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 26) sorted by path

12

/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': bzip)
/dokuwiki/inc/Sitemap/
H A DMapper.php134 return $conf['compression'] === 'bz2' || $conf['compression'] === 'gz';
/dokuwiki/inc/
H A Dhttputils.php54 // don't produce output, even if compression is on
H A Dinit.php153 // enable gzip compression if supported
161 // Disable compression when a (compressed) sitemap might be delivered
214 if ($conf['compression'] == 'bz2' && !DOKU_HAS_BZIP) {
215 $conf['compression'] = 'gz';
217 if ($conf['compression'] == 'gz' && !DOKU_HAS_GZIP) {
218 $conf['compression'] = 0;
H A Dpageutils.php352 if ($conf['compression']) {
360 $fn .= '.' . $conf['compression'];
/dokuwiki/lib/exe/
H A Dcss.php591 // number compression
/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/lib/plugins/config/settings/
H A Dconfig.metadata.php48 * 'compression' - no additional parameters. checks php installation supports possible compression alternatives
243 $meta['compression'] = ['compression', '_caution' => 'warning'];
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1187 * Determines the compression type from the file extension
/dokuwiki/vendor/composer/
H A Dinstalled.json614 "ext-bz2": "For bz2 compression",
617 "ext-zlib": "For zlib compression"
/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/vendor/geshi/geshi/src/geshi/
H A Dabap.php288 'compression off',
289 'compression on',
H A Dcobol.php129 'COMP-4', 'COMP-5', 'COMP-6', 'COMP-X', 'COMPRESSION',
H A Dinno.php113 'ChangesAssociations','ChangesEnvironment','Check','CodeFile','Comment','Compression','CopyMode',
H A Djava5.php349 'Chromaticity', 'ColorSupported', 'Compression', 'Copies', 'CopiesSupported', 'DateTimeAtCompleted', 'DateTimeAtCreation', 'DateTimeAtProcessing', 'Destination', 'DocumentName', 'Fidelity', 'Finishings', 'JobHoldUntil', 'JobImpressions', 'JobImpressionsCompleted', 'JobImpressionsSupported', 'JobKOctets', 'JobKOctetsProcessed', 'JobKOctetsSupported', 'JobMediaSheets', 'JobMediaSheetsCompleted', 'JobMediaSheetsSupported', 'JobMessageFromOperator', 'JobName', 'JobOriginatingUserName', 'JobPriority', 'JobPrioritySupported', 'JobSheets', 'JobState', 'JobStateReason', 'JobStateReasons', 'Media', 'MediaName', 'MediaPrintableArea', 'MediaSize', 'MediaSize.Engineering', 'MediaSize.ISO', 'MediaSize.JIS', 'MediaSize.NA', 'MediaSize.Other', 'MediaSizeName', 'MediaTray', 'MultipleDocumentHandling', 'NumberOfDocuments', 'NumberOfInterveningJobs', 'NumberUp', 'NumberUpSupported', 'OrientationRequested', 'OutputDeviceAssigned', 'PDLOverrideSupported', 'PageRanges', 'PagesPerMinute', 'PagesPerMinuteColor',
H A Dmysql.php223 // Encryption and Compression Functions
H A Dsshconfig.php56 "ClearAllForwardings", "Compression", "ConnectionAttempts",
H A Dtsql.php186 'COLUMN_SET', 'COMPATIBILITY_LEVEL', 'COMPRESSION', 'CONCAT_NULL_YIELDS_NULL', 'CONTENT', 'CONTRACT', 'CONVERSATION', 'CPU', 'CPU_ID', 'CREDENTIAL',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php82 * Compression Types
86 * No compression
90 * zlib compression
315 * Compression Algorithms: Client to Server
323 * Compression Algorithms: Server to Client
1042 * Compression method
1056 * Compression context
1070 * Regenerate Compression Context
1704 throw new NoSupportedAlgorithmsException('No compatible server to client compression algorithms found');
1711 throw new NoSupportedAlgorithmsException('No compatible client to server compression algorithm
[all...]
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md5 needed for compression). It can create new files or extract existing ones.
/dokuwiki/vendor/splitbrain/php-archive/src/
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 DArchiveIllegalCompressionException.php6 * Bad or unsupported compression settings requested
H A DTar.php8 * Creates or extracts Tar archives. Supports gz and bzip compression
28 * Sets the compression to use
30 * @param int $level Compression level (0 to 9)
31 * @param int $type Type of compression to use (use COMPRESS_* constants)
38 throw new ArchiveIllegalCompressionException('Compression level should be between -1 and 9');
57 // update compression to mach file
240 // determine compression
666 * Checks if the given compression type is available and throws an exception if not
683 * Guesses the wanted compression from the given file
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...]

12