| /plugin/upgrade/myvendor/splitbrain/php-archive/ |
| H A D | README.md | 1 PHPArchive - Pure PHP ZIP and TAR handling 4 This library allows to handle new ZIP and TAR archives without the need for any special PHP extensi… 19 The usage for the Zip and Tar classes are basically the same. Here are some 28 use splitbrain\PHPArchive\Tar; 30 // To list the contents of an existing TAR archive, open() it and use 32 $tar = new Tar(); 33 $tar->open('myfile.tgz'); 34 $toc = $tar->contents(); 37 // To extract the contents of an existing TAR archive, open() it and use 39 $tar = new Tar(); [all …]
|
| H A D | composer.json | 3 "description": "Pure-PHP implementation to read and write TAR and ZIP archives", 4 "keywords": ["zip", "tar", "archive", "unpack", "extract", "unzip"],
|
| /plugin/backup/ |
| D | admin.php | 3 use splitbrain\PHPArchive\Tar; alias 101 $backups = glob(dirname(mediaFN("$ns:foo")) . '/*.tar*'); 262 $tarfilename = 'dw-backup-' . date('Ymd-His') . '.tar'; 283 $tar = new Tar(); 284 $tar->create($fn); 293 $cmd($tar, $logger); 299 $tar->close(); 303 * Adds the given directory recursively to the tar archive 305 * @param Tar $tar 313 protected function addDirectoryToTar(Tar $tar, $dir, $as, $logger = null, $filter = null) argument [all …]
|
| /plugin/openid/ |
| D | Makefile | 2 # - all: export the files from Git, produce a ZIP and a TAR archive. 5 # - tar: produce a TAR archive. 11 TAR = tar macro 20 TAR_NAME = $(ARCHIVE_NAME)-$(VERSION).tar.gz 22 all: export zip tar 41 tar: target 42 @echo "Creating the TAR archive..." 43 @(cd $(BUILD) && $(TAR) -czf $(TAR_NAME) $(NAME)) 44 @echo "TAR archive done."
|
| /plugin/quickstats/scripts/ |
| D | get_geocity2.php | 45 …axmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=J7if1Q83hu4tiUVS&suffix=tar.gz"; 46 // "https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz"; 48 $url = "http://epicurus.bz/GeoLite2-City.tar.gz"; 49 // $url = "https://mturner.org/userfiles/GeoLite2-City.tar.gz"; 53 $gzfile = $this->tempdir . '/GeoLite2-City.tar.gz'; 87 if(preg_match("#GeoLite2-City.tar.gz#", $file,$matches)) { 90 $tar = str_replace('.gz', "", $file); 91 $this->qs_say($this->helper->getLang('tar_extracted'), $tar); 92 if(file_exists($tar)){ 93 $this->qs_say($this->helper->getLang('file_exists'),"\n$file\n$tar\n"); [all …]
|
| /plugin/mediasyntax/tools/ |
| D | update-website.sh | 3 # This will update www.staerk.de/files/mediasyntax.tar.gz 10 tar cvzf mediasyntax.tar.gz mediasyntax/* && scp mediasyntax.tar.gz www.staerk.de:/var/www/staerk.d…
|
| /plugin/asciidocjs/node_modules/jake/lib/ |
| D | package_task.js | 110 @description If set to true, uses the `tar` utility to create 118 @description If set to true, uses the `tar` utility to create 119 a gzip .tar.gz archive of the package 126 @description If set to true, uses the `tar` utility to create 159 @type {String='tar'} 160 @description The shell-command to use for creating tar archives. 162 this.tarCommand = 'tar'; 189 @description Equivalent to the '-C' command for the `tar` and `jar` 212 Tar: { property 215 cmd: 'tar' [all …]
|
| /plugin/freechat/phpfreechat/misc/ |
| D | tarSource | 32 echo "-> creating $NAME.tar.gz" 33 tar czfp $NAME.tar.gz ./$NAME 39 #echo "-> creating $PFCSETUPNAME.tar.gz" 55 #echo "$NAME.tar.gz" > $PFCSETUPNAME/archivename 57 #tar czfp $PFCSETUPNAME.tar.gz ./$PFCSETUPNAME
|
| /plugin/zip/pear/File/Archive/Writer/ |
| D | Tar.php | 5 * Write the files as a TAR archive 28 * @version CVS: $Id: Tar.php,v 1.18 2005/06/02 12:24:43 vincentlascaux Exp $ 35 * Write the files as a TAR archive 47 * Creates the TAR header for a file 77 "$filename is too long to be put in a tar archive" 118 * Creates the TAR footer for a file 120 * @param int $size the size of the data that has been written to the TAR 205 function getMime() { return "application/x-tar"; } 210 * A tar archive cannot contain files with name of folders longer than 255 chars
|
| /plugin/zip/pear/File/ |
| D | Archive.php | 149 * tar, zip, gz or tgz) will be considered as directories (up to a depth of 160 * b.tar (archive that contains the following files) 169 * h.tar (archive that contains the following files) 177 * b.tar 179 * dir2/dir3/h.tar 185 * myBaseDir/b.tar 187 * myBaseDir/dir2/dir3/h.tar 194 * b.tar/c.txt 195 * b.tar/d.tgz/e.txt 196 * b.tar/d.tgz/dir1/f.txt [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.archive.tar.php | 11 // module.archive.tar.php // 12 // module for analyzing TAR files // 34 $info['fileformat'] = 'tar'; 35 $info['tar']['files'] = array(); 86 // it's the end of the tar-file... 98 // Protect against tar-files with garbage at the end 102 $info['tar']['file_details'][$name] = array ( 120 …$info['tar']['files'] = getid3_lib::array_merge_clobber($info['tar']['files'], getid3_lib::CreateD…
|
| /plugin/dataplot/ |
| D | make-release | 13 tar cvzf ${my_package}.tar.gz ${tar_cmds} ${my_package}/. 14 gpg --armor --sign --detach-sig --default-key FA5E6F3E ${my_package}.tar.gz
|
| /plugin/dir/ |
| D | make_tgz.sh | 19 # Create the tar file 22 tar --create -z --verbose --exclude 'manager.dat' --file "${plugin_tgz_file}" "./dir" 28 tar --list --file "${plugin_tgz_file}"
|
| /plugin/backup/lang/de/ |
| D | intro.txt | 3 …tar]]-Datei erzeugen, die entweder mit [[wp>bzip2]] oder [[wp>gzip]] komprimiert wird, welche Sie … 8 …t einen Namen nach dem Format //dw-backup-JahrMonatTag-StundeMinuteSekunde.tar.bz2//, mit der Zeit…
|
| /plugin/upgrade/myvendor/splitbrain/php-archive/src/ |
| H A D | Tar.php | 6 * Class Tar 8 * Creates or extracts Tar archives. Supports gz and bzip compression 16 class Tar extends Archive class 51 * Open an existing TAR file for reading 62 if ($this->comptype == Tar::COMPRESS_AUTO) { 83 * Read the contents of a TAR archive 106 * Read the contents of a TAR archive and return each entry using yield 160 * Extract an existing TAR archive 163 …* found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered w… 255 * Create a new TAR file [all …]
|
| /plugin/elwikiupgrade/ |
| D | VerboseTarLib.class.php | 3 * This is a copy of DokuWiki's core tar library 27 * Open an existing TAR file for reading 54 * Read the contents of a TAR archive 59 * checksum Tar Checksum of the file 91 * Extract an existing TAR archive 94 …* found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered w… 202 * Create a new TAR file 204 * If $file is empty, the tar file will be created in memory 238 * Add a file to the current TAR archive using an existing file in the filesystem 277 * Add a file to the current TAR archive using the given $data as content [all …]
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Tar.php | 5 * Read a tar archive 28 * @version CVS: $Id: Tar.php,v 1.29 2005/07/11 11:53:53 vincentlascaux Exp $ 35 * Read a tar archive 46 * In TAR reader, indexes 2, 4, 5, 7, 9 are set 58 * A TAR file is made of chunks of 512 bytes. If 512 does not 228 return PEAR::raiseError('Unexpected end of tar archive'); 240 require_once "File/Archive/Writer/Tar.php"; 337 require_once "File/Archive/Writer/Tar.php";
|
| /plugin/quickstats/GEOIP/ |
| D | get_geocity2.php | 21 $url = "https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz"; 22 $data_file = 'GeoLite2-City.tar'; 23 $gzfile = 'GeoLite2-City.tar.gz';
|
| /plugin/upgrade/.github/workflows/ |
| H A D | fullUpgrade.yml | 27 …dokuwiki/dokuwiki/archive/refs/tags/release-${{ matrix.dokuwiki-release }}.tar.gz -O dokuwiki-${{ … 28 tar --strip-components 1 -xzf dokuwiki-${{ matrix.dokuwiki-release }}.tgz 66 tar --strip-components 1 -xzf dokuwiki-${{ matrix.dokuwiki-release }}.tgz
|
| /plugin/snippets/lang/sv/ |
| D | lang.php | 18 $lang['remove_from_db'] = 'Tar bort från databasen:'; 20 $lang['removing'] = 'Tar bort:';
|
| /plugin/snmplive/ |
| D | Makefile | 21 tar czf $(package).tar.gz $(package)
|
| /plugin/upgrade/ |
| H A D | helper.php | 12 use splitbrain\PHPArchive\Tar; alias 38 $this->tgzurl = "https://github.com/splitbrain/dokuwiki/archive/$branch.tar.gz"; 175 $tar = new Tar(); 176 $tar->setCallback(function ($file) { 180 $tar->open($this->tgzfile); 181 $tar->extract($this->tgzdir, 1); 182 $tar->close();
|
| /plugin/maintenance/bin/ |
| D | sample.sh | 25 tar --exclude=data/cache/[0-9a-f] --exclude=data/locks/[^_]* --exclude=data/tmp/* -jcvf "$backup_fi…
|
| /plugin/pagecss/.github/workflows/ |
| H A D | main.yml | 24 …/orhun/git-cliff/releases/download/v1.3.0/git-cliff-1.3.0-x86_64-unknown-linux-gnu.tar.gz | tar -xz
|
| /plugin/archiveupload/ |
| D | action.php | 106 if(in_array($ext, array('tar','gz','tgz','zip'))) { 158 if(in_array($ext, array('tar','gz','tgz'))) { 166 $tar = new TarLib($file, $compress_type); 167 $ok = $tar->Extract(FULL_ARCHIVE, $this->tmpdir, '', 0777); 170 $files = $tar->ListContents();
|