Closed
Bug 411828
Opened 17 years ago
Closed 16 years ago
In <history.js> at "Line: 111", "Error: SortInNewDirection is not defined", when showing Sidebar History panel
Categories
(SeaMonkey :: Sidebar, defect)
SeaMonkey
Sidebar
Tracking
(Not tracked)
RESOLVED
FIXED
seamonkey2.0a2
People
(Reporter: sgautherie, Assigned: sgautherie)
References
Details
(Keywords: regression)
Attachments
(1 file, 2 obsolete files)
(deleted),
patch
|
mnyromyr
:
review+
neil
:
superreview+
|
Details | Diff | Splinter Review |
[Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9b3pre) Gecko/2008011002 SeaMonkey/2.0a1pre] (nightly) (W2Ksp4)
1. Show Sidebar History panel.
1r.
[
Error: SortInNewDirection is not defined
Source File: chrome://communicator/content/history/history.js
Line: 111
]
***
<http://mxr.mozilla.org/seamonkey/search?string=SortInNewDirection>
[
SortInNewDirection
/xpfe/global/resources/content/nsTreeSorting.js,
* line 52 -- function SortInNewDirection(direction)
/suite/common/history/history.js,
* line 111 -- SortInNewDirection(find_sort_direction(find_sort_column()));
/suite/common/history/history.xul,
* line 129 -- oncommand="return SortInNewDirection('natural');"/>
* line 135 -- oncommand="return SortInNewDirection('ascending');"/>
* line 139 -- oncommand="return SortInNewDirection('descending');"/>
]
<http://mxr.mozilla.org/seamonkey/search?string=%2FnsTreeSorting.js>
[
/nsTreeSorting.js
/xpfe/global/jar.mn,
* line 20 -- content/global/nsTreeSorting.js (resources/content/nsTreeSorting.js)
/suite/common/history/historyTreeOverlay.xul,
* line 60 -- <script type="application/x-javascript" src="chrome://global/content/nsTreeSorting.js"/>
]
I verified that the Windows zip nightly does not include <nsTreeSorting.js> !
Missing file after Xpfe to Toolkit migration ?
Comment 1•17 years ago
|
||
In toolkit 1.8, nsTreeSorting.js was in /toolkit/obsolete/content/nsTreeSorting.js, in toolkit 1.9 nsTreeSorting.js was CVS removed.
Suggestion:
1. CVS copy /xpfe/global/resources/content/nsTreeSorting.js to /suite/common/history/
2. Update /suite/common/jar.mn
3. Update the relevant line in historyTreeOverlay.xul
Assignee | ||
Comment 2•17 years ago
|
||
Per
<http://mxr.mozilla.org/seamonkey/search?string=RefreshSort&case=on&tree=seamonkey>
{{
/xpfe/global/resources/content/nsTreeSorting.js,
* line 45 -- function RefreshSort()
}}
Assignee: nobody → sgautherie.bz
Status: NEW → ASSIGNED
Attachment #313876 -
Flags: review?(mnyromyr)
Assignee | ||
Comment 3•17 years ago
|
||
[Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9pre) Gecko/2008040501 SeaMonkey/2.0a1pre] (nightly) (W2Ksp4)
Per comment 1 point 2 and 3.
NB: I manually copied the file into my installed application, but I didn't/can't actually test the <jar.mn> part.
Attachment #313877 -
Flags: review?(mnyromyr)
Assignee | ||
Comment 4•17 years ago
|
||
(In reply to comment #0)
> Missing file after Xpfe to Toolkit migration ?
[Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9a5pre) Gecko/20070515 SeaMonkey/1.5a] (nightly) (W2Ksp4)
<nsTreeSorting.js> was present in <...\chrome\toolkit.jar, \content\global\>.
*****
(In reply to comment #1)
> Suggestion:
Thanks !
Assignee | ||
Comment 5•17 years ago
|
||
Comment on attachment 313876 [details] [diff] [review]
(Av1) <nsTreeSorting.js> unused |function RefreshSort()| removal
NB: I will file the "cvs copy" bug, after this patch checkin...
Comment 6•17 years ago
|
||
In #seamonkey Neil suggests that we just copy the required functions into history.js; based on some grepping I see that all the following functions are needed:
SortInNewDirection()
SortColumn()
SortColumnElement()
find_sort_column()
find_sort_direction()
update_sort_menuitems()
enable_sort_menuitems()
fillViewMenu()
fillViewMenu()
Which, er, is actually all the functions in nsTreeSorting.js except for RefreshSort(). Neil, your opinion please?
Comment 7•17 years ago
|
||
(In reply to comment #6)
> fillViewMenu()
> fillViewMenu()
We definitely don't need to programmatically fill the view menu, since we already know what all of our columns are, so we can simply specify them in XUL.
I think some of the other methods may be obsolete too, for instance find_sort_column() may be obsoleted by tree.columns.getSortedColumn().
Comment 8•17 years ago
|
||
Given that someone will be along shortly (well we can hope can't we?) to rewrite all this for Places, it it worthwhile to optimize the current code?
Assignee | ||
Comment 9•17 years ago
|
||
(In reply to comment #6)
> Which, er, is actually all the functions in nsTreeSorting.js except for
> RefreshSort().
That's what I found with MXR too:
hence my Av1 patch.
(In reply to comment #7)
> I think some of the other methods may be obsolete too, for instance
> find_sort_column() may be obsoleted by tree.columns.getSortedColumn().
|getSortedColumn()| is used once only:
<http://bonsai.mozilla.org/cvsblame.cgi?file=/mozilla/browser/components/places/content/treeView.js&rev=1.60&mark=773,776#765>
I made a few attempts to use |getSortedColumn()| in our code, but failed :-/
(In reply to comment #8)
> Given that someone will be along shortly (well we can hope can't we?) to
> rewrite all this for Places, it it worthwhile to optimize the current code?
I would concur: make it work again here, then improve it in a followup bug.
Comment 10•17 years ago
|
||
(In reply to comment #8)
> Given that someone will be along shortly (well we can hope can't we?) to
> rewrite all this for Places, it it worthwhile to optimize the current code?
Assuming we'll still have a tree-based History window, then we'll still need tree-based sorting for it...
Comment 11•17 years ago
|
||
Comment on attachment 313876 [details] [diff] [review]
(Av1) <nsTreeSorting.js> unused |function RefreshSort()| removal
>Index: nsTreeSorting.js
>===================================================================
>RCS file: /cvsroot/mozilla/xpfe/global/resources/content/nsTreeSorting.js,v
The patch's objective as such is basically right, just the file is basically the wrong one.
We should first have a nsTreeSorting.js under /suite and then patch that.
Attachment #313876 -
Flags: review?(mnyromyr) → review-
Comment 12•17 years ago
|
||
Comment on attachment 313877 [details] [diff] [review]
(Bv1) Package file, update script src
(In reply to comment #5)
> NB: I will file the "cvs copy" bug, after this patch checkin...
This might not be necessary, we're discussing a non-CVS-copy file move/fork policy atm.
Attachment #313877 -
Flags: review?(mnyromyr) → review+
Comment 13•17 years ago
|
||
Should we rename the file as well? historyTreeSorting.js perhaps?
Comment 14•17 years ago
|
||
Sounds reasonable.
Comment 15•16 years ago
|
||
poke, poke. Did we decide on a plan here? copy/rename the file along with something like attachment 31876 [details] [diff] [review] and then clean it up?
Comment 16•16 years ago
|
||
(Neil wrote in Comment 13)
> Should we rename the file as well? historyTreeSorting.js perhaps?
1. "history" in historyTreeSorting.js is redundant since the file will be in
chrome://communicator/content/_history_/ anyway.
2. K.I.S.S.
(Andrew wrote in Comment 15)
> Did we decide on a plan here?
Dunno. I'll ask Neil for an sr anyway.
Comment 17•16 years ago
|
||
Comment on attachment 313877 [details] [diff] [review]
(Bv1) Package file, update script src
Let's get this checked in, any clean up should be moved to a follow-up bug to keep things focused.
Attachment #313877 -
Flags: superreview?(neil)
Comment 18•16 years ago
|
||
Comment on attachment 313877 [details] [diff] [review]
(Bv1) Package file, update script src
OK, but don't forget to file the cleanup bug.
Attachment #313877 -
Flags: superreview?(neil) → superreview+
Assignee | ||
Comment 19•16 years ago
|
||
(In reply to comment #12)
> (From update of attachment 313877 [details] [diff] [review])
> (In reply to comment #5)
> > NB: I will file the "cvs copy" bug, after this patch checkin...
>
> This might not be necessary, we're discussing a non-CVS-copy file move/fork
> policy atm.
First/Now, I need someone to copy/move the file.
Comment 20•16 years ago
|
||
(In reply to Comment 18)
> OK, but don't forget to file the cleanup bug.
Submitted Bug 433707, but I can never remember in which direction the depends/blocks works.
(In reply to Comment 19)
> First/Now, I need someone to copy/move the file.
1. I've changed my mind, it should be "historyTreeSorting.js" to maintain consistency with the naming of the other files in that directory.
2. If we assume the "no-history" rule, just treat it as a new file. KaiRo? Need an executive decision.
Comment 21•16 years ago
|
||
Once we have comm-central, the file move is a non-issue.
If you want to get the move done in CVS/1.9.0 before that, we need a CVS copy file for the target /suite/common/history/historyTreeSorting.js.
Assignee | ||
Comment 22•16 years ago
|
||
*"Restore" file which was removed by
http://hg.mozilla.org/mozilla-central/rev/d98ddf4499cc
and "move" it to its new place.
*Merge Av1 and Bv1 patches too.
***
I'd like to get |approval‑seamonkey2.0a1| too...
Attachment #313876 -
Attachment is obsolete: true
Attachment #313877 -
Attachment is obsolete: true
Attachment #340052 -
Flags: superreview?(neil)
Attachment #340052 -
Flags: review?(mnyromyr)
Updated•16 years ago
|
Attachment #340052 -
Flags: superreview?(neil) → superreview+
Updated•16 years ago
|
Attachment #340052 -
Flags: review?(mnyromyr) → review+
Comment 23•16 years ago
|
||
Comment on attachment 340052 [details] [diff] [review]
(Cv1) all in one
[Checkin: Comment 23]
The file removal in XPFE was rather unfortunate, since this actually kills our VCS history, so please a respective comment about the content's heritage
+ * ***** END LICENSE BLOCK ***** */
+
-> here !
+
+// utility routines for sorting
r=me with that
Assignee | ||
Comment 24•16 years ago
|
||
Comment on attachment 340052 [details] [diff] [review]
(Cv1) all in one
[Checkin: Comment 23]
http://hg.mozilla.org/comm-central/rev/7450ecf7d520
Attachment #340052 -
Attachment description: (Cv1) all in one → (Cv1) all in one
[Checkin: Comment 23]
Assignee | ||
Updated•16 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Flags: in-testsuite-
Resolution: --- → FIXED
Target Milestone: seamonkey2.0a1 → seamonkey2.0a2
Assignee | ||
Comment 25•16 years ago
|
||
(In reply to comment #23)
> (From update of attachment 340052 [details] [diff] [review])
Per our irc:
> The file removal in XPFE was rather unfortunate, since this actually kills our
> VCS history, so please a respective comment about the content's heritage
That's what I thought at first, but, actually, only bad it did was make me need to dig around to find out where I could restore this file from :-/
Regarding history which we wanted to keep (by a file move),
that wasn't possible across repositories (m-c -> c-c);
"fortunately", there was no new history in m-c :-)
> -> here !
> r=me with that
http://hg.mozilla.org/comm-central/rev/32f07da4a337
Comment 26•16 years ago
|
||
> Regarding history which we wanted to keep (by a file move),
> that wasn't possible across repositories (m-c -> c-c);
<http://www.selenic.com/mercurial/wiki/index.cgi/ConvertExtension>
hg convert with the --filemap (with the include and rename directives) to pull one file (with history) into a temporary repository, then export the changesets into comm-central.
You need to log in
before you can comment on or make changes to this bug.
Description
•