| /plugin/odp/ |
| D | ZipLib.class.php | 20 $zip = @fopen($zip_name, 'rb'); 21 if(!$zip) return(0); 22 $centd = $this->ReadCentralDir($zip,$zip_name); 24 @rewind($zip); 25 @fseek($zip, $centd['offset']); 29 $header = $this->ReadCentralFileHeaders($zip); 177 $ok = 0; $zip = @fopen($zn,'rb'); 178 if(!$zip) return(-1); 179 $cdir = $this->ReadCentralDir($zip,$zn); 190 @fseek($zip, $pos_entry); [all …]
|
| /plugin/siteexport/inc/ |
| D | filewriter.php | 103 $zip = new ZipArchive(); 104 if (!$zip) { 109 $code = $zip->open($ZIPFILE, ZipArchive::CREATE); 114 $zip->addFile($FILE, $NAME); 115 $zip->close(); 134 $zip = new ZipArchive(); 135 $code = $zip->open($this->functions->settings->zipFile, ZipArchive::CREATE); 137 $exists = !($zip->statName($NAME) === FALSE); 138 $zip->close(); 206 $zip = new ZipArchive(); [all …]
|
| /plugin/zwidoku/ |
| H A D | getEncyc.php | 151 $zip = new ZipArchive; variable 152 $isZipOpen=$zip->open($filename, ZipArchive::CREATE); 162 $zip->addFromString('article.dokuwiki', $articleWiki); 174 $zip->addFile($xfile, $destination); 179 $zip->addFile($dir_changes, $changes); 180 $zip->addFile($dir_indexed, $indexed); 181 $zip->addFile($dir_meta, $meta); 186 $zip->addFile($css_file, "data/css/common.css"); 188 $zip->addFile($css_file, "data/css/fonts.css"); 190 $zip->addFile($css_file, "data/css/doku.css"); [all …]
|
| H A D | open_file.php | 77 $zip = new ZipArchive; variable 78 $zip->open( $target_file); 79 $json=$zip->getFromName('metadata.json'); 88 $json1=$zip->getFromName('plugins.json'); 97 $json2=$zip->getFromName('metadata.json'); 105 $article=$zip->getFromName('article.dokuwiki'); 147 $zip->extractTo($out_dir); 194 $zip->close();
|
| /plugin/routeplaner/syntax/ |
| D | routenplaner.php | 124 if (trim($zip, " \t\n") != '') { 125 $zip = trim($zip, " \t\n"); 127 $zip = ' ';//'missing zip'; 140 return array($company,$street,$zip,$town,$country); 178 @$zip = $data[2]; 188 $ret .= '<input type="hidden" name="toplz" value="'.$zip.'" />'; 211 …$ret .= '<td><input type="TEXT" name="toplz_" value="'.$zip.'" tabindex="6" size="5" style="width:… 251 @$zip = $data[2]; 327 $txt .=' <input id="toplz" name="toplz" value="'.$zip.'" size="3" type="hidden">'; 332 …$txt .=' <p style="font-size: 12px; margin: 0 5px !important;">'.$country.' - '.$zip.' '.$town.'…
|
| /plugin/latexport/helpers/ |
| D | archive_helper_zip.php | 8 private $zip; variable in ArchiveHelperZip 28 $this->zip = new ZipArchive(); 29 $this->zip->open($this->temporaryZipFilename, ZipArchive::OVERWRITE); 51 $this->zip->addFromString($this->currentFilename, $this->currentContent); 59 $this->zip->addFromString($filename, $content); 67 $this->zip->close();
|
| /plugin/gtime/ |
| D | renderer.php | 79 $zip = new ZipArchive(); 81 $result = $zip->open($filetemp, ZipArchive::CREATE); 87 $zip->addFile($pagefile,$filerev); 88 $zip->addFile($pagefile.".gtts",$filerev.".gtts"); 89 $zip->addfromString("README.txt",$GT_README); 90 $zip->close();
|
| /plugin/dokutexit/ |
| D | Makefile | 26 all : tgz zip 28 zip: clean $(FILES) $(DIRS) target 32 @zip -rq $(NAME).zip --exclude \*~ -- $(NAME) 41 @rm -rf $(NAME).tgz $(NAME).zip $(NAME)
|
| /plugin/odtplus2dw/ |
| D | Makefile | 5 zip: target 6 cd .. ; zip -r /tmp/monextension.zip $(DIR) --exclude $(DIR)/.git/\* 7 @echo ZIP dans /tmp/monextension.zip
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CivicInfo/ |
| D | SimpleAddressType.php | 49 public $zip; variable in Google\\Service\\CivicInfo\\SimpleAddressType 138 public function setZip($zip) argument 140 $this->zip = $zip; 147 return $this->zip;
|
| /plugin/dev/www/ |
| D | PluginWizard.php | 48 $zip = new Zip(); 49 $zip->setCompression(9); 50 $zip->create(); 52 $zip->addData($base . '/' . $file, $content); 55 return $zip->getArchive();
|
| /plugin/epub/scripts/ |
| D | epub_utils.php | 293 static $zip; 295 if($path && !$zip) { 296 $zip = new ZipArchive; 297 $zip->open($path); 300 return $zip; 304 static $zip; 307 if(!$zip) { 308 $zip = epub_zip_handle(); 309 if($zip) $oebps = epub_get_oebps(); 311 if($zip) { [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Appengine/ |
| D | Deployment.php | 76 public function setZip(ZipInfo $zip) argument 78 $this->zip = $zip; 85 return $this->zip;
|
| /plugin/openid/ |
| D | Makefile | 10 ZIP = zip 19 ZIP_NAME = $(ARCHIVE_NAME)-$(VERSION).zip 22 all: export zip tar 36 zip: target
|
| /plugin/toolbox/ |
| D | extension.php | 62 $zip = new ZipArchive(); variable 63 if($zip->open($filename, ZipArchive::CREATE) !== true) { 69 $zip->addFile($file, basename($file)); 72 $zip->close();
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/ |
| H A D | FirefoxProfile.php | 154 $zip = new ZipArchive(); 155 $zip->open($temp_zip, ZipArchive::CREATE); 172 $zip->addFile($name, $path); 174 $zip->close(); 277 $zip = new ZipArchive(); 279 if ($zip->open($xpi)) { 280 $zip->extractTo($target_dir); 281 $zip->close();
|
| /plugin/tuxquote/ |
| D | README | 21 … enter "https://github.com/eldougo/dokuwiki_plugin_tuxquote/archive/master.zip" in the plugin URL … 25 - Download the zip file from https://github.com/eldougo/dokuwiki_plugin_tuxquote/archive/master.zip 28 $ wget https://github.com/eldougo/dokuwiki_plugin_tuxquote/archive/master.zip 29 $ sudo mv master.zip <wiki_root>/lib/plugins/ 30 $ sudo unzip master.zip 32 $ sudo rm master.zip
|
| /plugin/tline/ |
| D | README.txt | 20 1. Unzip either timeline_source.zip or timeline_libraries.zip into 23 timeline_source.zip includes complete source and example files. Use your 27 timeline_libraries.zip is the minimum install of the bundled js libraries, 31 Jetty (use the timeline_source.zip file) 33 b) unzip timeline_source.zip to an install directory
|
| /plugin/pgn4web/pgn4web/ |
| D | release-pgn4web.sh | 33 zip -9r "$pgn4webFilename" "$pgn4webDirectory" -x *.svn/* -x "$pgn4webDirectory"/jsl.conf -x "$pgn4… 36 …zip -9r "$pgn4webFilename" "$pgn4webDirectory"/live-games-app* "$pgn4webDirectory"/live/* -x *.svn… 38 …zip -9r "$pgn4webFilename" "$pgn4webDirectory"/live/*.html "$pgn4webDirectory"/live/*.pgn "$pgn4we…
|
| /plugin/distribute/ |
| D | action.php | 44 elseif(file_exists(DOKU_PLUGIN.'plugin/inc/zip.lib.php')){//older dokuwiki version 45 require_once DOKU_PLUGIN.'plugin/inc/zip.lib.php'; 49 …ure the dependency Plugin Manager plugin is installed, and that plugin/inc/zip.lib.php or ZipLib.c…
|
| /plugin/wordimport/docx/ |
| D | DocX.php | 38 $zip = new Zip(); 39 $zip->open($docx); 42 $zip->extract($this->tmpdir); 43 $zip->close();
|
| /plugin/codebuttonmodbash/ |
| D | README.MD | 18 https://github.com/user9209/dokuwiki_plugin_codebutton/archive/master.zip 27 https://github.com/RottenRonnie/dokuwiki_plugin_codebutton/archive/master.zip 30 https://github.com/AnonTester/dokuwiki_plugin_codebutton/archive/master.zip 49 - **plugin.info.txt** for easy setup using a named zip file
|
| /plugin/mediathumbnails/ |
| H A D | thumb_engines.php | 122 $zip = new ZipArchive; 123 if ($zip->open($this->getSourceFilepath()) !== true) { 134 if ($zip->locateName($thumbnail_path) !== false) { 141 $fp = $zip->getStream($thumbnail_path);
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/ |
| D | Dockerfile | 10 # Install zip extension for PHP 13 zip \ 15 && docker-php-ext-install zip
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | zip.js | 20 var zip = baseRest(unzip); variable 22 module.exports = zip;
|