Home
last modified time | relevance | path

Searched refs:file (Results 151 – 162 of 162) sorted by path

1234567

/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php57 * Holds all relevant mapping tables, loaded from a seperate file on construct
100 $this->NP = unserialize(join('', file(dirname(__FILE__).'/npdata.ser')));
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php69 public $file; variable in SimplePie\\Content\\Type\\Sniffer
72 * Create an instance of the class with the input file
74 * @param Sniffer $file Input file
76 public function __construct($file) argument
78 $this->file = $file;
82 * Get the Content-Type of the specified file
88 if (isset($this->file->headers['content-type'])) {
89 if (!isset($this->file
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DLocator.php60 public $file; variable in SimplePie\\Locator
74 public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = []) argument
76 $this->file = $file;
83 if (class_exists('DOMDocument') && $this->file->body != '') {
88 $this->dom->loadHTML($this->file->body);
105 if ($this->is_feed($this->file)) {
106 return $this->file;
109 if ($this->file->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE) {
110 $sniffer = $this->registry->create(Content\Type\Sniffer::class, [$this->file]);
144 is_feed($file, $check_html = false) global() argument
[all...]
H A DMisc.php147 public static function error($message, $level, $file, $line) argument
176 @error_log("$note: $message in $file on line $line", 0);
2064 document.writeln('<embed src="'+player+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" quality="high" width="'+width+'" height="'+height+'" wmode="transparent" flashvars="file='+link+'&autostart=false&repeat='+loop+'&showdigits=true&showfsbutton=false"></embed>');
2078 * of the newest file.
2093 foreach (glob($root . '/SimplePie/*.php') as $file) {
2094 if (($mtime = filemtime($file)) > $time) {
H A DSanitize.php428 $file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']], $this->useragent, $this->force_fsockopen]);
429 $headers = $file->headers;
431 if ($file->success && ($file->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300))) {
432 if ($cache->set_data($image_url, ['headers' => $file->headers, 'body' => $file->body], $this->cache_duration)) {
H A DSimplePie.php385 * No file source
390 * Remote file source
395 * Local file source
400 * fsockopen() file source
405 * cURL file source
410 * file_get_contents() file source
466 public $file; variable in SimplePie\\SimplePie
604 * @var string Web-accessible path to the handler_image.php file.
798 * @param \SimplePie\File &$file
801 public function set_file(&$file) argument
3181 store_links(& $file, $hub, $self) global() argument
[all...]
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md64 Differences between Tar and Zip: Tars are compressed as a whole, while Zips compress each file individually. Therefore
67 The FileInfo class can be used to specify additional info like ownership or permissions when adding a file to
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php26 * Open an existing archive file for reading
28 * @param string $file
31 abstract public function open($file); argument
39 * Reopen the file with open() again if you want to do additional operations
49 * found in the archive file, similar to the --strip-components feature of GNU tar. This is triggered when
60 * The archive is closed afterwards. Reopen the file with open() again if you want to do additional operations
72 * Create a new archive file
74 * If $file is empty, the archive file will be created in memory
76 * @param string $file
78 create($file = '') global() argument
87 addFile($file, $fileinfo = '') global() argument
121 save($file) global() argument
[all...]
H A DFileInfo.php8 * stores meta data about a file in an Archive
32 * @param string $path The path of the file, can also be set later through setPath()
59 * Factory to build FileInfo from existing file or directory
61 * @param string $path path to a file on the local file system
75 $file = new FileInfo();
77 $file->setPath($path);
78 $file->setIsdir(is_dir($path));
79 $file->setMode(fileperms($path));
80 $file
[all...]
H A DTar.php19 protected $file = ''; variable in splitbrain\\PHPArchive\\Tar
47 * Open an existing TAR file for reading
49 * @param string $file
53 public function open($file) argument
55 $this->file = $file;
57 // update compression to mach file
59 $this->setCompression($this->complevel, $this->filetype($file));
62 // open file handles
64 $this->fh = @gzopen($this->file, 'r
233 create($file = '') global() argument
270 addFile($file, $fileinfo = '') global() argument
422 save($file) global() argument
692 filetype($file) global() argument
[all...]
H A DZip.php20 protected $file = ''; variable in splitbrain\\PHPArchive\\Zip
33 * You can call this function before adding each file to set differen compression levels
34 * for each file.
49 * Open an existing ZIP file for reading
51 * @param string $file
54 public function open($file) argument
56 $this->file = $file;
57 $this->fh = @fopen($this->file, 'rb');
59 throw new ArchiveIOException('Could not open file fo
271 create($file = '') global() argument
305 addFile($file, $fileinfo = '') global() argument
528 save($file) global() argument
[all...]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md9 jsstrip is a open-source library to remove whitespace and comments from a javascript file. You might want to do this to optimize size and performance, or to make a file harder to read. It typically makes 30-40% savings in file size.

1234567