Closed
Bug 337558
Opened 19 years ago
Closed 18 years ago
nsXULAppRunner needs updating after bug 214672: remove nsIZipEntry
Categories
(Toolkit Graveyard :: XULRunner, defect)
Toolkit Graveyard
XULRunner
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla1.9alpha1
People
(Reporter: alfredkayser, Assigned: alfredkayser)
References
Details
Attachments
(1 file)
2.63 KB,
patch
|
robert.strong.bugs
:
first-review+
darin.moz
:
second-review+
|
Details | Diff | Splinter Review |
nsXULAppRunner needs updating after bug 214672:
findEntries now returns a UTF8StringEnumerator so that GetNext no longer returns a nsIZipEntry but a entry name string. Also replace "*" with null (no pattern match). Patch following real soon!
Assignee | ||
Comment 1•19 years ago
|
||
Robert, this code needs a little update after bug 214672.
Can you review this? Thanks in advance!
Attachment #221673 -
Flags: review?(robert.bugzilla)
Assignee | ||
Updated•19 years ago
|
Component: Networking: File → XULRunner
Flags: review?(robert.bugzilla)
Product: Core → Toolkit
Assignee | ||
Comment 2•19 years ago
|
||
Comment on attachment 221673 [details] [diff] [review]
Patch to update XULAppRunnerSetup after bug 214672
Requesting review (somehow the previous request got cancelled...)
Attachment #221673 -
Flags: first-review?(robert.bugzilla)
Comment 3•18 years ago
|
||
Comment on attachment 221673 [details] [diff] [review]
Patch to update XULAppRunnerSetup after bug 214672
Looks good
Attachment #221673 -
Flags: first-review?(robert.bugzilla) → first-review+
Assignee | ||
Comment 4•18 years ago
|
||
Comment on attachment 221673 [details] [diff] [review]
Patch to update XULAppRunnerSetup after bug 214672
Darin, a small followup to bug 214672. Can you do the SR and checkin? Thanks in advance.
Attachment #221673 -
Flags: second-review?(darin)
Updated•18 years ago
|
Attachment #221673 -
Flags: second-review?(darin) → second-review+
Assignee | ||
Comment 5•18 years ago
|
||
*** Bug 342488 has been marked as a duplicate of this bug. ***
Comment 6•18 years ago
|
||
Alfred, do you need someone to check this in?
Updated•18 years ago
|
Assignee: nobody → alfredkayser
Comment 7•18 years ago
|
||
I went ahead and landed this because of bug 342488 comment 3.
mozilla/xulrunner/setup/nsXULAppInstall.js 1.5
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla1.9alpha1
Assignee | ||
Comment 8•18 years ago
|
||
Thanks!
Comment 9•18 years ago
|
||
Comment on attachment 221673 [details] [diff] [review]
Patch to update XULAppRunnerSetup after bug 214672
> _installZipEntry : function ze_installZipEntry(aZipReader, aZipEntry,
> aDestination) {
> var file = aDestination.clone();
>
>- var path = aZipEntry.name;
>- var dirs = path.split(/\//);
>+ var dirs = aZipEntry.split(/\//);
> var isDirectory = path.match(/\/$/) != null;
^^^^
oops
Comment 10•18 years ago
|
||
> oops
-> bug 362686
Assignee | ||
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
Updated•9 years ago
|
Product: Toolkit → Toolkit Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•