Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZIP extraction helper for Joomla Update #35388

Merged
merged 60 commits into from
Sep 18, 2021
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
ae0bcc8
ZIP extraction helper for Joomla Update
nikosdion Aug 26, 2021
df2d25a
Change concrete versions to __DEPLOY_VERSION__
Aug 27, 2021
e7ed637
Typo fix
Aug 27, 2021
45c5252
Remove jQuery dependency
Aug 27, 2021
a4718ef
Fix typo
Aug 27, 2021
1c1213e
Fix typo
Aug 27, 2021
ac9ccfa
Change docblock list character
Aug 27, 2021
5164b0d
Typo
nikosdion Aug 27, 2021
32c9494
Make sure these files are not added to the PR
nikosdion Aug 27, 2021
3569ec0
Change the copyright date
nikosdion Aug 27, 2021
3d57865
Add a legal note
nikosdion Aug 27, 2021
4e71949
Update joomla.asset.json per @dgrammatiko suggestion
nikosdion Aug 27, 2021
b610e8b
Remove useless DOMContentLoaded event
nikosdion Aug 27, 2021
1054ec2
Wrap the extraction start in a conditional
nikosdion Aug 27, 2021
6ab8871
Consistency
Aug 27, 2021
d1a15cf
Invalidate OPcache before deleting/moving file
nikosdion Aug 27, 2021
2a10f97
Show Console error if core JS is not loaded
nikosdion Aug 27, 2021
1a8a8ec
MUCH MORE DETAILED error modal dialog
nikosdion Aug 27, 2021
cc0f77a
Language
Aug 27, 2021
af7e052
Remove unnecessary suppression
Aug 27, 2021
0770e3e
Remove unnecessary suppression
Aug 27, 2021
be90c4a
Comment alignment
Aug 27, 2021
b8b5302
Remove unused method
nikosdion Aug 27, 2021
540ab88
Allow multi-step extraction without browser errors
nikosdion Aug 27, 2021
85871c2
Extraction could loop forever
nikosdion Aug 27, 2021
5a95d3e
Make the progress bar danger color on failure
nikosdion Aug 27, 2021
888746d
Correct the bytes and percentage displayed
nikosdion Aug 27, 2021
341390c
Mark deprecated method
nikosdion Aug 27, 2021
c471811
Bump version
nikosdion Aug 27, 2021
b77d1fe
Beautify the update progress page
nikosdion Aug 27, 2021
cbb936e
Add since DocBlock tags in extract.php
nikosdion Aug 27, 2021
918f7fc
Various small fixes
nikosdion Aug 27, 2021
55f9679
Reset OPcache before unlink
nikosdion Aug 27, 2021
d78475a
No bang
Aug 27, 2021
54bfa61
Reset OPcache before unlink
nikosdion Aug 27, 2021
fe88d22
Show running file sizes in KiB/MiB etc
nikosdion Aug 28, 2021
984a5ad
Fix missing icon for bytes written
nikosdion Aug 28, 2021
02c179b
Move language strings around
nikosdion Aug 28, 2021
228b997
Remove useless message
nikosdion Aug 28, 2021
8887ee8
Improve accessibility
nikosdion Aug 28, 2021
6b543db
Move formatting of bytes
richard67 Aug 29, 2021
648164a
Init display of bytes and files counters
richard67 Aug 29, 2021
25d3463
Update display of bytes and files values at the end, too
richard67 Aug 29, 2021
593340c
Revert "Update display of bytes and files values at the end, too"
richard67 Aug 29, 2021
88b78c2
Try it the other way
richard67 Aug 29, 2021
a166ee0
Update administrator/components/com_joomlaupdate/extract.php
Aug 29, 2021
1751b6c
Merge pull request #1 from richard67/4.0-dev-nikosdion-feature-jupdat…
Aug 29, 2021
19dadcb
Should be sourcePath, not sourceFile
Aug 30, 2021
2249665
Fix the percentage reported
Aug 30, 2021
6d8fb0a
Make sad robot happy again
Aug 30, 2021
69983ca
Make robots happy
Aug 31, 2021
94f0366
Correct filename
Aug 31, 2021
846c67c
Consistent static typing in finalisation.php
Aug 31, 2021
d38263c
restore_finalisation.php as proxy to finalisation.php
Aug 31, 2021
b9a82f7
Are you happy now, bad bot?
Aug 31, 2021
e44e031
Missing constant declaration
Sep 1, 2021
6bb6cf1
Do not delete restore_finalisation.php in com_admin's script.php
Sep 1, 2021
6f9c3bf
Remove unused jQuery
Sep 2, 2021
b7016d4
Oopsie!
Sep 2, 2021
23225f9
Merge branch '4.0-dev' into feature/jupdate-new-restore
richard67 Sep 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions administrator/components/com_admin/script.php
Original file line number Diff line number Diff line change
Expand Up @@ -6089,6 +6089,15 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false)
'/libraries/vendor/willdurand/negotiation/tests/Negotiation/Tests/NegotiatorTest.php',
'/libraries/vendor/willdurand/negotiation/tests/Negotiation/Tests/TestCase.php',
'/libraries/vendor/willdurand/negotiation/tests/bootstrap.php',
// 4.0.0 to 4.0.3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// 4.0.0 to 4.0.3
// 4.0.2 to 4.0.3

'/administrator/components/com_joomlaupdate/restore.php',
'/administrator/components/com_joomlaupdate/restore_finalisation.php',
'/media/com_joomlaupdate/js/encryption.js',
'/media/com_joomlaupdate/js/encryption.min.js',
'/media/com_joomlaupdate/js/encryption.min.js.gz',
'/media/com_joomlaupdate/js/update.js',
'/media/com_joomlaupdate/js/update.min.js',
'/media/com_joomlaupdate/js/update.min.js.gz',
);

$folders = array(
Expand Down
Loading