forked from joomla/joomla-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the Archive package from framework and deprecate JArchive (joomla…
…#14157) * Add archive package * Deprecate JArchive * Deprecate JArchive * Use the Archive class instead of JArchive * Wrong indents * Wrong indents second part * Setting tmp path correct * adapt the extract dir based on file extension * remove debug code * Use the latest code from the archive class till version 1.1.5 is released * Revert workaround * Adapt installer * Use the archive * Deprecate the adapters * CS * CS * CS * CS * Use version 1.1.5 * zero 24 cs
- Loading branch information
Showing
36 changed files
with
8,277 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,8 @@ | |
* @contributor Michael Slusarz <[email protected]> | ||
* @contributor Michael Cochrane <[email protected]> | ||
* | ||
* @since 11.1 | ||
* @since 11.1 | ||
* @deprecated 4.0 use the Joomla\Archive\Gzip class instead | ||
*/ | ||
class JArchiveGzip implements JArchiveExtractable | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ | |
* @contributor Michael Slusarz <[email protected]> | ||
* @contributor Michael Cochrane <[email protected]> | ||
* | ||
* @since 11.1 | ||
* @since 11.1 | ||
* @deprecated 4.0 use the Joomla\Archive\Tar class instead | ||
*/ | ||
class JArchiveTar implements JArchiveExtractable | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
* @contributor Michael Slusarz <[email protected]> | ||
* @contributor Michael Cochrane <[email protected]> | ||
* | ||
* @since 11.1 | ||
* @since 11.1 | ||
* @deprecated 4.0 use the Joomla\Archive\Zip class instead | ||
*/ | ||
class JArchiveZip implements JArchiveExtractable | ||
{ | ||
|
Oops, something went wrong.