Closed
Bug 128098
Opened 23 years ago
Closed 23 years ago
Index should be expanded by default
Categories
(SeaMonkey :: Help Documentation, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla1.0.1
People
(Reporter: rebron, Assigned: oeschger)
References
Details
(Whiteboard: [adt2 rtm],custrtm- [ETA 06/20])
Attachments
(3 files, 2 obsolete files)
|
1.84 KB,
patch
|
asa
:
approval+
|
Details | Diff | Splinter Review |
|
892 bytes,
patch
|
andreww
:
review+
alecf
:
superreview+
|
Details | Diff | Splinter Review |
|
767 bytes,
patch
|
oeschger
:
review+
alecf
:
superreview+
jud
:
approval+
|
Details | Diff | Splinter Review |
Looks awkward just having the alphabet in there with twisty icons. We should
have the index default expanded to display content. This should only be a first
level expand, i.e.
A
Add
Not A
Add
Brower settings
Bookmarks
| Assignee | ||
Comment 1•23 years ago
|
||
Just what I am working on right now, Rafael. And exactly as you describe it
here, too: all letters opened, rest collapsed. Thanks. Good spot.
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•23 years ago
|
||
| Assignee | ||
Comment 3•23 years ago
|
||
modification based on jan varga's good suggestion.
Attachment #71770 -
Attachment is obsolete: true
| Assignee | ||
Comment 4•23 years ago
|
||
Last update was incomplete. And didn't work neither. This guy does it.
Attachment #73546 -
Attachment is obsolete: true
Comment 5•23 years ago
|
||
Comment on attachment 74025 [details] [diff] [review]
new replacement for index opening
a=asa (on behalf of drivers) for checkin to the 1.0 trunk
Attachment #74025 -
Flags: approval+
| Assignee | ||
Comment 6•23 years ago
|
||
Marking FIXED.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 7•23 years ago
|
||
Reopening this. The outliner->tree update orphaned my
document.getElementById("help-index-outliner") grab in the displayIndex()
function. Patch coming very soon.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 8•23 years ago
|
||
this one-liner fixes a small regression from the outliner->tree fix last week.
Marking for rtm, setting milestone. Usability test of the help indicated that
this would be a significant usability fix.
Whiteboard: [adt3] → [adt2 rtm]
Target Milestone: mozilla1.0 → mozilla1.0.1
Comment 10•23 years ago
|
||
Comment on attachment 77063 [details] [diff] [review]
get reference to index *tree*
r=andreww
Attachment #77063 -
Flags: review+
Keywords: mozilla1.0.1
Comment 11•23 years ago
|
||
The cause of this problem is the same as for bug 123719.
For the branch, the "quick fix" is:
function displayIndex() {
if (!helpIndexPanel.view)
helpIndexPanel.view = helpIndexPanel.builder;
var treeview = helpIndexPanel.view;
var i = treeview.rowCount;
while (i--)
if (!treeview.getLevel(i) && !treeview.isContainerOpen(i)) {
treeview.toggleOpenState(i);
}
| Assignee | ||
Comment 12•23 years ago
|
||
Thanks, Neil! Let's call your most recent comment the patch, and me the
reviewer: r=oeschger. I've tested this and it works fine. Looks like you can't
assume there is a view available.
Comment 13•23 years ago
|
||
Comment on attachment 77063 [details] [diff] [review]
get reference to index *tree*
sr=alecf
Attachment #77063 -
Flags: superreview+
Comment 14•23 years ago
|
||
I misbraced my comment, this is the correct code as a patch.
| Assignee | ||
Comment 15•23 years ago
|
||
Comment on attachment 86472 [details] [diff] [review]
Proposed patch
r=oeschger. formalizing what's implicit in these comments
Attachment #86472 -
Flags: review+
Comment 16•23 years ago
|
||
Comment on attachment 86472 [details] [diff] [review]
Proposed patch
sr=alecf
Attachment #86472 -
Flags: superreview+
Comment 17•23 years ago
|
||
Fix was checked in by timeless.
Status: REOPENED → RESOLVED
Closed: 23 years ago → 23 years ago
Resolution: --- → FIXED
Comment 18•23 years ago
|
||
This is not fixed on in the trunk or branch commercial builds of 6/17/2002. The
index still does not open up all the way by default.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 19•23 years ago
|
||
My mistake. Profile error. It is in fact fixed on the trunk. The index in a new
profile opens to the first level of entries, which is fine.
This fix is baked and ready for the branch.
Updated•23 years ago
|
Attachment #86472 -
Flags: approval+
Comment 20•23 years ago
|
||
please checkin to the 1.0.1 branch. once there, remove the "mozilla1.0.1+"
keyword and add the "fixed1.0.1" keyword.
Keywords: mozilla1.0.1 → mozilla1.0.1+
Updated•23 years ago
|
Keywords: adt1.0.1
Whiteboard: [adt2 rtm],custrtm- → [adt2 rtm],custrtm- [ETA 06/20]
Comment 21•23 years ago
|
||
Adding adt1.0.1+ on behalf of the adt. Please chech the fix into the Mozilla
1.0 branch.
Comment 22•23 years ago
|
||
fixed on branch.
Status: REOPENED → RESOLVED
Closed: 23 years ago → 23 years ago
Keywords: mozilla1.0.1+ → fixed1.0.1
Resolution: --- → FIXED
Comment 23•23 years ago
|
||
Verified win xp branch build 2002062005, Linux branch build 2002062006 and Mac
OS X branch build 2002062008
and
Verified win 2k trunk build 2002062008, Linux trunk build 2002062011 and Mac OS
X trunk build 2002062002
Status: RESOLVED → VERIFIED
Keywords: fixed1.0.1 → verified1.0.1
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•